]> sjero.net Git - wget/blob - NEWS
Automated merge.
[wget] / NEWS
1 GNU Wget NEWS -- history of user-visible changes.
2
3 Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
4 2006, 2007 Free Software Foundation, Inc.
5 See the end for copying conditions.
6
7 Please send GNU Wget bug reports to <bug-wget@gnu.org>.
8 \f
9 * Changes in Wget (MAINLINE).
10
11 ** Wget uses Automake now.
12 \f
13 * Changes in Wget 1.11.
14
15 ** The source code has been migrated to Mercurial. The repositories are
16 available at http://hg.addictivecode.org/. Prior to this, the source
17 code was hosted on Subversion (migrated from the original CVS); you can
18 still get access to older tags and branches for Wget in the Subversion
19 repository at http://addictivecode.org/svn/wget/.
20
21 ** PATCH file removed; see http://wget.addictivecode.org/PatchGuidelines
22 for current information about producing patches for GNU Wget.
23
24 ** TODO file removed: we use a bugtracker now; see
25 http://wget.addictivecode.org/BugTracker. Also,
26 http://wget.addictivecode.org/FeatureSpecifications.
27
28 ** Timestamping now uses the value from the most recent HTTP response,
29 rather than the first one it got.
30
31 ** configure.in now requires autoconf >= 2.61, rather than 2.59.
32
33 ** Authentication information is no longer sent as part of the Referer
34 header in recursive fetches.
35
36 ** No authentication credentials are sent until a challenge is issued,
37 for improved security. Authentication handling is still not
38 RFC-compliant, as once a Basic challenge has been received, it will
39 assume it can send credentials to any URL at that same host, and not
40 just the ones at or below the original authenticated location.
41 Credentials for Digest authentication are still never saved or issued
42 automatically, and continue to require a challenge for each resource.
43
44 ** Added --max-redirect option, allowing the user to specify what should
45 be the maximum number of HTTP redirects to follow.
46
47 ** Wget now saves HTTP downloads using file names specified by the
48 `Content-Disposition' header.  This is a standard way of specifying the
49 file name used by many web dynamically generated pages. For the time
50 being, Content-Disposition is not used by default, to avoid the extra
51 round-trips incurred (must specify "-e contentdisposition=yes"); this
52 may change in a future version. NOTE: This functionality is currently
53 considered "experimental", and may not be fully functional.
54
55 ** The GnuTLS library is now also experimentally supported for https
56 downloads.  This is still work-in-progress.  OpenSSL is still used by
57 default; use --with-ssl=gnutls to build with GnuTLS.  OpenSSL is still
58 required for NTLM authorization to work, but this should eventually
59 change. NOTE: Certificate verification is _not_ currently supported:
60 this means that you can currently only use GnuTLS to encrypt
61 connections, but _not_ to verify that a host is who it claims to be. Use
62 of OpenSSL is suggested until this missing feature is implemented.
63
64 ** The new option `--ignore-case' makes Wget ignore case when
65 matching files, directories, and wildcards.  This affects the -X, -I,
66 -A, and -R options, as well as globbing in FTP URLs.
67
68 ** ETA projection is now displayed in "dot" progress output as well as
69 in the default progress bar.  (The dot progress is used by default when
70 logging Wget's output to file using the `-o' option.)
71
72 ** The "lockable boolean" argument type is no longer supported.  It
73 was only used by the passive_ftp .wgetrc setting.  If you're running
74 broken scripts or Perl modules that unconditionally specify
75 `--passive-ftp' and your firewall disallows it, you can override them
76 by replacing wget with a script that execs wget "$@" --no-passive-ftp.
77 \f
78 * Changes in Wget 1.10.
79
80 ** Downloading files larger than 2GB, sometimes referred to as "large
81 files", now works on systems that support them.  This includes the
82 majority of modern Unixes, as well as MS Windows.
83
84 ** IPv6 is now supported by Wget.  Unlike the experimental code in
85 1.9, this version supports dual-family systems.  The new flags
86 `--inet4' and `--inet6' (or `-4' and `-6' for short) force the use of
87 IPv4 and IPv6 respectively.  Note that IPv6 support has not yet been
88 tested on Windows.
89
90 ** Microsoft's proprietary "NTLM" method of HTTP authentication is now
91 supported.  This authentication method is undocumented and only used
92 by IIS.  Note that *proxy* authentication is not supported in this
93 release; you can only authenticate to the target web site.
94
95 ** Wget no longer truncates partially downloaded files when download
96 has to start over because the server doesn't support Range.  Instead,
97 with such servers Wget now simply ignores the data up to the byte
98 where the last attempt left off, and only then continues appending to
99 the file.  That way the downloaded file never shrinks, and download
100 retries from servers without support for partial downloads work even
101 when downloading to stdout.
102
103 ** SSL/TLS changes:
104
105 *** SSL/TLS downloads now attempt to verify the server's certificate
106 against the recognized certificate authorities.  This requires CA
107 certificates to have been installed in a location visible to the
108 OpenSSL library.  If this is not the case, you can get the bundle
109 yourself from a source you trust (for example, the bundle extracted
110 from Mozilla available at http://curl.haxx.se/docs/caextract.html),
111 and point Wget to the PEM file using the `--ca-certificate'
112 command-line option or the corresponding `.wgetrc' command.
113
114 *** Secure downloads now verify that the host name in the URL matches
115 the "common name" in the certificate presented by the server.
116
117 *** Although the above checks provide more secure downloads, they
118 unavoidably break interoperability with some sites that worked with
119 previous versions, particularly those using self-signed, expired, or
120 otherwise invalid certificates.  If you encounter "certificate
121 verification" errors or complaints that "common name doesn't match
122 requested host name" and are convinced of the site's authenticity, you
123 can use `--no-check-certificate' to bypass both checks.
124
125 *** Talking to SSL/TLS servers over proxies now actually works.
126 Previous versions of Wget erroneously sent GET requests for https
127 URLs.  Wget 1.10 utilizes the CONNECT method designed for this
128 purpose.
129
130 *** The SSL/TLS-related options have been redesigned and, for the
131 first time, documented in the manual.  The old, undocumented, options
132 are no longer supported.
133
134 ** Passive FTP is now the default FTP transfer mode.  Use
135 `--no-passive-ftp' or specify `passive_ftp = off' in your init file to
136 revert to the old behavior.
137
138 ** The `--header' option can now be used to override generated
139 headers.  For example, `wget --header="Host: foo.bar"
140 http://127.0.0.1' tells Wget to connect to localhost, but to specify
141 "foo.bar" in the `Host' header.  In previous versions such use of
142 `--header' lead to duplicate headers in HTTP requests.
143
144 ** The responses without headers, aka "HTTP 0.9" responses, are
145 detected and handled.  Although HTTP 0.9 has long been obsolete, it is
146 still occasionally used, sometimes by accident.
147
148 ** The progress bar is now updated regularly even when the data does
149 not arrive from the network.
150
151 ** Wget no longer preserves permissions of files retrieved by FTP by
152 default.  Anonymous FTP servers frequently use permissions like "664",
153 which might not be what the user wants.  The new option
154 `--preserve-permissions' and the corresponding `.wgetrc' variable can
155 be used to revert to the old behavior.
156
157 ** The new option `--protocol-directories' instructs Wget to also use
158 the protocol name as a directory component of local file names.
159
160 ** Options that previously unconditionally set or unset various flags
161 are now boolean options that can be invoked as either `--OPTION' or
162 `--no-OPTION'.  Options that required an argument "on" or "off" have
163 also been changed this way, but they still accept the old syntax for
164 backward compatibility.  For example, instead of `--glob=off' you can
165 write `--no-glob'.
166
167 Allowing `--no-OPTION' for every `--OPTION' and the other way around
168 is useful because it allows the user to override non-default behavior
169 specified via `.wgetrc'.
170
171 ** The new option `--keep-session-cookies' causes `--save-cookies' to
172 save session cookies (normally only kept in memory) along with the
173 permanent ones.  This is useful because many sites track important
174 information, such as whether the user has authenticated, in session
175 cookies.  With this option multiple Wget runs are treated as a single
176 browser session.
177
178 ** Wget now supports the --ftp-user and --ftp-password command
179 switches to set username and password for FTP, and the --user and
180 --password command switches to set username and password for both FTP
181 and HTTP.  The --http-passwd and --proxy-passwd command switches have
182 been renamed to --http-password and --proxy-password respectively, and
183 the related http_passwd and proxy_passwd .wgetrc commands to
184 http_password and proxy_password respectively.  The login and passwd
185 .wgetrc commands have been deprecated.
186
187 * `wget -b' now works correctly under Windows.
188 \f
189 * Wget 1.9.1 is a bugfix release with no user-visible changes.
190 \f
191 * Changes in Wget 1.9.
192
193 ** It is now possible to specify that POST method be used for HTTP
194 requests.  For example, `wget --post-data="id=foo&data=bar" URL' will
195 send a POST request with the specified contents.
196
197 ** IPv6 support is available, although it's still experimental.
198
199 ** The `--timeout' option now also affects DNS lookup and establishing
200 the TCP connection.  Previously it only affected reading and writing
201 data.  Those three timeouts can be set separately using
202 `--dns-timeout', `--connection-timeout', and `--read-timeout',
203 respectively.
204
205 ** Download speed shown by the progress bar is based on the data
206 recently read, rather than the average speed of the entire download.
207 The ETA projection is still based on the overall average.
208
209 ** It is now possible to connect to FTP servers through FWTK
210 firewalls.  Set ftp_proxy to an FTP URL, and Wget will automatically
211 log on to the proxy as "username@host".
212
213 ** The new option `--retry-connrefused' makes Wget retry downloads
214 even in the face of refused connections, which are otherwise
215 considered a fatal error.
216
217 ** The new option `--no-dns-cache' may be used to prevent Wget from
218 caching DNS lookups.
219
220 ** Wget no longer escapes characters in local file names based on
221 whether they're appropriate in URLs.  Escaping can still occur for
222 nonprintable characters or for '/', but no longer for frequent
223 characters such as space.  You can use the new option
224 --restrict-file-names to relax or strengthen these rules, which can be
225 useful if you dislike the default or if you're downloading to
226 non-native partitions.
227
228 ** Handling of HTML comments has been dumbed down to conform to what
229 users expect and other browsers do: instead of being treated as SGML
230 declaration, a comment is terminated at the first occurrence of "-->".
231 Use `--strict-comments' to revert to the old behavior.
232
233 ** Wget now correctly handles relative URIs that begin with "//", such
234 as "//img.foo.com/foo.jpg".
235
236 ** Boolean options in `.wgetrc' and on the command line now accept
237 values "yes" and "no" along with the traditional "on" and "off".
238
239 ** It is now possible to specify decimal values for timeouts, waiting
240 periods, and download rate.  For instance, `--wait=0.5' now works as
241 expected, as does `--dns-timeout=0.5' and even `--limit-rate=2.5k'.
242 \f
243 * Wget 1.8.2 is a bugfix release with no user-visible changes.
244 \f
245 * Wget 1.8.1 is a bugfix release with no user-visible changes.
246 \f
247 * Changes in Wget 1.8.
248
249 ** A new progress indicator is now available and used by default.
250 You can choose the progress bar type with `--progress=TYPE'.  Two
251 types are available, "bar" (the new default), and "dot" (the old
252 dotted indicator).  You can permanently revert to the old progress
253 indicator by putting `progress = dot' in your `.wgetrc'.
254
255 ** You can limit the download rate of the retrieval using the
256 `--limit-rate' option.  For example, `wget --limit-rate=15k URL' will
257 tell Wget not to download the body of the URL faster than 15 kilobytes
258 per second.
259
260 ** Recursive retrieval and link conversion have been revamped:
261
262 *** Wget now traverses links breadth-first.  This makes the
263 calculation of depth much more reliable than before.  Also, recursive
264 downloads are faster and consume *significantly* less memory than
265 before.
266
267 *** Links are converted only when the entire retrieval is complete.
268 This is the only safe thing to do, as only then is it known what URLs
269 have been downloaded.
270
271 *** BASE tags are handled correctly when converting links.  Since Wget
272 already resolves <base href="..."> when resolving handling URLs, link
273 conversion now makes the BASE tags point to an empty string.
274
275 *** HTML anchors are now handled correctly.  Links to an anchor in the
276 same document (<a href="#anchorname">), which used to confuse Wget,
277 are now converted correctly.
278
279 *** When in page-requisites (-p) mode, no-parent (-np) is ignored when
280 retrieving for inline images, stylesheets, and other documents needed
281 to display the page.
282
283 *** Page-requisites (-p) mode now works with frames.  In other words,
284 `wget -p URL-THAT-USES-FRAMES' will now download the frame HTML files,
285 and all the files that they need to be displayed properly.
286
287 ** `--base' now works conjunction with `--input-file', providing a
288 base for each URL and thereby allowing the URLs in the file to be
289 relative.
290
291 ** If a host has more than one IP address, Wget uses the other
292 addresses when accessing the first one fails.
293
294 ** Host directories now contain port information if the URL is at a
295 non-standard port.
296
297 ** Wget now supports the robots.txt directives specified in
298 <http://www.robotstxt.org/wc/norobots-rfc.txt>.
299
300 ** URL parser has been fixed, especially the infamous overzealous
301 quoting.  Wget no longer dequotes reserved characters, e.g. `%3F' is
302 no longer translated to `?', nor `%2B' to `+'.  Unsafe characters
303 which are not reserved are still escaped, of course.
304
305 ** No more than 20 successive redirections are allowed.
306 \f
307 * Wget 1.7.1 is a bugfix release with no user-visible changes.
308 \f
309 * Changes in Wget 1.7.
310
311 ** SSL (`https') pages now work if you compile Wget with SSL support;
312 use the `--with-ssl' configure flag.  You need to have OpenSSL
313 installed.
314
315 ** Cookies are now supported.  Wget will accept cookies sent by the
316 server and return them in later requests.  Additionally, it can load
317 and save cookies to disk, in the same format that Netscape uses.
318
319 ** "Keep-alive" (persistent) HTTP connections are now supported.
320 Using keep-alive allows Wget to share one TCP/IP connection for
321 many retrievals, making multiple-file downloads faster and less
322 stressing for the server and the network.
323
324 ** Wget now recognizes FTP directory listings generated by NT and VMS
325 servers.
326
327 ** It is now possible to recurse through FTP sites where logging in
328 puts you in some directory other than '/'.
329
330 ** You may now use `~' to mean home directory in `.wgetrc'.  For
331 example, `load_cookies = ~/.netscape/cookies.txt' works as you would
332 expect.
333
334 ** The HTML parser has been rewritten.  The new one works more
335 reliably, allows finer-grained control over which tags and attributes
336 are detected, and has better support for some features like correctly
337 skipping comments and declarations, decoding entities, etc.  It is
338 also more general.
339
340 ** <meta name="robots"> tags are now respected.
341
342 ** Wget's internal tables now use hash tables instead of linked lists
343 where appropriate.  This results in huge speedups when retrieving
344 large sites (thousands of documents).
345
346 ** Wget now has a man page, automatically generated from the Texinfo
347 documentation.  (The last version that shipped with a man page was
348 1.4.5).  To get this, you need to have pod2man from the Perl
349 distribution installed on your system.
350 \f
351 * Changes in Wget 1.6
352
353 ** Administrative changes.
354
355 *** Maintainership.  Due to Hrvoje being plagued with a "real job",
356 Dan Harkless is the most active maintainer (not that he doesn't have a
357 real job as well).  Hrvoje still participates occasionally, and both
358 are being helped by many other people.
359
360 *** Web page.  Thanks to Jan Prikryl, Wget has an "official" web page.
361 Take a look at:
362
363     http://sunsite.dk/wget/
364
365 *** Anonymous CVS.  Thanks to ever-helpful Karsten Thygesen, Wget
366 sources are now available at an anonymous CVS server.  Take a look at
367 the web page for downloading instructions.
368
369 ** New -K / --backup-converted / backup_converted = on option causes files
370 modified due to -k to be saved with a .orig prefix before being changed.  When
371 using -N as well, it is these .orig files that are compared against the server.
372
373 ** New --follow-tags / follow_tags = ... option allows you to restrict
374 Wget to following only certain HTML tags when doing a recursive
375 retrieval.  -G / --ignore-tags / ignore_tags = ... is just the
376 opposite -- all tags but the ones you specify will be followed.
377
378 ** New --waitretry / waitretry = SECONDS option allows waiting between retries
379 of failed downloads.  Wget will use "linear" backoff, waiting 1 second after the
380 first failure, 2 after the second, up to SECONDS.  waitretry is set to 10 by
381 default in the system wgetrc.
382
383 ** New -p / --page-requisites / page_requisites = on option causes
384 Wget to download all ancillary files necessary to display a given HTML
385 page properly (e.g. inlined images).
386
387 ** New -E / --html-extension / html_extension = on option causes Wget
388 to append ".html" to text/html filenames not ending in regexp
389 "\.[Hh][Tt][Mm][Ll]?".
390
391 ** New type of .wgetrc command -- "lockable Boolean".  Can be set to on, off,
392 always, or never.  This allows the .wgetrc to override the commandline.  So far,
393 passive_ftp is the only .wgetrc command which takes a lockable Boolean.
394
395 ** A number of new translation files have been added.
396
397 ** New --bind-address / bind_address = <address> option for people on hosts 
398 bound to multiple IP addresses.
399
400 ** wget now accepts (illegal per HTTP spec) relative URLs in HTTP redirects.
401 \f
402 * Wget 1.5.3 is a bugfix release with no user-visible changes.
403 \f
404 * Wget 1.5.2 is a bugfix release with no user-visible changes.
405 \f
406 * Wget 1.5.1 is a bugfix release with no user-visible changes.
407 \f
408 * Changes in Wget 1.5.0
409
410 ** Wget speaks many languages!
411
412 On systems with gettext(), Wget will output messages in the language
413 set by the current locale, if available.  At this time we support
414 Czech, German, Croatian, Italian, Norwegian and Portuguese.
415
416 ** Opie (Skey) is now supported with FTP.
417
418 ** HTTP Digest Access Authentication (RFC2069) is now supported.
419
420 ** The new `-b' option makes Wget go to background automatically.
421
422 ** The `-I' and `-X' options now accept wildcard arguments.
423
424 ** The `-w' option now accepts suffixes `s' for seconds, `m' for
425 minutes, `h' for hours, `d' for days and `w' for weeks.
426
427 ** Upon getting SIGHUP, the whole previous log is now copied to
428 `wget-log'.
429
430 ** Wget now understands proxy settings with explicit usernames and
431 passwords, e.g. `http://user:password@proxy.foo.com/'.
432
433 ** You can use the new `--cut-dirs' option to make Wget create less
434 directories.
435
436 ** The `;type=a' appendix to FTP URLs is now recognized.  For
437 instance, the following command will retrieve the welcoming message in
438 ASCII type transfer:
439
440     wget "ftp://ftp.somewhere.com/welcome.msg;type=a"
441
442 ** `--help' and `--version' options have been redone to to conform to
443 standards set by other GNU utilities.
444
445 ** Wget should now be compilable under MS Windows environment.  MS
446 Visual C++ and Watcom C have been used successfully.
447
448 ** If the file length is known, percentages are displayed during
449 download.
450
451 ** The manual page, now hopelessly out of date, is no longer
452 distributed with Wget.
453 \f
454 * Wget 1.4.5 is a bugfix release with no user-visible changes.
455 \f
456 * Wget 1.4.4 is a bugfix release with no user-visible changes.
457 \f
458 * Changes in Wget 1.4.3
459
460 ** Wget is now a GNU utility.
461
462 ** Can do passive FTP.
463
464 ** Reads .netrc.
465
466 ** Info documentation expanded.
467
468 ** Compiles on pre-ANSI compilers.
469
470 ** Global wgetrc now goes to /usr/local/etc (i.e. $sysconfdir).
471
472 ** Lots of bugfixes.
473 \f
474 * Changes in Wget 1.4.2
475
476 ** New mirror site at ftp://sunsite.auc.dk/pub/infosystems/wget/,
477 thanks to Karsten Thygesen.
478
479 ** Mailing list!  Mail to wget-request@sunsite.auc.dk to subscribe.
480
481 ** New option --delete-after for proxy prefetching.
482
483 ** New option --retr-symlinks to retrieve symbolic links like plain
484 files.
485
486 ** rmold.pl -- script to remove files deleted on the remote server
487
488 ** --convert-links should work now.
489
490 ** Minor bugfixes.
491 \f
492 * Changes in Wget 1.4.1
493
494 ** Minor bugfixes.
495
496 ** Added -I (the opposite of -X).
497
498 ** Dot tracing is now customizable; try wget --dot-style=binary
499 \f
500 * Changes in Wget 1.4.0
501
502 ** Wget 1.4.0 [formerly known as Geturl] is an extensive rewrite of
503 Geturl.  Although many things look suspiciously similar, most of the
504 stuff was rewritten, like recursive retrieval, HTTP, FTP and mostly
505 everything else.  Wget should be now easier to debug, maintain and,
506 most importantly, use.
507
508 ** Recursive HTTP should now work without glitches, even with Location
509 changes, server-generated directory listings and other naughty stuff.
510
511 ** HTTP regetting is supported on servers that support Range
512 specification. WWW authorization is supported -- try
513 wget http://user:password@hostname/
514
515 ** FTP support was rewritten and widely enhanced. Globbing should now
516 work flawlessly. Symbolic links are created locally. All the
517 information the Unix-style ls listing can give is now recognized.
518
519 ** Recursive FTP is supported, e.g.
520     wget -r ftp://gnjilux.cc.fer.hr/pub/unix/util/
521
522 ** You can specify "rejected" directories, to which you do not want to
523 enter, e.g. with wget -X /pub
524
525 ** Time-stamping is supported, with both HTTP and FTP. Try wget -N URL.
526
527 ** A new texinfo reference manual is provided.  It can be read with
528 Emacs, standalone info, or converted to HTML, dvi or postscript.
529
530 ** Fixed a long-standing bug, so that Wget now works over SLIP
531 connections.
532
533 ** You can have a system-wide wgetrc (/usr/local/lib/wgetrc by
534 default). Settings in $HOME/.wgetrc override the global ones, of
535 course :-)
536
537 ** You can set up quota in .wgetrc to prevent sucking too much
538 data. Try `quota = 5M' in .wgetrc (or quota = 100K if you want your
539 sysadmin to like you).
540
541 ** Download rate is printed after retrieval.
542
543 ** Wget now sends the `Referer' header when retrieving
544 recursively.
545
546 ** With the new --no-parent option Wget can retrieve FTP recursively
547 through a proxy server.
548
549 ** HTML parser, as well as the whole of Wget was rewritten to be much
550 faster and less memory-consuming (yes, both).
551
552 ** Absolute links can be converted to relative links locally. Check
553 wget -k.
554
555 ** Wget catches hangup, filtering the output to a log file and
556 resuming work. Try kill -HUP %?wget.
557
558 ** User-defined headers can be sent.  Try
559
560     wget http://fly.cc.her.hr/ --header='Accept-Charset: iso-8859-2'
561
562 ** Acceptance/Rejection lists may contain wildcards.
563
564 ** Wget can display HTTP headers and/or FTP server response with the
565 new `-S' option.  It can save the original HTTP headers with `-s'.
566
567 ** socks library is now supported (thanks to Antonio Rosella
568 <Antonio.Rosella@agip.it>). Configure with --with-socks.
569
570 ** There is a nicer display of REST-ed output.
571
572 ** Many new options (like -x to force directory hierarchy, or -m to
573 turn on mirroring options).
574
575 ** Wget is now distributed under GNU General Public License (GPL).
576
577 ** Lots of small features I can't remember. :-)
578
579 ** A host of bugfixes.
580 \f
581 * Changes in Geturl 1.3
582
583 ** Added FTP globbing support (ftp://fly.cc.fer.hr/*)
584
585 ** Added support for no_proxy
586
587 ** Added support for ftp://user:password@host/
588
589 ** Added support for %xx in URL syntax
590
591 ** More natural command-line options
592
593 ** Added -e switch to execute .geturlrc commands from the command-line
594
595 ** Added support for robots.txt
596
597 ** Fixed some minor bugs
598 \f
599 * Geturl 1.2 is a bugfix release with no user-visible changes.
600 \f
601 * Changes in Geturl 1.1
602
603 ** REST supported in FTP
604
605 ** Proxy servers supported
606
607 ** GNU getopt used, which enables command-line arguments to be ordered
608 as you wish, e.g.  geturl http://fly.cc.fer.hr/ -vo log is the same as
609 geturl -vo log http://fly.cc.fer.hr/
610
611 ** Netscape-compatible URL syntax for HTTP supported: host[:port]/dir/file
612
613 ** NcFTP-compatible colon URL syntax for FTP supported: host:/dir/file
614
615 ** <base href="xxx"> supported
616
617 ** autoconf supported
618 \f
619 ----------------------------------------------------------------------
620 Copyright information:
621
622 Copyright (C) 1997-2005 Free Software Foundation, Inc.
623
624    Permission is granted to anyone to make or distribute verbatim
625    copies of this document as received, in any medium, provided that
626    the copyright notice and this permission notice are preserved, thus
627    giving the recipient permission to redistribute in turn.
628
629    Permission is granted to distribute modified versions of this
630    document, or of portions of it, under the above conditions,
631    provided also that they carry prominent notices stating who last
632    changed them.