Move notice of GNUTLS >= 1.2 requirement to NEWS file
[elinks.git] / features.conf
blob3058fc406122c5b1b60cd08fe3b7eddc73c0c7d0
1 ### Feature configuration file
3 # This file contains various compile-time configuration settings, which you can
4 # adjust below. You can fine-tune the ELinks binary to include really only what
5 # you want it to. It acts as a front-end to the configure script in the sense
6 # that it is possible to control any features in this file by passing arguments
7 # to the configure script. In fact any arguments given to the script will
8 # overrule the values set in this file.
10 # There are still some things which are to be adjusted only directly through the
11 # configure script arguments though, so check ./configure --help out as well!
13 # All dependency checking is done by the configure script so even though a
14 # feature is enabled here it is possible that it will be disabled at compile
15 # time if the dependencies are not met. Check the features.log file generated
16 # by the configure script to make sure.
18 ### Notes for users
20 # All features that can be controlled using this file are already set to their
21 # default values. The syntax used is hopefully familiar to most people.
23 # '#' chars start a comment that runs until the end of the line.
25 # The features are controlled by setting the various CONFIG_<FEATURE> variables
26 # to either 'yes' or 'no' depending on whether it should be enabled or disabled.
27 # So in order to disable bookmark support a line in this file should say:
29 #       CONFIG_BOOKMARKS=no
31 # It is also possible to simply comment out the line in order to disable it.
32 # Therefore, if the default doesn't suit you, you can either comment it out or
33 # set it to the value you desire.
35 ### Notes for developers
37 # Please strive to keep the format of all entries uniform, it will make it
38 # easier for us as well as for the users. Do not forget to accurately describe
39 # the feature and also the impact of enabling/disabling it. Follow the format of
40 # existing comments. Follow the example of XBEL when adding features which also
41 # need some detection in configure.in.
43 # Not everything is suitable for an entry in this file, maybe it would be
44 # happier directly in the configure.in. If it is really purely question of
45 # system support (X2, HAVE_SA_STORAGE), and it makes no sense for the user to
46 # touch it, do not include it here.
48 # Also, use your common sense. (Not that I would trust it that much... ;-))
49 # --pasky
53 ### Bookmarks
55 # ELinks has built-in hierarchic bookmarks support. Open the bookmarks manager
56 # by pressing 's'. When bookmarks are enabled, also support for the internal
57 # ELinks bookmarks format is always compiled in.
59 # This is a favourite target for disabling in various embedded applications.
60 # It all depends on your requirements.
62 # Also read the ``The Ultimate Bookmarks Guide'' in doc/bookmarks.txt
64 # Default: enabled
66 CONFIG_BOOKMARKS=yes
69 ### XBEL Bookmarks
71 # ELinks also supports universal XML bookmarks format called XBEL, also
72 # supported by ie. Galeon, various "always-have-my-bookmarks" websites and
73 # number of universal bookmark converters.
75 # Frequently, you know you will not need it, then you can of course happily
76 # forcibly remove support for it and save few bytes.
78 # Default: enabled if libexpat is found and bookmarks are enabled
80 CONFIG_XBEL_BOOKMARKS=yes
83 ### Cookies
85 # Support for HTTP cookies --- a data token which the server sends the client
86 # once and then the client sends it back along each request to the server.  This
87 # mechanism is crucial for ie. keeping HTTP sessions (you "log in" to a site,
88 # and from then on the site recognizes you usually because of the cookie), but
89 # also for various banner systems, remembering values filled to various forms,
90 # and so on. You can further tune the ELinks behaviour at runtime (whether to
91 # accept/send cookies, ask for confirmation when accepting a cookie etc).
93 # This functionality is usually quite important and you should not disable it
94 # unless you really know what are you doing.
96 # Default: enabled
98 CONFIG_COOKIES=yes
101 ### Form History
103 # The famous Competing Browser has that annoying thing which pops up when you
104 # submit a form, offering to remember it and pre-fill it the next time. And yes,
105 # ELinks can do that too! You will still need to also enable this manually at
106 # document.browse.forms.show_formhist.
108 # Many people find it extremely annoying (including pasky), however some others
109 # consider it extremely handy and will sacrifice almost anything to get it. It
110 # will not do any harm to have this compiled-in as long as you will leave it
111 # turned off (which is also the default configuration).
113 # Default: enabled
115 CONFIG_FORMHIST=yes
118 ### Global History
120 # This device records each and every page you visit (to a configurable limit).
121 # You can browse through this history in the history manager (press 'h').  Do
122 # not confuse this with the "session history", recording history of your
123 # browsing in the frame of one session (session history is the thing you move
124 # through when pressing 'back' and 'unback' or which you see in the
125 # File::History menu).
127 # Global history does not care about the order you visited the pages in, it just
128 # records that you visited it, when did you do that and the title of the page.
129 # Then, you can see when did you visit a link last time (and what was the title
130 # of the target document at that time), links can be coloured as visited etc.
132 # If you disable this feature, you will not lose any crucial functionality, just
133 # some relatively minor convenience features, which can nevertheless prove
134 # sometimes very practical.
136 # Default: enabled
138 CONFIG_GLOBHIST=yes
141 ### MIME
143 # ELinks uses a MIME system for determining the content type of documents and
144 # configuring programs for external handling. By default the option system can
145 # be used to configure how media types are handled. More info about how to set
146 # up the MIME handling using the option system can be found in the doc/mime.html
147 # file.
149 # Below are listed some additional ways to do it.
151 ### Mailcap
153 # Mailcap files describe what program - on the local system - can be used to
154 # handle a media type. The file format is defined in RFC 1524 and more info
155 # including examples can be found in the doc/mailcap.html file.
157 # This is very useful especially for clean interoperability with other
158 # MIME-aware applications and fitting nicely into the UNIX system, where this is
159 # the standard way of specifying MIME handlers. If you are not interested in
160 # that, you can still use the internal MIME associations system, though.
162 # Default: enabled
164 CONFIG_MAILCAP=yes
166 ### Mimetypes File
168 # Mimetypes file can be used to specify the relation between media types and
169 # file extensions.
171 # Basically same thing applies here as for the mailcap support.
173 # Default: enabled
175 CONFIG_MIMETYPES=yes
178 ### IPv6 Protocol Support
180 # You know this thing that was designed to obsolete IPv4 but only pasky,
181 # weirdos and projects supported with big funds really use. ;-)
183 # Default: enabled if the system supports it
185 CONFIG_IPV6=yes
188 ### URI Rewriting
190 # The goto dialog through which new URIs can be entered is an essential part of
191 # browsing in ELinks. This feature makes the dialog more powerful by making it
192 # possible to extend how entered text is handled through a set of rewrite rules
193 # (see protocol.rewrite options).
195 # There are two types of rules: simple and smart ones.
197 # Simple rewriting rules are basically URI abbreviations, making it possible to
198 # map a word to the full URI. They can also be used for hierarchic navigation to
199 # ease moving from some nested directory to the parent directory or doing other
200 # stuff with the current URI. For example, when you type 'gg' into the goto
201 # dialog, you will be materialized at Google's homepage.
203 # Smart rules can take arguments and therefore enable more advanced rewriting.
204 # The arguments could be search words to google for or a lookup query for a
205 # dictionary. Eg. type 'gg:Petr Baudis king of ELinks cvs'.
207 # This feature is also available in a more powerful form in the Lua and Guile
208 # extensions, so if you plan to or already use those, you won't miss anything by
209 # disabling this feature (besides easier and better integrated configuration).
211 # Default: enabled
213 CONFIG_URI_REWRITE=yes
216 ### BitTorrent Protocol Support
218 # The BitTorrent protocol is a protocol for distributing files in a peer-to-peer
219 # (P2P) manner. It uses the HTTP protocol for communicating with a central
220 # server and a peer-to-peer (P2P) protocol for exchanging file pieces betweens
221 # peer downloaders. The integrity of file pieces downloaded from peers are
222 # checked using cryptographic hashing (SHA1).
224 # Downloads using BitTorrent are started by first downloading a .torrent file
225 # with the MIME type "application/x-bittorrent". The file contains information
226 # which enables ELinks to ask a central server, called a tracker, for
227 # information about other downloading peers and start downloading from and
228 # uploading to them.
230 # At any time, an external handler can always be defined to take precedence of
231 # the internal BitTorrent client and the internal client can always be forced
232 # by prefixing the URI of the .torrent file with "bittorrent:"
234 # Default: disabled
236 CONFIG_BITTORRENT=no
239 ### Local CGI Support
241 # ELinks can (like w3m or lynx) execute certain executable files stored on the
242 # local disks as CGIs, when you target it on them (through a URI of the 'file'
243 # scheme). ELinks emulates the complete CGI environment, like the program would
244 # be executed by a web server. See the protocol.file.cgi options tree for
245 # detailed runtime configuration.
247 # Some people just write their bookmark management application as Perl CGI
248 # script and then access it from the web browser using this feature, not needing
249 # any web server or so. Therefore, this is a great possible way to extended the
250 # browser capabilities.
252 # Even when you compile this in, you need to enable this yet in the
253 # configuration, and even then only CGI files passing certain user-defined
254 # filters (path-based) will be allowed to be executed (and there are certain
255 # other security barriers in place).
257 # Default: disabled, available if setenv() or putenv() is found
259 CONFIG_CGI=no
262 ### Data URI protocol
264 # The data URI protocol is defined in RFC 2397 and allows inclusion of small
265 # data items as "immediate" data, as if it had been included externally.
267 # A data URL might be used for arbitrary types of data. The URI
269 #       data:,A%20brief%20note
271 # encodes the text/plain string "A brief note", which might be useful in a
272 # footnote link.
274 # Default: enabled
276 CONFIG_DATA=yes
279 ### Finger User Information Protocol Support
281 # The finger protocol is a simple protocol defined in RFC 1288. The server
282 # return a friendly, human-oriented status report on either the system at the
283 # moment or a particular person in depth such as whether a user is currently
284 # logged-on, e-mail address, full name etc. As well as standard user
285 # information, it displays the contents of ".plan" file in the user's home
286 # directory. Often this file (maintained by the user) contained either useful
287 # information about the user's current activities, or alternatively all manner
288 # of humor.
290 # It is most often implemented on Unix or Unix-like systems however due to
291 # security and privacy reasons it is usually disabled or only allowed locally on
292 # the system.
294 # Default: disabled
296 CONFIG_FINGER=no
299 ### File Transfer Protocol Support
301 # The File Transfer Protocol (FTP) is a software standard for transferring
302 # computer files between machines with widely different operating systems.
304 # Many sites that run FTP servers enable so-called "anonymous ftp". Under
305 # this arrangement, users do not need an account on the server. By default,
306 # the account name for the anonymous access is 'anonymous'. This account
307 # does not need a password, but users are commonly asked to send their email
308 # addresses as their passwords for authentication (protocol.ftp.anon_passwd),
309 # but there is no verification.
311 # See also http://en.wikipedia.org/wiki/Ftp .
313 # Default: enabled
315 CONFIG_FTP=yes
318 ### Gopher Protocol Support
320 # Gopher is a distributed document search and retrieval network protocol
321 # designed for the Internet in RFC 1436. The need for gopher arose in in the
322 # early days of the hypertext Internet where the number of documents that were
323 # being published in campus and research environments could not easily be
324 # distributed using known protocols like FTP because these documents were stored
325 # not in one place, but in many computers connected to the Internet.
327 # The support works much like local file browsing with directories (aka. menus)
328 # and various file types that can be downloaded and viewed.
330 # It is still very experimental and the CSO phone-book protocol is not
331 # implemented.
333 # Default: disabled
335 CONFIG_GOPHER=no
338 ### NNTP Protocol Support
340 # Network news transport protocol support makes it possible to access nntp
341 # and news servers and read postings. It is still very experimental and is
342 # far from being considered a ``news reader''.
344 # It is possible to list news groups on a server, articles in a news group
345 # and retrieve articles by their number or message-id.
347 # Default: disabled
349 CONFIG_NNTP=no
352 ### SMB Protocol Support
354 # ELinks supports browsing over the SMB protocol (URI 'smb' scheme), using the
355 # smbclient program as back-end. Therefore, in order to have this enabled, you
356 # will need to install Samba (or at least just the smbclient part, if you can
357 # install it separately).
359 # Default: enabled if smbclient will be found
361 CONFIG_SMB=yes
364 ### Cascading Style Sheets
366 # Simplistic CSS support. It is still very much in it's infancy so don't expect
367 # too much. If you have use of background colors enabled more pages will have
368 # the intended background color. Also quite a few additional text attributes are
369 # applied. One example is highlighting of search words on Google's cached pages.
371 # There are options to disable both imported style sheets to minimize network
372 # traffic and whether to use CSS at all. Also a default style sheet can be
373 # defined to control the basic layout in the HTML renderer.
375 # Default: enabled
377 CONFIG_CSS=yes
380 ### HTML Highlighting
382 # Makes it possible to view HTML source with the markup highlighted in colors
383 # configurable using CSS. It also makes values of referencing attributes
384 # accessible like the href="<uri>" attribute in <a> elements.
386 # The HTML highlighting uses components of an experimental DOM implementation
387 # still in progress so enabling this feature will add a considerable amount of
388 # code to the compiled binary. On the other hand it will help to debug what will
389 # hopefully evolve into the next generation document renderer.
391 # Default: disabled, requires that CSS is enabled
393 CONFIG_HTML_HIGHLIGHT=no
396 ### Mouse Support
398 # ELinks may be controlled not only by keyboard, but also by mouse to quite some
399 # extent. You can select links, menu items, scroll document, click at buttons
400 # etc, and it should hopefully work. ELinks supports mouse control by GPM, xterm
401 # mouse reporting and TWAIN's twterm mouse reporting.
403 # It is generally nice convenience and doesn't cost too much. However, you can
404 # do everything with keyboard as you can with mouse. Also note that the xterm
405 # mouse reporting takes control over the terminal so that copy and pasting text
406 # from and to ELinks has to be done by holding down the Shift key.
408 # Default: enabled
410 CONFIG_MOUSE=yes
413 ### 88 Colors in Terminals
415 # Define to add support for using 88 colors in terminals. Note that this
416 # requires a capable terminal emulator, such as:
418 # - Thomas Dickey's XTerm, version 111 or later (check which version you have
419 #   with xterm -version) compiled with --enable-88-color.
421 # - Rxvt, version 2.7.9 or later compiled with --enable-88-color.
423 # You will still need to enable this at runtime for a given terminal in terminal
424 # options, or set your $TERM variable to xterm-88color - then, ELinks will
425 # automatically configure itself to make use of all the available terminal
426 # features, while still acting sensibly when you happen to run it in an xterm
427 # w/o the 88 colors support.
429 # When enabled, the memory usage is somewhat increased even when running in mono
430 # and 16 colors mode (the memory consumption can be especially remarkable when
431 # rendering very large documents and/or using very large terminals).  However,
432 # when you actually run it in the suitable terminal, it looks really impressive,
433 # I'd say marvelous!
435 # Default: disabled
437 CONFIG_88_COLORS=no
439 ### 256 Colors in Terminals
441 # Define to add support for using 256 colors in terminals. Note that this
442 # requires a capable terminal emulator, such as:
444 # - Thomas Dickey's XTerm, version 111 or later (check which version you have
445 #   with xterm -version) compiled with --enable-256-color.
447 # - Rxvt, version 2.7.9 or later compiled with --enable-256-color.
449 # - Recent versions of PuTTY also have some support for 256 colors.
451 # You will still need to enable this at runtime for a given terminal in terminal
452 # options, or set your $TERM variable to xterm-256color - then, ELinks will
453 # automatically configure itself to make use of all the available terminal
454 # features, while still acting sensibly when you happen to run it in an xterm
455 # w/o the 256 colors support.
457 # When enabled, the memory usage is somewhat increased even when running in mono
458 # and 16 colors mode (the memory consumption can be especially remarkable when
459 # rendering very large documents and/or using very large terminals).  However,
460 # when you actually run it in the suitable terminal, it looks really impressive,
461 # I'd say marvelous!
463 # Default: disabled
465 CONFIG_256_COLORS=no
468 ### Ex-mode Interface
470 # The ex-mode interface makes a prompt available when pressing ':'. The prompt
471 # can be used for entering actions like ':goto-url' and configuration file
472 # commands.
474 # The code is still very experimental and lacks much work such as tab
475 # completion.
477 # Default: disabled
479 CONFIG_EXMODE=no
482 ### LEDs
484 # These are the tiny LED-like indicators, shown at the bottom-right of the
485 # screen as [-----]. They are used for indication of various states, ie.
486 # whether you are currently talking through a SSL-secured connection,
487 # what is the current input mode (normal or insert), JavaScript errors etc.
489 # Default: enabled
491 CONFIG_LEDS=yes
494 ### Document Marks
496 # Makes it possible to set marks in a document and then later jump to them kind
497 # of like how fragments in URIs work. It is currently only possible to jump to
498 # marks set in the current document.
500 # Default: enabled
502 CONFIG_MARKS=yes
505 ### Debug mode
507 # Assertions are evaluated and will core dump on failure. Some extra sanity
508 # checks are done, and some errors will cause core dump instead of just a
509 # message. Internal memory leak detection is activated (memory usage will grow),
510 # and every allocation/reallocation/free operations will be slower due to extra
511 # tests. Lists sanity checks are enabled, so list operations are slower. Hot-key
512 # debugging is enabled, it highlights redundant hot-keys in a menu.
514 # This option should be _always_ used by beta testers and developers, it helps
515 # to detect many issues. Binary packages maintainers should not use this option
516 # in normal situation.
518 # Default: disabled
520 CONFIG_DEBUG=no
523 ### Fast mode
525 # This option provides a way to generate a faster and smaller binary of a
526 # _stable_ version of ELinks. Please do not use it with unstable releases
527 # (unless memory footprint, performance and/or binary size are major issues for
528 # you).
530 # It disables all assertion tests and sanity checks effectively reducing safety.
531 # It disables internal memory allocation routines, directly calling libc
532 # functions (so it's much faster, but memory allocation issues and memory leaks
533 # will be not detected). It defines fmem_alloc(), and fmem_free() to be in fact
534 # alloca() and nothing, providing much faster allocations in routines where they
535 # are used
537 # Default: disabled
539 CONFIG_FASTMEM=no
542 ### Own C library functions
544 # Enable this to use the various C library stub functions that is part of the
545 # portability layer instead of those available in the C library on the system.
547 # It will make the binary slightly bigger and should only be used for testing
548 # the portability layer.
550 # Default: disabled
552 CONFIG_OWN_LIBC=no
555 ### Small binary
557 # Reduces the size of the binary but also disables a few memory consuming
558 # optimizations to make the program much lighter when running.
560 # Part of the size reduction is due to various help text not being compiled in
561 # which will affect usability. Also the disabled optimization will make ELinks
562 # run slower.
564 # See doc/small.txt for more information about how to reduce the size of ELinks.
566 # Default: disabled
568 CONFIG_SMALL=no
571 ### Back-trace Printing
573 # Once upon a time, a disaster happens and ELinks crashes. That is a very sad
574 # event and it would be very nice to have some means how to diagnose it. In the
575 # crash handler, ELinks prints out various helpful things, however the truly
576 # important information is _where_ did it crash. Usually, users do not have gdb
577 # installed and can't provide a back-trace. However, ELinks can print a
578 # back-trace on its own, if the system supports it (currently, it is implemented
579 # only for glibc). It is not always accurate, it is useless when the ELinks
580 # binary is stripped and it still misses a lot of important information, but it
581 # can be sometimes still an indispensable help for the developers.
583 # You should keep this, unless you will strip your ELinks binary anyway, you
584 # know you are not going to report back any failures and you care about each
585 # single wasted bit.
587 # Default: enabled if the libc supports it (only glibc)
589 CONFIG_BACKTRACE=yes
592 ### Disable Root User
594 # Browsers are scary monsters used for traveling around in an even more scary
595 # world where people indifferently throw garbage files at you and threaten your
596 # perfect world. Altho' ELinks is a small monster compared to most browsers, it
597 # can still bite your head off and some might consider running it as the root
598 # user extremely dangerous. To prevent such usage simply enable this feature.
600 # Default: disabled
602 CONFIG_NO_ROOT_EXEC=no
605 # $Id: features.conf,v 1.35 2005/08/09 17:04:01 jonas Exp $
606 # vim: filetype=sh textwidth=80