* doc/autoconf.texi:
[autoconf.git] / NEWS
blob12579e55caeb889b848e9c4701b1a236eece7c71
1 * Major changes in Autoconf 2.59e
3 * Major changes in Autoconf 2.59d
5   Released 2006-06-05, by Ralf Wildenhues.
7 ** GNU make now recommended for VPATH builds
8   INSTALL now suggests VPATH builds (e.g., "sh ../srcdir/configure")
9   only if you use GNU make.  In practice, other 'make' implementations
10   have too many subtle incompatibilities in their support for VPATH.
11   Many packages (including Autoconf itself) are portable to other
12   'make' implementations, but some packages are not, and recommending
13   GNU make keeps the installation instructions simpler.
15 ** Even more safety checks for the new Directory variables:
16   Warn about suspicious `${datarootdir}' found in config files output.
18 ** AC_TRY_COMMAND, AC_TRY_EVAL, ac_config_guess, ac_config_sub, ac_configure
19   These never-documented macros and variables have been marked with
20   comments saying that they may be removed in a future release,
21   because their use can lead to unintended code being executed.
22   If you need functionality that only these macros or variables
23   currently supply, please write bug-autoconf@gnu.org.
25 ** AC_SUBST, AC_DEFINE
26   Literal arguments to these are passed to m4_pattern_allow now.
28 ** AC_PROG_CC_STDC
29   Passing 'ac_cv_prog_cc_stdc=no' to 'configure' now sets ac_cv_prog_cc_c99
30   and ac_cv_prog_cc_c89 to 'no' as well, for backward compatibility with
31   obsolete K&R tests in the Automake test suite.
33 ** AC_PROG_CXX_C_O
34   New macro.
36 ** AC_PROG_MKDIR_P
37   New macro.
39 ** AS_MKDIR_P
40   Now more robust with special characters in file names, or when
41   multiple processes create the same directory at the same time.
43 ** Obsolescent macros
44   The documentation now says that the following macros are obsolescent:
45   they test for problems that are so old that they are no longer of
46   practical importance on current systems.
48     AC_C_BACKSLASH_A       AC_FUNC_MEMCMP            AC_HEADER_DIRENT
49     AC_C_CONST             AC_FUNC_SELECT_ARGTYPES   AC_HEADER_STAT
50     AC_C_PROTOTYPES        AC_FUNC_SETPGRP           AC_HEADER_STDC
51     AC_C_STRINGIZE         AC_FUNC_SETVBUF_REVERSED  AC_HEADER_SYS_WAIT
52     AC_C_VOLATILE          AC_FUNC_STAT              AC_HEADER_TIME
53     AC_FUNC_CLOSEDIR_VOID  AC_FUNC_STRFTIME          AC_ISC_POSIX
54     AC_FUNC_GETPGRP        AC_FUNC_UTIME_NULL        AC_PROG_GCC_TRADITIONAL
55     AC_FUNC_LSTAT          AC_FUNC_VPRINTF           AC_STRUCT_TM
57   New programs need not use these macros.  We have no current plans to
58   remove them.
60 ** autoreconf
61   For compatibility with future Libtool 2.0, autoreconf will invoke
62   libtoolize with the option `--ltdl' now, if LT_CONFIG_LTDL_DIR is
63   used.
65 * Major changes in Autoconf 2.59c
67   Released 2006-04-12, by Ralf Wildenhues.
69 ** The configure command now redirects standard input from /dev/null,
70   to help avoid problems with subsidiary commands that might mistakenly
71   read standard input.  AS_ORIGINAL_STDIN_FD points to the original
72   standard input before this redirection, if you really want configure to
73   read from standard input.
75 ** Directory variables adjusted to recent changes in the GNU Coding Standards.
76   The following directory variables are new:
78     datarootdir   read-only architecture-independent data root [PREFIX/share]
79     localedir     locale-specific message catalogs [DATAROOTDIR/locale]
80     docdir        documentation root [DATAROOTDIR/doc/PACKAGE]
81     htmldir       html documentation [DOCDIR]
82     dvidir        dvi documentation [DOCDIR]
83     pdfdir        pdf documentation [DOCDIR]
84     psdir         ps documentation [DOCDIR]
86   The following variables have new default values:
88     datadir       read-only architecture-independent data [DATAROOTDIR]
89     infodir       info documentation [DATAROOTDIR/info]
90     mandir        man documentation [DATAROOTDIR/man]
92   This means that if you use any of `@datadir@', `@infodir@', or
93   `@mandir@' in a file, you will have to ensure `${datarootdir}' is
94   defined in this file.  As a temporary measure, if any of those are
95   found but no mention of `datarootdir', the substitutions will be
96   replaced with values that do not contain `${datarootdir}', and a
97   warning will be issued.
99 ** @top_builddir@ is now a dir name: it is always nonempty and doesn't have
100   a trailing slash.  Similar change will be made to ac_top_builddir in a
101   future release; the old style value, which matches (../)*, is (and will
102   continue to be) available as ac_top_build_prefix.
104 ** AC_C_TYPEOF
105   New macro to check for support of 'typeof' syntax a la GNU C.
107 ** AC_CHECK_DECLS_ONCE, AC_CHECK_FUNCS_ONCE, AC_CHECK_HEADERS_ONCE
108   New "once-only" variants of commonly-used macros, to make 'configure'
109   smaller and faster in common cases.
111 ** AC_FUNC_STRTOLD
112   New macro to check for strtold with C99 semantics.
114 ** AC_HEADER_ASSERT
115   New macro that lets builder disable assertions at 'configure'-time.
117 ** AC_PATH_X
118   Now checks for X11/Xlib.h and XrmInitialize (X proper) rather than
119   X11/Intrinsic.h and XtMalloc (Xt).
121 ** AC_PRESERVE_HELP_ORDER
122   New macro that causes `configure' to display help strings for AC_ARG_ENABLE
123   and AC_ARG_WITH arguments in one region, in the order defined.  The default
124   behavior is to group options of each classes separately.
126 ** AC_PROG_CC, AC_PROG_CXX
127   No longer automatically arrange to declare the 'exit' function of C,
128   when a C++ compiler is used.  Standard Autoconf macros no longer use
129   'exit', so this is no longer an issue for them.  If you use C++, and
130   want to call 'exit', you'll have to arrange for its declaration
131   yourself.  But we now suggest you return from 'main' instead.
133 ** AC_PROG_CC_C89, AC_PROG_CC_C99
134   New macros for ISO C99 support.  AC_PROG_CC_C89 and AC_PROG_CC_C99
135   check for ANSI C89 and ISO C99 support respectively.
137 ** AC_PROG_CC_STDC
138   Has been unobsoleted, and will check if the compiler supports ISO
139   C99, falling back to ANSI C89 if not.  ac_cv_prog_cc_stdc is
140   retained for backwards compatibility, assuming the value of
141   ac_cv_prog_cc_c99 or ac_cv_prog_cc_c89 (whichever is valid, in
142   that order).
144 ** AC_STRUCT_DIRENT_D_INO, AC_STRUCT_DIRENT_D_TYPE
145   New macros for checking commonly-used members of struct dirent.
147 ** AC_SUBST
148   The subtituted value can now contain newlines.
150 ** AC_SUBST_FILE
151   The substitution now occurs only when @variable@ is on a line by itself,
152   optionally surrounded by spaces and tabs.  The whole line is replaced.
154 ** AC_TYPE_LONG_DOUBLE, AC_TYPE_LONG_DOUBLE_WIDER
155   New macros to check for long double, and whether it is wider than double.
156   The old macro AC_C_TYPE_LONG_DOUBLE has been marked as obsolete;
157   applications should switch to the new macro.
159 ** AC_TYPE_INT8_T, AC_TYPE_INT16_T, AC_TYPE_INT32_T, AC_TYPE_INT64_T,
160    AC_TYPE_INTMAX_T, AC_TYPE_INTPTR_T, AC_TYPE_LONG_LONG_INT, AC_TYPE_SSIZE_T,
161    AC_TYPE_UINT8_T, AC_TYPE_UINT16_T, AC_TYPE_UINT32_T, AC_TYPE_UINT64_T,
162    AC_TYPE_UINTMAX_T, AC_TYPE_UINTPTR_T, AC_TYPE_UNSIGNED_LONG_LONG_INT
163   New macros to check for C99 and POSIX types.
165 ** AC_USE_SYSTEM_EXTENSIONS
166   New macro to enable extensions to Posix.
168 ** AH_HEADER
169   New macro which is defined to the name of the first declared config header
170   or undefined if no config headers have been declared yet.
172 ** AS_HELP_STRING
173   The macro correctly handles quadrigraphs now.
175 ** AS_BOURNE_COMPATIBLE, AS_SHELL_SANITIZE, AS_CASE
176   These macros are new or published now.
178 ** AT_COPYRIGHT
179   New macro for copyright notices in testsuite files.
181 ** ALLOCA, LIBOBJS, LTLIBOBJS
182   Object names added to these variables are now prefixed with `${LIBOBJDIR}',
183   as in `${LIBOBJDIR}alloca.o'.  LIBOBJDIR is meant to be defined from
184   `Makefile.in' in case the object files lie in a different directory.
185   The LIBOBJDIR feature is experimental.
187 ** autoreconf
188   Supports --no-recursive now.
190 ** New macros to support Erlang/OTP.
191   New macros for configuring paths to Erlang tools and libraries:
192   AC_ERLANG_PATH_ERLC, AC_ERLANG_NEED_ERLC, AC_ERLANG_PATH_ERL,
193   AC_ERLANG_NEED_ERL, AC_ERLANG_CHECK_LIB, AC_ERLANG_SUBST_ROOT_DIR,
194   AC_ERLANG_SUBST_LIB_DIR.
196   New macros for configuring installation of Erlang libraries:
197   AC_ERLANG_SUBST_INSTALL_LIB_DIR, AC_ERLANG_SUBST_INSTALL_LIB_SUBDIR.
199 ** The manual now mentions Gnulib more prominently.
201 ** New macros to support Objective C.
202   AC_PROG_OBJC, AC_PROG_OBJCPP.
204 * Major changes in Autoconf 2.59b
206   Released 2004-08-20, by Paul Eggert.
208 ** AC_CHECK_ALIGNOF
209   New macro that computes the default alignment of a type.
211 ** AC_CHECK_TOOL, AC_PATH_TOOL, AC_CHECK_TOOLS
212   When cross-compiling, these macros will give a warning if the tool
213   is not prefixed.  In the future, unprefixed cross tools will not
214   be detected; please consult the info documentation for information
215   about the reason of this change.
217 ** AC_CHECK_TARGET_TOOL, AC_PATH_TARGET_TOOL, AC_CHECK_TARGET_TOOLS
218   New macros that detect programs whose name is prefixed with the
219   target type, if the build type and target type are different.
221 ** AC_REQUIRE_AUX_FILE
222   New trace macro that declares expected auxiliary files.
224 ** AC_PROG_GREP
225   New macro that tests for a grep program that accepts as a long a line
226   as possible.
228 ** AC_PROG_EGREP, AC_PROG_FGREP
229   These macros now require AC_PROG_GREP, and try EGREP="$GREP -E" and
230   FGREP="$GREP -F" respectively if possible, or else run a path search for
231   a program that accepts as long a line as possible.
233 ** AC_PROG_SED
234   New macro that tests for a sed program that truncates as few characters
235   as possible.
237 * Major changes in Autoconf 2.59
239   Released 2003-11-04, by Akim Demaille
241 ** ac_abs_builddir etc.
242   Absolute file names were actually relative in 2.58.
244 * Major changes in Autoconf 2.58
246   Released 2003-11-04, by Akim Demaille
248 ** core.*
249   core.* files are no longer removed, as they may be valid user files.
251 ** autoreconf and auxiliary directory
252   Autoreconf creates the auxiliary directory if needed.  This is
253   especially useful for initial "bootstrapping" of fresh CVS checkouts.
255 ** AC_CONFIG_MACRO_DIR
256   Use this macro to declare the directory for local m4 macros for aclocal.
258 ** AC_LIBOBJS
259   No longer includes twice the same file in LIBOBJS if invoked
260   multiple times.
262 ** AC_CONFIG_COMMANDS
263   The directory for its first argument is automatically created.  For
264   instance, with
266       AC_CONFIG_COMMANDS([src/modules.hh], [...])
268   $top_builddir/src/ is created if needed.
270 ** Autotest and local.at
271   The optional file local.at is always included in Autotest test suites.
273 ** Warnings
274   The warnings are always issued, including with cached runs.
275   This became a significant problem since aclocal and automake can
276   run autoconf behind the scene.
278 ** autoheader warnings
279   The warnings of autoheader can be turned off, using --warning.
280   For instance, -Wno-obsolete disables the complaints about acconfig.h
281   and other deprecated constructs.
283 ** New macros
284   AC_C_RESTRICT, AC_INCLUDES_DEFAULT, AC_LANG_ASSERT, AC_LANG_WERROR,
285   AS_SET_CATFILE.
287 ** AC_DECL_SYS_SIGLIST
288   Works again.
290 ** AC_FUNC_MKTIME
291   Now checks that mktime is the inverse of localtime.
293 ** Improve DJGPP portability
294   The Autoconf tools and configure behave better under DJGPP.
296 ** Present But Cannot Be Compiled
297   New FAQ section dedicated to the mystic
299     configure: WARNING: pi.h: present but cannot be compiled
300     configure: WARNING: pi.h: check for missing prerequisite headers?
301     configure: WARNING: pi.h: proceeding with the preprocessor's result
302       messages.
304 ** Concurrent executions of autom4te
305   autom4te now locks its internal files, which enables concurrent
306   executions of autom4te, likely to happen if automake, autoconf,
307   autoheader etc. are run simultaneously.
309 ** Libtool
310   Use of Libtool 1.5 and higher is encouraged.  Compatibility with
311   Libtool pre-1.4 is not checked.
313 ** Autotest
314   Testsuites no longer rerun failed tests in verbose mode; instead,
315   failures are logged while the test is run.
317   In addition, expected failures can be marked as such.
319 * Major changes in Autoconf 2.57
321   Released 2002-12-03 by Paul Eggert.
323 Bug fixes for problems with AIX linker, with freestanding C compilers,
324 with GNU m4 limitations, and with obsolete copies of GNU documents.
326 The Free Documentation License has been upgraded from 1.1 to 1.2.
328 * Major changes in Autoconf 2.56
330   Released 2002-11-15 by Akim Demaille.
332 One packaging problem fixed (config/install-sh was not executable).
334 * Major changes in Autoconf 2.55
336   Released 2002-11-14 by Akim Demaille.
338 Release tips:
340            Have your configure.ac checked by autoscan ("autoscan").
341              Try the warning options ("autoreconf -fv -Wall").
343 ** Documentation
345 - AC_CHECK_HEADER, AC_CHECK_HEADERS
346   More information on proper use.
348 - Writing Test Programs
350   This sections explains how to write good test sources to use with
351   AC_COMPILE_IFELSE etc.  It documents AC_LANG_PROGRAM and so forth.
353 - AC_FOO_IFELSE vs. AC_TRY_FOO
355   Explains why Autoconf moves from AC_TRY_COMPILE etc. to
356   AC_COMPILE_IFELSE and AC_LANG_PROGRAM etc.
358 ** autoreconf
360 - Is more robust to different Gettext installations.
362 - Produces messages (when --verbose) to be understood by Emacs'
363   compile mode.
365 - Supports -W/--warnings.
367 - -m/--make
368   Once the GNU Build System reinstalled, run `./config.status
369   --recheck && ./config.status && make' if possible.
371 ** autom4te
373 - Supports --cache, and --no-cache.
375 - ~/.autom4te.cfg makes it possible to disable the caching mechanism
376   (autom4te.cache).  See `Customizing autom4te' in the documentation.
378 ** config.status
379   Supports --quiet.
381 ** Obsolete options
383   Support for the obsoleted options -m, --macrodir, -l, --localdir is
384   dropped in favor of the safer --include/--prepend-include scheme.
386 ** Macros
388 - New macros
389   AC_COMPILER_IFELSE, AC_FUNC_MBRTOWC, AC_HEADER_STDBOOL,
390   AC_LANG_CONFTEST, AC_LANG_SOURCE, AC_LANG_PROGRAM, AC_LANG_CALL,
391   AC_LANG_FUNC_TRY_LINK, AC_MSG_FAILURE, AC_PREPROC_IFELSE.
393 - Obsoleted
394   Obsoleted macros are kept for Autoconf backward compatibility, but
395   should be avoided in configure.ac.  Running autoupdate is advised.
396   AC_DECL_SYS_SIGLIST.
398 - AC_DEFINE/AC_DEFINE_UNQUOTED
400   We have to stop using the old compatibility scheme --that tried to
401   avoid useless backslashes-- because Libtool 1.4.3 contains a
403   AC_DEFINE([error_t], [int],
404             [Define to a type to use for \`error_t' if it is not
405              otherwise available.])
407   We have to quote the single quotes and backslashes with \.  The old
408   compatibility scheme saw that ` was backslashed, and therefore did
409   not quote the single quote...  Failure.  Hence, Autoconf 2.54 is not
410   compatible with Libtool.  Autoconf 2.55 is, but in some cases might
411   produce more \ than wanted.
413   Please, note that in the future the same problem will happen with
414   AC_MSG_*: use `autoreconf -f -Wall'.
416 ** Bug Fixes
418 - Portability of the Autoconf package to Solaris.
420 - Spurious warnings caused by config.status.
421   This bug is benign, but painful: on some systems (typically
422   FreeBSD), warnings such as:
424      config.status: creating Makefile
425      mv: Makefile: set owner/group (was: 1357/0): Operation not permitted
427   could be issued.  This is fixed.
429 - Parallel Builds
430   Simultaneous executions of config.status are possible again.
432 - Precious variables accumulation
434   config.status could stack several copies of the precious variables
435   assignments.
438 ** Plans for later versions
440 - ./configure <host>
442   The compatibility hooks with the old scheme will be completely
443   removed.  Please, advice/use `--build', `--host', and `--target'
444   only.
446 - AC_CHECK_HEADER, AC_CHECK_HEADERS
448   The tests will be stricter, please make sure your invocations are
449   valid.
451 - shell functions
453   Shell functions will gradually be introduced, probably starting with
454   Autotest.  If you know machines which are in use that you suspect
455   *not* to support shell functions, please run the test suite of
456   Autoconf 2.55 on it, and report the results to
457   bug-autoconf@gnu.org.
459 - AC_MSG_*
461   Special characters in AC_MSG_* need not be quoted.  Currently,
462   Autoconf has heuristics to decide when a string is escaped, or has
463   to be escaped.  This scheme is fragile, and will be removed; the
464   only risk is uglified messages.  Please, run `autoreconf -f -Wall'
465   to find occurrences that will be affected.
467 * Major changes in Autoconf 2.54
469   Released 2002-09-13 by Akim Demaille.
471 ** Executables
473 - autoreconf no longer changes the version of the gettext/po/intl
474   support files. It now adds the files the correspond to the
475   AM_GNU_GETTEXT_VERSION declared in configure.ac.
477   Warning: It now relies on the 'autopoint' program, which is part
478   of GNU gettext 0.11.4 and newer.
480   Please note that you need to have a GNU gettext version that
481   corresponds at least to the AM_GNU_GETTEXT_VERSION declared
482   in configure.ac. You can upgrade to newer GNU gettext versions,
483   though, without needing to change configure.ac.
485 - The -I DIR or --include=DIR option now appends DIR to the include path
486   instead of prepending; this is for consistency with other GNU tools.
487   The new -B DIR or --prepend-include=DIR option has the old behavior.
489 ** Macros
491 - AC_OUTPUT
492   Now handles all the gory details about LIBOBJS and LTLIBOBJS.
493   Please, remove lines such as
495         # This is necessary so that .o files in LIBOBJS are also
496         # built via the ANSI2KNR-filtering rules.
497         LIBOBJS=`echo $LIBOBJS|sed 's/\.o /\$U.o /g;s/\.o$/\$U.o/'`
499   and read the `AC_LIBOBJ vs LIBOBJS' section.  Do not define U in
500   your Makefiles either.
502 - AC_CONFIG_LINKS now makes copies if it can't make links.
504 - AC_FUNC_FNMATCH now tests only for POSIX compatibility, reverting to
505   Autoconf 2.13 behavior.  The new macro AC_FUNC_FNMATCH_GNU also
506   tests for GNU extensions to fnmatch, and replaces fnmatch if needed.
508 - AC_FUNC_SETVBUF_REVERSED no longer fails when cross-compiling.
510 - AC_PROG_CC_STDC is integrated into AC_PROG_CC.
512 - AC_PROG_F77 default search no longer includes cf77 and cfg77.
514 - New macros
516   AC_C_BACKSLASH_A, AC_CONFIG_LIBOBJ_DIR, AC_GNU_SOURCE,
517   AC_PROG_EGREP, AC_PROG_FGREP, AC_REPLACE_FNMATCH,
518   AC_FUNC_FNMATCH_GNU, AC_FUNC_REALLOC, AC_TYPE_MBSTATE_T.
520 - AC_FUNC_GETLOADAVG
521   looks for getloadavg.c in the CONFIG_LIBOBJ_DIR.
523 - AC_FUNC_MALLOC
524   Now defines HAVE_MALLOC to 0 if `malloc' does not work, and asks
525   for an AC_LIBOBJ replacement.
527 ** Bug fixes
529 - Spurious complaints from `m4_bmatch' about invalid regular
530   expressions are suppressed.
532 - Empty top_builddirs are properly handled.
534 - AC_CHECK_MEMBER works correctly when the member is an aggregate.
536 - AC_PATH_PROG
537   Now colon in the optional path arguments are properly handled.
539 ** Improved portability
541 - Both Autoconf the package, and the scripts it produces, should run
542   more reliably with Zsh.  Bear in mind it is the default Bourne shell
543   on Darwin.
545 - Autoconf and the scripts it produces no longer assume the existence of
546   the obsolescent commands egrep and fgrep.
548 ** Documentation
550 - Limitations of Make
551   More of them.
553 - GNATS
554   The GNATS base moved to
555   http://bugs.gnu.org/cgi-bin/gnatsweb.pl?database=autoconf
556   (It is no longer available, though.)
558 ** Misc.
560 - config.log
561   Now contains the list of ouput variables and files (AC_SUBST,
562   AC_SUBST_FILES).
564 * Major changes in Autoconf 2.53
566   Released 2002-03-08 by Akim Demaille.
568 ** Requirements
570   Perl 5.005_03 or later is required: autom4te is written in Perl and is
571   needed by autoconf.  autoheader, autoreconf, ifnames, and autoscan are
572   rewritten in Perl.
574 ** Documentation
576 - AC_INIT
577   Argument requirements, output variables, defined macros.
578 - M4sugar, M4sh, Autotest
579   First sketch.
580 - Double quoting macros
581   AC_TRY_CPP, AC_TRY_COMPILE, AC_TRY_LINK and AC_TRY_RUN.
582 - Licensing
583   The Autoconf manual is now distributed under the terms of the GNU FDL.
584 - Section `Hosts and Cross-Compilation'
585   Explains the rationale for the 2.5x changes in the cross-compilation
586   chain, and in the relationships between build, host, and target
587   types.
588   Emphasizes that `cross-compilation' == `--host is given'.
589   If you are working on compilers etc., be sure to read this section.
590 - Section `AC_LIBOBJ vs. LIBOBJS'
591   Explains why assigning LIBOBJS directly is now an error.
592   Details how to update the code.
594 ** configure
596 - $LINENO
597   Now used instead of hard coded line numbers.
598   This eases the comparison of `configure's, and diminishes the
599   pressure over control version archives.
600   Automatic replacement for shells that don't support this feature.
601 - New output variables
602   @builddir@, @top_builddir@, @abs_srcdir@, @abs_top_srcdir@, @abs_builddir@,
603   @abs_top_builddir@.
605 ** Emacs
607   Autoconf and Autotest modes are provided.
609 ** Executables
611 - autom4te
612   New, used by the Autoconf suite to cache and speed up most processing.
613 - --force, -f
614   Supported by autom4te, autoconf and autoheader.
615 - --include, -I
616   Replaces --autoconf-dir and --localdir in autoconf, autoheader,
617   autoupdate, and autoreconf.
618 - autoreconf
619   No longer passes --cygnus, --foreign, --gnits, --gnu, --include-deps:
620   automake options are to be given via AUTOMAKE_OPTIONS.
621 - autoreconf
622   Runs gettextize and libtoolize when appropriate.
623 - autoreconf
624   --m4dir is no longer supported.
625 - autoreconf
626   Now runs only in the specified directories, defaulting to `.',
627   but understands AC_CONFIG_SUBDIRS for dependent directories.
628   Before, it used to run on all the `configure.ac' found in the
629   current tree.
630   Independent packages are properly updated.
632 ** Bug fixes
634 - The top level $prefix is propagated to the AC_CONFIG_SUBDIRS configures.
635 - AC_TRY_RUN
636   Under the user pressure, $? is finally available.  Probably a mistake.
637 - AC_F77_LIBRARY_LDFLAGS now supports the HP/UX f90 compiler.
638 - Precious variables accumulation
639   config.status could stack several copies of the precious variables
640   assignments.
641 - AC_PATH_PROG and family.
642   Works properly when given a literal path.
643 - AC_FUNC_SETPGRP
644   Somewhere since 2.13, the result had been reversed.
646 ** C Macros
648 - AC_C_BIGENDIAN supports the cross-compiling case.
649 - AC_C_BIGENDIAN accepts ACTION-IF-TRUE, ACTION-IF-FALSE, and
650   ACTION-IF-UNKNOWN arguments.  All are facultative, and the default
651   for ACTION-IF-TRUE is to define WORDS_BIGENDIAN like AC_C_BIGENDIAN
652   always did.
653 - AC_C_LONG_DOUBLE now succeeds only if `long double' has more range or
654   precision than `double'.
656 ** Generic macros
658 - AC_INIT
659   It now defines the preprocessor symbols PACKAGE_NAME,
660   PACKAGE_TARNAME, PACKAGE_VERSION, PACKAGE_STRING, and
661   PACKAGE_BUGREPORT.
663 - AC_INIT
664   Admits a fourth optional parameter: the tar name.
666 - AC_CONFIG_COMMANDS, HEADERS, FILES, LINKS.
667   Provide the user with srcdir, ac_srcdir, ac_top_srcdir, ac_builddir,
668   ac_top_builddir, ac_abs_srcdir, ac_abs_top_srcdir, ac_abs_builddir,
669   ac_abs_top_builddir.
671 - AC_CONFIG_COMMANDS, HEADERS, FILES, LINKS and AC_OUTPUT.
672   Are much less expensive when using long lists of files.
674 - AC_PREFIX_PROGRAM
675   Works with shell variables, and non alphanumeric names.
677 ** Library macros
679 - AC_FUNC_STRERROR_R now sets STRERROR_R_CHAR_P, not HAVE_WORKING_STRERROR_R,
680   because POSIX 1003.1-200x draft 7 says strerror_r returns int, not char *.
682 - AC_FUNC_STRTOD substitutes POW_LIB.
684 - AC_FUNC_STRNLEN
685   New.
687 * Major changes in Autoconf 2.52
689   Released 2001-07-18 by Akim Demaille.
691 ** Documentation
692 - AC_ARG_VAR
693 - Quadrigraphs
694   This feature was present in autoconf 2.50 but was not documented.
695   For example, `@<:@' is translated to `[' just before output.  This
696   is useful when writing strings that contain unbalanced quotes, or
697   other hard-to-quote constructs.
698 - m4_pattern_forbid, m4_pattern_allow
699 - Tips for upgrading from 2.13.
700 - Using autoscan to maintain a configure.ac.
702 ** Default includes
703 - Now include stdint.h.
704 - sys/types.h and sys/stat.h are guarded.
705 - strings.h is included if available, and not conflicting with string.h.
707 ** Bug fixes
708 - The test suite is more robust and presents less false failures.
709 - Invocation of GNU M4 now robust to POSIXLY_CORRECT.
710 - configure accepts --prefix='' again.
711 - AC_CHECK_LIB works properly when its first argument is not a
712   literal.
713 - HAVE_INTTYPES_H is defined only if not conflicting with sys/types.h.
714 - build_, host_, and target_alias are AC_SUBST as in 2.13.
715 - AC_ARG_VAR properly propagates precious variables inherited from the
716   environment to ./config.status.
717 - Using --program-suffix/--program-prefix is portable.
718 - Failures to detect the default compiler's output extension are less
719   likely.
720 - `config.status foo' works properly when `foo' depends on variables
721   set in an AC_CONFIG_THING INIT-CMD.
722 - autoheader is more robust to broken input.
723 - Fixed Fortran name-mangling and link tests on a number of systems,
724   e.g. NetBSD; see AC_F77_DUMMY_MAIN, below.
726 ** Generic macros
727 - AC_CHECK_HEADER and AC_CHECK_HEADERS support a fourth argument to
728   specify pre-includes.  In this case, the headers are compiled with
729   cc, not merely preprocessed by cpp.  Therefore it is the _usability_
730   of a header which is checked for, not just its availability.
731 - AC_ARG_VAR refuses to run configure when precious variables have
732   changed.
733 - Versions of compilers are dumped in the logs.
734 - AC_CHECK_TYPE recognizes use of `foo_t' as a replacement type.
736 ** Specific Macros
737 - AC_PATH_XTRA only adds -ldnet to $LIBS if it's needed to link.
738 - AC_FUNC_WAIT3 and AC_SYS_RESTARTABLE_SYSCALLS are obsoleted.
739 - AM_FUNC_ERROR_AT_LINE, AM_FUNC_FNMATCH, AM_FUNC_MKTIME,
740   AM_FUNC_OBSTACK, and AM_FUNC_STRTOD are now activated.
741   Be sure to read `Upgrading from Version 2.13' to understand why
742   running `autoupdate' is needed.
743 - AC_F77_DUMMY_MAIN, AC_F77_MAIN: new macros to detect whether
744   a main-like routine is required/possible when linking C/C++ with
745   Fortran.  Users of e.g. AC_F77_WRAPPERS should be aware of these.
746 - AC_FUNC_GETPGRG behaves better when cross-compiling.
748 * Major changes in Autoconf 2.51
749 There was no release of Autoconf 2.51 since some packagers had used
750 this version number without permission to ship intermediary versions
751 of 2.50.  The version was skipped to avoid confusion.
753 * Major changes in Autoconf 2.50
755   Released 2001-05-21 by Akim Demaille.
757 ** Lots of bug fixes
758 There have been far too many to enumerate them here.  Check out
759 ChangeLog if you really want to know more.
761 ** Improved documentation
762 In particular, portability issues are better covered.
764 ** Use of Automake
765 All the standard GNU Makefile targets are supported.  The layout has
766 changed: m4/ holds the m4 extensions Autoconf needs for its
767 configuration, doc/ contains the documentation, and tests/ contains
768 the test suite.
770 ** Man pages are provided
771 For autoconf, autoreconf, autoupdate, autoheader, autoscan, ifnames,
772 config.guess, config.sub.
774 ** autoconf
775 - --trace
776   Provides a safe and powerful means to trace the macro uses.  This
777   provide the parsing layer for tools which need to `study'
778   configure.in.
780 - --warnings
781   Specify what category of warnings should be enabled.
783 - When recursing into subdirectories, try for configure.gnu before
784   configure to adapt for packages not using autoconf on case-insensitive
785   file systems.
787 - Diagnostics
788   More errors are now caught (circular AC_REQUIRE dependencies,
789   AC_DEFINE in the action part of an AC_CACHE_CHECK, too many pops
790   etc.).  In addition, their location and call stack are given.
792 ** autoupdate
793 autoupdate is much more powerful, and is able to provide the glue code
794 which might be needed to move from an old macro to its newer
795 equivalent.
797 You are strongly encouraged to use it to modernize both your
798 `configure.in' and your .m4 extension files.
800 ** autoheader
801 The internal machinery of autoheader has completely changed.  As a
802 result, using `acconfig.h' should be considered to be obsoleted, and
803 you are encouraged to get rid of it using the AH macros.
805 ** autoreconf
806 Extensive overhaul.
808 ** Fortran 77 compilers
809 Globally, the support for Fortran 77 is considerably improved.
811 Support for automatically determining a Fortran 77 compiler's
812 name-mangling scheme.  New CPP macros F77_FUNC and F77_FUNC_ are
813 provided to wrap C/C++ identifiers, thus making it easier and more
814 transparent for C/C++ to call Fortran 77 routines, and Fortran 77 to
815 call C/C++ routines.  See the Texinfo documentation for details.
817 ** Test suite
818 The test suite no longer uses DejaGNU.  It should be easy to submit
819 test cases in this new framework.
821 ** configure
822 - --help, --help=long, -hl
823   no longer dumps useless items.
824 - --help=short, -hs
825   lists only specific options.
826 - --help=recursive, -hr
827   displays the help of all the embedded packages.
828 - Remembers environment variables when reconfiguring.
829   The previous scheme to set envvar before running configure was
830     ENV=VAL ./configure
831   what prevented configure from remembering the environment in which
832   it was run, therefore --recheck was run in an inconsistent
833   environment.  Now, one should run
834     ./configure ENV=VAR
835   and then --recheck will work properly.  Variables declared with
836   AC_ARG_VAR are also preserved.
837 - cross-compilation
838   $build defaults to `config.guess`, $host to $build, and then $target
839   to $host.
840   Cross-compilation is a global status of the package, it no longer
841   depends upon the current language.
842   Cross compilation is enabled iff the user specified `--host'.
843   `configure' now fails if it can't run the executables it compiles,
844   unless cross-compilation is enabled.
845 - Cache file
846   The cache file is disabled by default.  The new options
847   `--config-cache', `-C' set the cache to `config.cache'.
849 ** config.status
850 - faster
851   Much faster on most architectures.
852 - concurrent executions
853   It is safe to use `make -j' with config.status.
854 - human interface improved
855   It is possible to invoke
856     ./config.status foobar
857   instead of the former form (still valid)
858     CONFIG_COMMANDS= CONFIG_HEADERS= CONFIG_LINKS= \
859     CONFIG_FILES=foobar:foo.in:bar.in \
860     ./config.status
861   The same holds for configuration headers and links.
862   You can instantiate unknown files and headers:
863     ./config.status --header foo.h:foo.h.in --file bar:baz
864 - has a useful --help
865 - accepts special file name "-" for stdin/stdout
868 ** Identity Macros
869 - AC_COPYRIGHT
870   Specify additional copyright information.
872 - AC_INIT
873   Now expects the identity of the package as argument.
875 ** General changes.
876 - Uniform quotation
877   Most macros, if not all, now strictly follow the `one quotation
878   level' rule.  This results in a more predictable expansion.
880 - AC_REQUIRE
881   A sly bug in the AC_REQUIRE machinery, which could produce incorrect
882   configure scripts, was fixed by Axel Thimm.
884 ** Setup Macros
885 - AC_ARG_VAR
886   Document and ask for the registration of an envvar.
888 - AC_CONFIG_SRCDIR
889   Specifies the file which `configure' should look for when trying to
890   find the source tree (used to be handled by AC_INIT).
892 - AC_CONFIG_COMMANDS
893   To add new actions to config.status.  Should be used instead of
894   AC_OUTPUT_COMMANDS.
896 - AC_CONFIG_LINKS
897   Replaces AC_LINK_FILES.
899 - AC_CONFIG_HEADERS, AC_CONFIG_COMMANDS, AC_CONFIG_SUBDIRS,
900   AC_CONFIG_LINKS, and AC_CONFIG_FILES
901   They now obey sh: you should no longer use shell variables as
902   argument.  Instead of
904         test "$package_foo_enabled" = yes && $my_subdirs="$my_subdirs foo"
905         AC_CONFIG_SUBDIRS($my_subdirs)
907   write
909         if test "$package_foo_enabled" = yes; then
910           AC_CONFIG_SUBDIRS(foo)
911         fi
913 - AC_HELP_STRING
914   To format an Autoconf macro's help string so that it looks pretty
915   when the user executes `configure --help'.
918 ** Generic Test Macros
919 - AC_CHECK families
920   The interface of the AC_CHECK families of macros (decl, header,
921   type, member, func) is now uniform.  They support the same set of
922   default includes.
924 - AC_CHECK_DECL, AC_CHECK_DECLS
925   To check whether a symbol is declared.
927 - AC_CHECK_SIZEOF, AC_C_CHAR_UNSIGNED.
928   No longer need a cross-compilation default.
930 - AC_CHECK_TYPE
931   The test it performs is much more robust than previously, and makes
932   it possible to test builtin types in addition to typedefs.
933   It is now schizophrenic:
934     - AC_CHECK_TYPE(TYPE, REPLACEMENT)
935       remains for backward compatibility, but its use is discouraged.
936     - AC_CHECK_TYPE(TYPE, IF-FOUND, IF-NOT-FOUND, INCLUDES)
937       behaves exactly like the other AC_CHECK macros.
939 - AC_CHECK_TYPES
940   Checks whether given types are supported by the system.
942 - AC_CHECK_MEMBER, AC_CHECK_MEMBERS
943   Check for given members in aggregates (e.g., pw_gecos in struct
944   passwd).
946 - AC_PROG_CC_STDC
947   Checks if the compiler supports ISO C, included when needs special
948   options.
950 - AC_PROG_CPP
951   Checking whether the preprocessor indicates missing includes by the
952   error code. stderr is checked by AC_TRY_CPP only as a fallback.
954 - AC_LANG
955   Takes a language as argument and replaces AC_LANG_C,
956   AC_LANG_CPLUSPLUS and AC_LANG_FORTRAN77.
958 - AC_LANG_PUSH, AC_LANG_POP
959   Are preferred to AC_LANG_SAVE, AC_LANG_RESTORE.
961 ** Specific Macros
962 - AC_FUNC_CHOWN, AC_FUNC_MALLOC, AC_FUNC_STRERROR_R,
963   AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK, AC_FUNC_STAT, AC_FUNC_LSTAT,
964   AC_FUNC_ERROR_AT_LINE, AC_FUNC_OBSTACK, AC_FUNC_STRTOD, AC_FUNC_FSEEKO.
965   New.
967 - AC_FUNC_GETGROUPS
968   Sets GETGROUPS_LIBS.
970 - AC_FUNC_GETLOADAVG
971   Defines `HAVE_STRUCT_NLIST_N_UN_N_NAME' instead of `NLIST_NAME_UNION'.
973 - AC_PROG_LEX
974   Now integrates `AC_DECL_YYTEXT' which is obsoleted.
976 - AC_SYS_LARGEFILE
977   Arrange for large-file support.
979 - AC_EXEEXT, AC_OBJEXT
980   You are no longer expected to use them: their computation is
981   performed by default.
983 ** C++ compatibility
984   Every macro has been revisited in order to support at best CC=c++.
986 Major changes in Autoconf 2.14:
987   There was no release of GNU Autoconf 2.14.
989 Major changes in Autoconf 2.13:
991   Released 1999-05-01 by Ben Elliston.
993 * Support for building on Win32 systems where the only available C or
994   C++ compiler is the Microsoft Visual C++ command line compiler
995   (`cl').  Additional support for building on Win32 systems which are
996   using the Cygwin or Mingw32 environments.
997 * Support for alternative object file and executable file extensions.
998   On Win32, for example, these are .obj and .exe. These are discovered
999   using AC_OBJEXT and AC_EXEEXT, which substitute @OBJEXT@ and
1000   @EXEEXT@ in the output, respectively.
1001 * New macros: AC_CACHE_LOAD, AC_CACHE_SAVE, AC_FUNC_SELECT_ARGTYPES,
1002   AC_VALIDATE_CACHED_SYSTEM_TUPLE, AC_SEARCH_LIBS, AC_TRY_LINK_FUNC,
1003   AC_C_STRINGIZE, AC_CHECK_FILE(S), AC_PROG_F77 (and friends).
1004 * AC_DEFINE now has an optional third argument for a description to be
1005   placed in the config header input file (e.g. config.h.in).
1006 * The C++ code fragment compiled for the C++ compiler test had to be
1007   improved to include an explicit return type for main(). This was
1008   causing failures on systems using recent versions of the EGCS C++
1009   compiler.
1010 * Fixed an important bug in AC_CHECK_TYPE that would cause a configure
1011   script to report that `sometype_t' was present when only `type_t'
1012   was defined.
1013 * Merge of the FSF version of config.guess and config.sub to modernize
1014   these scripts. Add support for a few new hosts in config.guess.
1015   Incorporate latest versions of install-sh, mkinstalldirs and
1016   texinfo.tex from the FSF.
1017 * autoreconf is capable of running automake if necessary (and
1018   applicable).
1019 * Support for Fortran 77. See the Texinfo documentation for details.
1020 * Bug fixes and workarounds for quirky bugs in vendor utilities.
1022 Major changes in Autoconf 2.12:
1024   Released 1996-11-26 by David J. MacKenzie
1026 * AC_OUTPUT and AC_CONFIG_HEADER can create output files by
1027   concatenating multiple input files separated by colons, like so:
1028   AC_CONFIG_HEADER(config.h:conf.pre:config.h.in:conf.post)
1029   AC_OUTPUT(Makefile:Makefile.in:Makefile.rules)
1030   The arguments may be shell variables, to compute the lists on the fly.
1031 * AC_LINK_FILES and AC_CONFIG_SUBDIRS may be called multiple times.
1032 * New macro AC_OUTPUT_COMMANDS adds more commands to run in config.status.
1033 * Bug fixes.
1035 Major changes in Autoconf 2.11:
1037   Released November 18th, 1996, by David J. MacKenzie
1039 * AC_PROG_CC and AC_PROG_CXX check whether the compiler works.
1040   They also default CFLAGS/CXXFLAGS to "-g -O2" for gcc, instead of "-g -O".
1041 * AC_REPLACE_FUNCS defines HAVE_foo if the system has the function `foo'.
1042 * AC_CONFIG_HEADER expands shell variables in its argument.
1043 * New macros: AC_FUNC_FNMATCH, AC_FUNC_SETPGRP.
1044 * The "checking..." messages and the source code for test programs that
1045   fail are saved in config.log.
1046 * Another workaround has been added for seds with small command length limits.
1047 * config.sub and config.guess recognize more system types.
1048 * Bug fixes.
1050 Major changes in Autoconf 2.10:
1052   Released May 7th, 1996, by Roland McGrath
1054 * Bug fixes.
1055 * The cache variable names used by `AC_CHECK_LIB(LIB, FUNC, ...)' has
1056   changed: now $ac_cv_lib_LIB_FUNC, previously $ac_cv_lib_LIB.
1058 Major changes in Autoconf 2.9:
1060   Released March 16th, 1996, by Roland McGrath
1062 * Bug fixes.
1064 Major changes in Autoconf 2.8:
1066   Released March 8th, 1996, by Roland McGrath
1068 * Bug fixes.
1070 Major changes in Autoconf 2.7:
1072   Released November 22nd, 1995, by David J. MacKenzie
1074 * Bug fixes.
1076 Major changes in Autoconf 2.6:
1078   Released November 20th, 1995, by David J. MacKenzie
1080 * Bug fixes.
1082 Major changes in Autoconf 2.5:
1084   Released November 17th, 1995, by Roland McGrath
1086 * New configure options --bindir, --libdir, --datadir, etc., with
1087   corresponding output variables.
1088 * New macro: AC_CACHE_CHECK, to make using the cache easier.
1089 * config.log contains the command being run as well as any output from it.
1090 * AC_CHECK_LIB can check for libraries with "." or "/" or "+" in their name.
1091 * AC_PROG_INSTALL doesn't cache a name for install-sh, for sharing caches.
1092 * AC_CHECK_PROG, AC_PATH_PROG, AC_CHECK_PROGS, AC_PATH_PROGS, and
1093   AC_CHECK_TOOL can search a path other than $PATH.
1094 * AC_CHECK_SIZEOF takes an optional size to use when cross-compiling.
1096 Major changes in Autoconf 2.4:
1098   Released June 14th, 1995, by David J. MacKenzie
1100 * Fix a few bugs found by Emacs testers.
1102 Major changes in Autoconf 2.3:
1104   Released March 27th, 1995, by David J. MacKenzie
1106 * Fix the cleanup trap in several ways.
1107 * Handle C compilers that are picky about option placement.
1108 * ifnames gets the version number from the right directory.
1110 Major changes in Autoconf 2.2:
1112   Released March 8th, 1995, by David J. MacKenzie
1114 * The ifnames utility is much faster but requires a "new awk" interpreter.
1115 * AC_CHECK_LIB and AC_HAVE_LIBRARY check and add the new
1116   library before existing libs, not after, in case it uses them.
1117 * New macros: AC_FUNC_GETPGRP, AC_CHECK_TOOL.
1118 * Lots of bug fixes.
1119 * Many additions to the TODO file :-)
1121 Major changes in Autoconf 2.1:
1123   Released November 4th, 1994, by David J. MacKenzie
1125 * Fix C++ problems.
1126 * More explanations in the manual.
1127 * Fix a spurious failure in the testsuite.
1128 * Clarify some warning messages.
1129 * autoreconf by default only rebuilds configure and config.h.in files
1130   that are older than any of their particular input files; there is a
1131   --force option to use after installing a new version of Autoconf.
1133 Thanks to everybody who's submitted changes and additions to Autoconf!
1134 I've incorporated many of them, and am still considering others for
1135 future releases -- but I didn't want to postpone this release indefinitely.
1137 Caution: don't indiscriminately rebuild configure scripts with
1138 Autoconf version 2.  Some configure.in files need minor adjustments to
1139 work with it; the documentation has a chapter on upgrading.  A few
1140 configure.in files, including those for GNU Emacs and the GNU C
1141 Library, need major changes because they relied on undocumented
1142 internals of version 1.  Future releases of those packages will have
1143 updated configure.in files.
1145 It's best to use GNU m4 1.3 (or later) with Autoconf version 2.
1146 Autoconf now makes heavy use of m4 diversions, which were implemented
1147 inefficiently in GNU m4 releases before 1.3.
1149 Major changes in Autoconf 2.0:
1151   Released October 26th, 1994, by David J. MacKenzie
1153 ** New copyright terms:
1154 * There are no restrictions on distribution or use of configure scripts.
1156 ** Documentation:
1157 * Autoconf manual is reorganized to make information easier to find
1158   and has several new indexes.
1159 * INSTALL is reorganized and clearer and is now made from Texinfo source.
1161 ** New utilities:
1162 * autoscan to generate a preliminary configure.in for a package by
1163   scanning its source code for commonly used nonportable functions,
1164   programs, and header files.
1165 * ifnames to list the symbols used in #if and #ifdef directives in a
1166   source tree.
1167 * autoupdate to update a configure.in to use the version 2 macro names.
1168 * autoreconf to recursively remake configure and configuration header
1169   files in a source tree.
1171 ** Changed utilities:
1172 * autoheader can take pieces of acconfig.h to replace config.h.{top,bot}.
1173 * autoconf and autoheader can look for package-local definition files
1174   in an alternate directory.
1176 ** New macros:
1177 * AC_CACHE_VAL to share results of tests between configure runs.
1178 * AC_DEFUN to define macros, automatically AC_PROVIDE them, and ensure
1179   that macros invoked with AC_REQUIRE don't interrupt other macros.
1180 * AC_CONFIG_AUX_DIR, AC_CANONICAL_SYSTEM, AC_CANONICAL_HOST, AC_LINK_FILES to
1181   support deciding unguessable features based on the host and target types.
1182 * AC_CONFIG_SUBDIRS to recursively configure a source tree.
1183 * AC_ARG_PROGRAM to use the options --program-prefix,
1184   --program-suffix, and --program-transform-name to change the names
1185   of programs being installed.
1186 * AC_PREFIX_DEFAULT to change the default installation prefix.
1187 * AC_TRY_COMPILE to compile a test program without linking it.
1188 * AC_CHECK_TYPE to check whether sys/types.h or stdlib.h defines a given type.
1189 * AC_CHECK_LIB to check for a particular function and library.
1190 * AC_MSG_CHECKING and AC_MSG_RESULT to print test results, on a single line,
1191   whether or not the test succeeds.  They obsolete AC_CHECKING and AC_VERBOSE.
1192 * AC_SUBST_FILE to insert one file into another.
1193 * AC_FUNC_MEMCMP to check whether memcmp is 8-bit clean.
1194 * AC_FUNC_STRFTIME to find strftime even if it's in -lintl.
1195 * AC_FUNC_GETMNTENT to find getmntent even if it's in -lsun or -lseq.
1196 * AC_HEADER_SYS_WAIT to check whether sys/wait.h is POSIX.1 compatible.
1198 ** Changed macros:
1199 * Many macros renamed systematically, but old names are accepted for
1200   backward compatibility.
1201 * AC_OUTPUT adds the "automatically generated" comment to
1202   non-Makefiles where it finds @configure_input@ in an input file, to
1203   support files with various comment syntaxes.
1204 * AC_OUTPUT does not replace "prefix" and "exec_prefix" in generated
1205   files when they are not enclosed in @ signs.
1206 * AC_OUTPUT allows the optional environment variable CONFIG_STATUS to
1207   override the file name "config.status".
1208 * AC_OUTPUT takes an optional argument for passing variables from
1209   configure to config.status.
1210 * AC_OUTPUT and AC_CONFIG_HEADER allow you to override the input-file names.
1211 * AC_OUTPUT automatically substitutes the values of CFLAGS, CXXFLAGS,
1212   CPPFLAGS, and LDFLAGS from the environment.
1213 * AC_PROG_CC and AC_PROG_CXX now set CFLAGS and CXXFLAGS, respectively.
1214 * AC_PROG_INSTALL looks for install-sh or install.sh in the directory
1215   specified by AC_CONFIG_AUXDIR, or srcdir or srcdir/.. or
1216   srcdir/../.. by default.
1217 * AC_DEFINE, AC_DEFINE_UNQUOTED, and AC_SUBST are more robust and smaller.
1218 * AC_DEFINE no longer prints anything, because of the new result reporting
1219   mechanism (AC_MSG_CHECKING and AC_MSG_RESULT).
1220 * AC_VERBOSE pays attention to --quiet/--silent, not --verbose.
1221 * AC_ARG_ENABLE and AC_ARG_WITH support whitespace in the arguments to
1222   --enable- and --with- options.
1223 * AC_CHECK_FUNCS and AC_CHECK_HEADERS take optional shell commands to
1224   execute on success or failure.
1225 * Checking for C functions in C++ works.
1227 ** Removed macros:
1228 * AC_REMOTE_TAPE and AC_RSH removed; too specific to tar and cpio, and
1229   better maintained with them.
1230 * AC_ARG_ARRAY removed because no one was likely using it.
1231 * AC_HAVE_POUNDBANG replaced with AC_SYS_INTERPRETER, which doesn't
1232   take arguments, for consistency with all of the other specific checks.
1234 ** New files:
1235 * Comes with config.sub and config.guess, and uses them optionally.
1236 * Uses config.cache to cache test results.  An alternate cache file
1237   can be selected with the --cache-file=FILE option.
1238 * Uses optional shell scripts $prefix/share/config.site and
1239   $prefix/etc/config.site to perform site or system specific initializations.
1240 * configure saves compiler output to ./config.log for debugging.
1241 * New files autoconf.m4 and autoheader.m4 load the other Autoconf macros.
1242 * acsite.m4 is the new name for the system-wide aclocal.m4.
1243 * Has a DejaGnu test suite.
1245 Major changes in Autoconf 1.11:
1247 * AC_PROG_INSTALL calls install.sh with the -c option.
1248 * AC_SET_MAKE cleans up after itself.
1249 * AC_OUTPUT sets prefix and exec_prefix if they weren't set already.
1250 * AC_OUTPUT prevents shells from looking in PATH for config.status.
1252 Plus a few other bug fixes.
1254 Major changes in Autoconf 1.10:
1256 * autoheader uses config.h.bot if present, analogous to config.h.top.
1257 * AC_PROG_INSTALL looks for install.sh in srcdir or srcdir/.. and
1258   never uses cp.
1259 * AC_PROG_CXX looks for cxx as a C++ compiler.
1261 Plus several bugs fixed.
1263 Major changes in Autoconf 1.9:
1265 * AC_YYTEXT_POINTER replaces AC_DECLARE_YYTEXT.
1266 * AC_SIZEOF_TYPE generates the cpp symbol name automatically,
1267   and autoheader generates entries for those names automatically.
1268 * AC_FIND_X gets the result from xmkmf correctly.
1269 * AC_FIND_X assumes no X if --without-x was given.
1270 * AC_FIND_XTRA adds libraries to the variable X_EXTRA_LIBS.
1271 * AC_PROG_INSTALL finds OSF/1 installbsd.
1273 Major changes in Autoconf 1.8:
1275 ** New macros:
1276 * New macros AC_LANG_C, AC_LANG_CPLUSPLUS, AC_LANG_SAVE, AC_LANG_RESTORE,
1277   AC_PROG_CXX, AC_PROG_CXXCPP, AC_REQUIRE_CPP
1278   for checking both C++ and C features in one configure script.
1279 * New macros AC_CHECKING, AC_VERBOSE, AC_WARN, AC_ERROR for printing messages.
1280 * New macros AC_FIND_XTRA, AC_MMAP, AC_SIZEOF_TYPE, AC_PREREQ,
1281   AC_SET_MAKE, AC_ENABLE.
1283 ** Changed macros:
1284 * AC_FIND_X looks for X in more places.
1285 * AC_PROG_INSTALL defaults to install.sh instead of cp, if it's in srcdir.
1286   install.sh is distributed with Autoconf.
1287 * AC_DECLARE_YYTEXT has been removed because it can't work, pending
1288   a rewrite of quoting in AC_DEFINE.
1289 * AC_OUTPUT adds its comments in C format when substituting in C files.
1290 * AC_COMPILE_CHECK protects its ECHO-TEXT argument with double quotes.
1292 ** New or changed command line options:
1293 * configure accepts --enable-FEATURE[=ARG] and --disable-FEATURE options.
1294 * configure accepts --without-PACKAGE, which sets withval=no.
1295 * configure accepts --x-includes=DIR and --x-libraries=DIR.
1296 * Giving --with-PACKAGE no argument sets withval=yes instead of withval=1.
1297 * configure accepts --help, --version, --silent/--quiet, --no-create options.
1298 * configure accepts and ignores most other Cygnus configure options, and
1299   warns about unknown options.
1300 * config.status accepts --help, --version options.
1302 ** File names and other changes:
1303 * Relative srcdir values are not made absolute.
1304 * The values of @prefix@ and @exec_prefix@ and @top_srcdir@ get substituted.
1305 * Autoconf library files are installed in ${datadir}/autoconf, not ${datadir}.
1306 * autoheader optionally copies config.h.top to the beginning of config.h.in.
1307 * The example Makefile dependencies for configure et al. work better.
1308 * Namespace cleanup: all shell variables used internally by Autoconf
1309   have names beginning with `ac_'.
1311 More big improvements are in process for future releases, but have not
1312 yet been (variously) finished, integrated, tested, or documented enough
1313 to release yet.
1315 Major changes in Autoconf 1.7:
1317 * New macro AC_OBSOLETE.
1318 * Bugs in Makefile.in fixed.
1319 * AC_LONG_FILE_NAMES improved.
1321 Major changes in Autoconf 1.6:
1323 * New macro AC_LONG_64_BITS.
1324 * Multiple .h files can be created.
1325 * AC_FIND_X looks for X files directly if it doesn't find xmkmf.
1326 * AC_ALLOCA defines C_ALLOCA if using alloca.c.
1327 * --with-NAME can take a value, e.g., --with-targets=sun4,hp300bsd.
1328 * Unused --no-create option to configure removed.
1329 * autoheader doesn't change the timestamp of its output file if
1330   the file didn't change.
1331 * All macros that look for libraries now use AC_HAVE_LIBRARY.
1332 * config.status checks three optional environment variables to
1333   modify its behavior.
1334 * The usual bug fixes.
1336 Major changes in Autoconf 1.5:
1338 * New macros AC_FIND_X, AC_OFF_T, AC_STAT_MACROS_BROKEN, AC_REVISION.
1339 * autoconf and autoheader scripts have GNU standards conforming
1340   --version and --help options (they print their message and exit).
1341 * Many bug fixes.
1343 Major changes in Autoconf 1.4:
1345 * New macros AC_HAVE_POUNDBANG, AC_TIME_WITH_SYS_TIME, AC_LONG_DOUBLE,
1346   AC_GETGROUPS_T, AC_DEFINE_UNQUOTED.
1347 * autoconf and autoheader use the M4 environment variable to determine the
1348   name of the m4 program to use.
1349 * The --macrodir option to autoconf and autoheader specifies the directory
1350   in which acspecific.m4, acgeneral.m4, etc. reside if not the default.
1351 * autoconf and autoheader can take `-' as their file names, which means to
1352   read stdin as input.
1353 * Resulting configure scripts can take a --verbose option which causes them
1354   to print the results of their tests.
1355 * AC_DEFINE quotes its second argument in such a way that spaces, magic
1356   shell characters, etc. will be preserved during various stages of
1357   expansion done by the shell.  If you don't want this, use
1358   AC_DEFINE_UNQUOTED instead.
1359 * Much textual processing done with external calls to tr and sed have been
1360   internalized with builtin m4 `patsubst' and `translit' calls.
1361 * AC_OUTPUT doesn't hardwire the file names it outputs.  Instead, you can
1362   set the shell variables `gen_files' and `gen_config' to the list of
1363   file names to output.
1364 * AC_DECLARE_YYTEXT does an AC_SUBST of `LEX_OUTPUT_ROOT', which may be
1365   "lex.yy" or "lexyy", depending on the system.
1366 * AC_PROGRAMS_CHECK takes an optional third arg.  If given, it is used as
1367   the default value.
1368 * If AC_ALLOCA chooses alloca.c, it also defines STACK_DIRECTION.
1369 * AC_CONST works much more reliably on more systems.
1370 * Many bug fixes.
1372 Major changes in Autoconf 1.3:
1374 configure no longer requires awk for packages that use a config.h.
1375 Support handling --with-PACKAGE options.
1376 New `autoheader' script to create `config.h.in' from `configure.in'.
1377 Ignore troublesome -lucb and -lPW when searching for alloca.
1378 Rename --exec_prefix to --exec-prefix for GNU standards conformance.
1379 Improve detection of STDC library.
1380 Add AC_HAVE_LIBRARY to check for non-default libraries.
1381 Function checking should work with future GNU libc releases.
1383 Major changes in Autoconf 1.2:
1385 The --srcdir option is now usually unnecessary.
1386 Add a file containing sample comments describing CPP macros.
1387 A comment in config.status tells which host it was configured on.
1388 Substituted variable values can now contain commas.
1389 Fix bugs in various feature checks.
1391 Major changes in Autoconf 1.1:
1393 Added AC_STRCOLL macro.
1394 Made AC_GETLOADAVG check for more things.
1395 AC_OUTPUT argument is now optional.
1396 Various bug fixes.
1398 -----
1400 Copyright (C) 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, 2002,
1401 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
1403 This file is part of GNU Autoconf.
1405 GNU Autoconf is free software; you can redistribute it and/or modify
1406 it under the terms of the GNU General Public License as published by
1407 the Free Software Foundation; either version 2, or (at your option)
1408 any later version.
1410 GNU Autoconf is distributed in the hope that it will be useful,
1411 but WITHOUT ANY WARRANTY; without even the implied warranty of
1412 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
1413 GNU General Public License for more details.
1415 You should have received a copy of the GNU General Public License
1416 along with GNU Autoconf; see the file COPYING.  If not, write to
1417 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
1418 Boston, MA 02110-1301, USA.
1420 Local Variables:
1421 mode: outline
1422 End: