* doc/autoconf.texi (Particular Types): AC_TYPE_INT8_T does not
[autoconf.git] / NEWS
blobaef298427732bbe5b1f670636242c44e14d700f7
1 * Major changes in Autoconf 2.61b (????-??-??)
3 ** New macro AC_OPENMP.
5 ** AC_C_BIGENDIAN now supports universal binaries a la Mac OS X.
7 ** AC_C_RESTRICT now prefers to #define 'restrict' to a variant spelling
8    like '__restrict' if the variant spelling is available, as this is
9    more likely to work when mixing C and C++ code.
11 ** AC_CHECK_ALIGNOF's type argument T is now documented better: it must
12    be a string of tokens such that "T y;" is a valid member declaration
13    in a struct.
15 ** AC_CHECK_SIZEOF now accepts objects as well as types: the general rule
16    is that sizeof (X) works, then AC_CHECK_SIZEOF (X) should work.
18 ** AC_CHECK_TYPE and AC_CHECK_TYPES now work on any C type-name; formerly,
19    they did not work for function types.  In C++, they now work on any
20    type-id that can be the operand of sizeof; this is similar to C,
21    except it excludes anonymous struct and union types.  Formerly,
22    some (but not all) C++ types involving anonymous struct and union
23    were accepted, though this was not documented.
25 ** Autoconf now requires GNU M4 1.4.5 or later.  Earlier versions of M4 have
26    a bug in macro tracing that interferes with the interaction between
27    Autoconf and Automake.  GNU M4 1.4.8 or later is recommended.
29 ** Warnings are now generated by default when an installer invokes
30    'configure' with an unknown --enable-* or --with-* option.
31    These warnings can be disabled with the new AC_DISABLE_OPTION_CHECKING
32    macro, or by invoking 'configure' with --disable-option-checking.
34 ** For portability with the eventual M4 2.0, macros should no longer use
35    anything larger than $9 to refer to arguments.
37 ** AC_C_LONG_DOUBLE is obsolescent.
38   The documentation now says that AC_C_LONG_DOUBLE is obsolescent: it
39   tests for problems that are so old that it is no longer of practical
40   importance on current systems.  New programs need not use
41   AC_C_LONG_DOUBLE.  We have no current plans to remove it.
44 * Major changes in Autoconf 2.61a (2006-12-11)
46 ** AC_FUNC_FSEEKO was broken in 2.61; it didn't make fseeko and ftello visible
47    on many platforms.  This has been fixed.
49 ** AC_FUNC_SETVBUF_REVERSED is now obsolete.  It is still defined for backward
50    compatibility but it does nothing.  The macro was already
51    obsolescent, as the last systems to have the problem were those
52    based on SVR2, which became obsolete in 1987.  The macro had bugs
53    on some modern systems and could no longer be maintained reliably
54    due to lack of ancient systems to test it on.
56 ** config.status now uses awk instead of sed for most substitutions, for speed.
58    - As a side effect multi-line values of substituted variables no
59      longer have a small limit in total size, though for portability
60      each line should not exceed the POSIX length limit for text lines.
62    - It is now documented that Makefile.in should not contain
63      overlapping variable occurrences, e.g., @VAR1@VAR2@.
64      Autoconf's behavior was always iffy in such cases, and the
65      awk implementation has changed the behavior.
67 ** Many uses of 'echo' have been rewritten so that Autoconf-generated
68    scripts have fewer problems with strings or file names containing
69    embedded special characters such as backslash or leading "-".  This
70    was implemented by using `printf '%s\n' "$foo"' instead of `echo
71    "$foo"' when printf works.  Due to the implementation technique
72    used, Autoconf-generated scripts now run considerably more slowly
73    on ancient implementations lacking printf.  However, this should
74    not be a problem, since Autoconf-generated scripts in practice
75    invariably find a more-modern shell these days.
77 * Major changes in Autoconf 2.61 (2006-11-17)
79 ** New macros AC_C_FLEXIBLE_ARRAY_MEMBER, AC_C_VARARRAYS.
81 ** AC_ARG_ENABLE and AC_ARG_WITH now allow '.' in feature and package names.
83 * Major changes in Autoconf 2.60b (2006-10-22)
85 ** BIN_SH
86   Autoconf-generated shell scripts no longer export BIN_SH, due to
87   configuration hassles with this.  Installers who need BIN_SH in
88   their environment should set it before invoking 'configure' and
89   'make'.  As far as we know, this affects only Unixware installations.
91 ** Obsolescent macros
92   The documentation now says that the following macros are obsolescent,
93   as they are superseded by Gnulib:
95     AC_FUNC_FNMATCH  AC_FUNC_FNMATCH_GNU  AC_FUNC_GETLOADVG  AC_REPLACE_FNMATCH
97   New programs should use the Gnulib counterparts of these macros.
98   We have no current plans to remove them from Autoconf.
100 ** AC_COMPUTE_INT no longer caches or reports results.
102 ** AC_CHECK_DECL now also works with aggregate objects.
104 ** AC_USE_SYSTEM_EXTENSIONS now defines _TANDEM_SOURCE for NonStop platforms.
106 ** GNU M4 1.4.7 or later is now recommended.
108 ** m4_mkstemp
109   New M4sugar macro, which is more secure than the POSIX M4 maketemp.
111 ** m4_maketemp
112   Now an alias for m4_mkstemp.
114 * Major changes in Autoconf 2.60a (2006-08-25)
116 ** GNU M4 1.4.6 or later is now recommended.
118 ** The check for C99 now tests for varargs macros, as documented.
119   It also tests that the preprocessor supports 64-bit integers.
121 ** Autoconf now uses constructs like "#ifdef HAVE_STDLIB_H" rather than
122   "#if HAVE_STDLIB_H", so that it now works with "gcc -Wundef -Werror".
124 ** The functionality of the undocumented _AC_COMPUTE_INT is now provided
125   by a public and documented macro, AC_COMPUTE_INT.  The parameters to the
126   two macros are different, so autoupdate will not change the old private name
127   to the new one.  _AC_COMPUTE_INT may be removed in a future release.
129 ** AC_TYPE_LONG_LONG_INT and AC_TYPE_UNSIGNED_LONG_LONG_INT now require
130    that long long types be at least 64 bits wide, as C99 and tradition
131    requires.  Formerly, they accepted implementations of any width.
134 * Major changes in Autoconf 2.60
136   Released 2006-06-23, by Ralf Wildenhues.
138 ** Autoconf no longer depends on whether m4wrap is FIFO (as Posix requires)
139   or LIFO (as in GNU M4 1.4.x).  GNU M4 2.0 is expected to conform to Posix
140   here, so m4wrap/m4_wrap users should no longer depend on LIFO behavior.
142 ** Provide a way to turn off warnings about the changed directory variables.
144 * Major changes in Autoconf 2.59d
146   Released 2006-06-05, by Ralf Wildenhues.
148 ** GNU make now recommended for VPATH builds
149   INSTALL now suggests VPATH builds (e.g., "sh ../srcdir/configure")
150   only if you use GNU make.  In practice, other 'make' implementations
151   have too many subtle incompatibilities in their support for VPATH.
152   Many packages (including Autoconf itself) are portable to other
153   'make' implementations, but some packages are not, and recommending
154   GNU make keeps the installation instructions simpler.
156 ** Even more safety checks for the new Directory variables:
157   Warn about suspicious `${datarootdir}' found in config files output.
159 ** AC_TRY_COMMAND, AC_TRY_EVAL, ac_config_guess, ac_config_sub, ac_configure
160   These never-documented macros and variables have been marked with
161   comments saying that they may be removed in a future release,
162   because their use can lead to unintended code being executed.
163   If you need functionality that only these macros or variables
164   currently supply, please write bug-autoconf@gnu.org.
166 ** AC_SUBST, AC_DEFINE
167   Literal arguments to these are passed to m4_pattern_allow now.
169 ** AC_PROG_CC_STDC
170   Passing 'ac_cv_prog_cc_stdc=no' to 'configure' now sets ac_cv_prog_cc_c99
171   and ac_cv_prog_cc_c89 to 'no' as well, for backward compatibility with
172   obsolete K&R tests in the Automake test suite.
174 ** AC_PROG_CXX_C_O
175   New macro.
177 ** AC_PROG_MKDIR_P
178   New macro.
180 ** AS_MKDIR_P
181   Now more robust with special characters in file names, or when
182   multiple processes create the same directory at the same time.
184 ** Obsolescent macros
185   The documentation now says that the following macros are obsolescent:
186   they test for problems that are so old that they are no longer of
187   practical importance on current systems.
189     AC_C_BACKSLASH_A       AC_FUNC_MEMCMP            AC_HEADER_DIRENT
190     AC_C_CONST             AC_FUNC_SELECT_ARGTYPES   AC_HEADER_STAT
191     AC_C_PROTOTYPES        AC_FUNC_SETPGRP           AC_HEADER_STDC
192     AC_C_STRINGIZE         AC_FUNC_SETVBUF_REVERSED  AC_HEADER_SYS_WAIT
193     AC_C_VOLATILE          AC_FUNC_STAT              AC_HEADER_TIME
194     AC_FUNC_CLOSEDIR_VOID  AC_FUNC_STRFTIME          AC_ISC_POSIX
195     AC_FUNC_GETPGRP        AC_FUNC_UTIME_NULL        AC_PROG_GCC_TRADITIONAL
196     AC_FUNC_LSTAT          AC_FUNC_VPRINTF           AC_STRUCT_TM
198   New programs need not use these macros.  We have no current plans to
199   remove them.
201 ** autoreconf
202   For compatibility with future Libtool 2.0, autoreconf will invoke
203   libtoolize with the option `--ltdl' now, if LT_CONFIG_LTDL_DIR is
204   used.
206 * Major changes in Autoconf 2.59c
208   Released 2006-04-12, by Ralf Wildenhues.
210 ** The configure command now redirects standard input from /dev/null,
211   to help avoid problems with subsidiary commands that might mistakenly
212   read standard input.  AS_ORIGINAL_STDIN_FD points to the original
213   standard input before this redirection, if you really want configure to
214   read from standard input.
216 ** Directory variables adjusted to recent changes in the GNU Coding Standards.
217   The following directory variables are new:
219     datarootdir   read-only architecture-independent data root [PREFIX/share]
220     localedir     locale-specific message catalogs [DATAROOTDIR/locale]
221     docdir        documentation root [DATAROOTDIR/doc/PACKAGE]
222     htmldir       html documentation [DOCDIR]
223     dvidir        dvi documentation [DOCDIR]
224     pdfdir        pdf documentation [DOCDIR]
225     psdir         ps documentation [DOCDIR]
227   The following variables have new default values:
229     datadir       read-only architecture-independent data [DATAROOTDIR]
230     infodir       info documentation [DATAROOTDIR/info]
231     mandir        man documentation [DATAROOTDIR/man]
233   This means that if you use any of `@datadir@', `@infodir@', or
234   `@mandir@' in a file, you will have to ensure `${datarootdir}' is
235   defined in this file.  As a temporary measure, if any of those are
236   found but no mention of `datarootdir', the substitutions will be
237   replaced with values that do not contain `${datarootdir}', and a
238   warning will be issued.
240 ** @top_builddir@ is now a dir name: it is always nonempty and doesn't have
241   a trailing slash.  Similar change will be made to ac_top_builddir in a
242   future release; the old style value, which matches (../)*, is (and will
243   continue to be) available as ac_top_build_prefix.
245 ** AC_C_TYPEOF
246   New macro to check for support of 'typeof' syntax a la GNU C.
248 ** AC_CHECK_DECLS_ONCE, AC_CHECK_FUNCS_ONCE, AC_CHECK_HEADERS_ONCE
249   New "once-only" variants of commonly-used macros, to make 'configure'
250   smaller and faster in common cases.
252 ** AC_FUNC_STRTOLD
253   New macro to check for strtold with C99 semantics.
255 ** AC_HEADER_ASSERT
256   New macro that lets builder disable assertions at 'configure'-time.
258 ** AC_PATH_X
259   Now checks for X11/Xlib.h and XrmInitialize (X proper) rather than
260   X11/Intrinsic.h and XtMalloc (Xt).
262 ** AC_PRESERVE_HELP_ORDER
263   New macro that causes `configure' to display help strings for AC_ARG_ENABLE
264   and AC_ARG_WITH arguments in one region, in the order defined.  The default
265   behavior is to group options of each classes separately.
267 ** AC_PROG_CC, AC_PROG_CXX
268   No longer automatically arrange to declare the 'exit' function of C,
269   when a C++ compiler is used.  Standard Autoconf macros no longer use
270   'exit', so this is no longer an issue for them.  If you use C++, and
271   want to call 'exit', you'll have to arrange for its declaration
272   yourself.  But we now suggest you return from 'main' instead.
274 ** AC_PROG_CC_C89, AC_PROG_CC_C99
275   New macros for ISO C99 support.  AC_PROG_CC_C89 and AC_PROG_CC_C99
276   check for ANSI C89 and ISO C99 support respectively.
278 ** AC_PROG_CC_STDC
279   Has been unobsoleted, and will check if the compiler supports ISO
280   C99, falling back to ANSI C89 if not.  ac_cv_prog_cc_stdc is
281   retained for backwards compatibility, assuming the value of
282   ac_cv_prog_cc_c99 or ac_cv_prog_cc_c89 (whichever is valid, in
283   that order).
285 ** AC_STRUCT_DIRENT_D_INO, AC_STRUCT_DIRENT_D_TYPE
286   New macros for checking commonly-used members of struct dirent.
288 ** AC_SUBST
289   The substituted value can now contain newlines.
291 ** AC_SUBST_FILE
292   The substitution now occurs only when @variable@ is on a line by itself,
293   optionally surrounded by spaces and tabs.  The whole line is replaced.
295 ** AC_TYPE_LONG_DOUBLE, AC_TYPE_LONG_DOUBLE_WIDER
296   New macros to check for long double, and whether it is wider than double.
297   The old macro AC_C_TYPE_LONG_DOUBLE has been marked as obsolete;
298   applications should switch to the new macro.
300 ** AC_TYPE_INT8_T, AC_TYPE_INT16_T, AC_TYPE_INT32_T, AC_TYPE_INT64_T,
301    AC_TYPE_INTMAX_T, AC_TYPE_INTPTR_T, AC_TYPE_LONG_LONG_INT, AC_TYPE_SSIZE_T,
302    AC_TYPE_UINT8_T, AC_TYPE_UINT16_T, AC_TYPE_UINT32_T, AC_TYPE_UINT64_T,
303    AC_TYPE_UINTMAX_T, AC_TYPE_UINTPTR_T, AC_TYPE_UNSIGNED_LONG_LONG_INT
304   New macros to check for C99 and POSIX types.
306 ** AC_USE_SYSTEM_EXTENSIONS
307   New macro to enable extensions to Posix.
309 ** AH_HEADER
310   New macro which is defined to the name of the first declared config header
311   or undefined if no config headers have been declared yet.
313 ** AS_HELP_STRING
314   The macro correctly handles quadrigraphs now.
316 ** AS_BOURNE_COMPATIBLE, AS_SHELL_SANITIZE, AS_CASE
317   These macros are new or published now.
319 ** AT_COPYRIGHT
320   New macro for copyright notices in testsuite files.
322 ** ALLOCA, LIBOBJS, LTLIBOBJS
323   Object names added to these variables are now prefixed with `${LIBOBJDIR}',
324   as in `${LIBOBJDIR}alloca.o'.  LIBOBJDIR is meant to be defined from
325   `Makefile.in' in case the object files lie in a different directory.
326   The LIBOBJDIR feature is experimental.
328 ** autoreconf
329   Supports --no-recursive now.
331 ** New macros to support Erlang/OTP.
332   New macros for configuring paths to Erlang tools and libraries:
333   AC_ERLANG_PATH_ERLC, AC_ERLANG_NEED_ERLC, AC_ERLANG_PATH_ERL,
334   AC_ERLANG_NEED_ERL, AC_ERLANG_CHECK_LIB, AC_ERLANG_SUBST_ROOT_DIR,
335   AC_ERLANG_SUBST_LIB_DIR.
337   New macros for configuring installation of Erlang libraries:
338   AC_ERLANG_SUBST_INSTALL_LIB_DIR, AC_ERLANG_SUBST_INSTALL_LIB_SUBDIR.
340 ** The manual now mentions Gnulib more prominently.
342 ** New macros to support Objective C.
343   AC_PROG_OBJC, AC_PROG_OBJCPP.
345 * Major changes in Autoconf 2.59b
347   Released 2004-08-20, by Paul Eggert.
349 ** AC_CHECK_ALIGNOF
350   New macro that computes the default alignment of a type.
352 ** AC_CHECK_TOOL, AC_PATH_TOOL, AC_CHECK_TOOLS
353   When cross-compiling, these macros will give a warning if the tool
354   is not prefixed.  In the future, unprefixed cross tools will not
355   be detected; please consult the info documentation for information
356   about the reason of this change.
358 ** AC_CHECK_TARGET_TOOL, AC_PATH_TARGET_TOOL, AC_CHECK_TARGET_TOOLS
359   New macros that detect programs whose name is prefixed with the
360   target type, if the build type and target type are different.
362 ** AC_REQUIRE_AUX_FILE
363   New trace macro that declares expected auxiliary files.
365 ** AC_PROG_GREP
366   New macro that tests for a grep program that accepts as a long a line
367   as possible.
369 ** AC_PROG_EGREP, AC_PROG_FGREP
370   These macros now require AC_PROG_GREP, and try EGREP="$GREP -E" and
371   FGREP="$GREP -F" respectively if possible, or else run a path search for
372   a program that accepts as long a line as possible.
374 ** AC_PROG_SED
375   New macro that tests for a sed program that truncates as few characters
376   as possible.
378 * Major changes in Autoconf 2.59
380   Released 2003-11-04, by Akim Demaille
382 ** ac_abs_builddir etc.
383   Absolute file names were actually relative in 2.58.
385 * Major changes in Autoconf 2.58
387   Released 2003-11-04, by Akim Demaille
389 ** core.*
390   core.* files are no longer removed, as they may be valid user files.
392 ** autoreconf and auxiliary directory
393   Autoreconf creates the auxiliary directory if needed.  This is
394   especially useful for initial "bootstrapping" of fresh CVS checkouts.
396 ** AC_CONFIG_MACRO_DIR
397   Use this macro to declare the directory for local M4 macros for aclocal.
399 ** AC_LIBOBJS
400   No longer includes twice the same file in LIBOBJS if invoked
401   multiple times.
403 ** AC_CONFIG_COMMANDS
404   The directory for its first argument is automatically created.  For
405   instance, with
407       AC_CONFIG_COMMANDS([src/modules.hh], [...])
409   $top_builddir/src/ is created if needed.
411 ** Autotest and local.at
412   The optional file local.at is always included in Autotest test suites.
414 ** Warnings
415   The warnings are always issued, including with cached runs.
416   This became a significant problem since aclocal and automake can
417   run autoconf behind the scene.
419 ** autoheader warnings
420   The warnings of autoheader can be turned off, using --warning.
421   For instance, -Wno-obsolete disables the complaints about acconfig.h
422   and other deprecated constructs.
424 ** New macros
425   AC_C_RESTRICT, AC_INCLUDES_DEFAULT, AC_LANG_ASSERT, AC_LANG_WERROR,
426   AS_SET_CATFILE.
428 ** AC_DECL_SYS_SIGLIST
429   Works again.
431 ** AC_FUNC_MKTIME
432   Now checks that mktime is the inverse of localtime.
434 ** Improve DJGPP portability
435   The Autoconf tools and configure behave better under DJGPP.
437 ** Present But Cannot Be Compiled
438   New FAQ section dedicated to the mystic
440     configure: WARNING: pi.h: present but cannot be compiled
441     configure: WARNING: pi.h: check for missing prerequisite headers?
442     configure: WARNING: pi.h: proceeding with the preprocessor's result
443       messages.
445 ** Concurrent executions of autom4te
446   autom4te now locks its internal files, which enables concurrent
447   executions of autom4te, likely to happen if automake, autoconf,
448   autoheader etc. are run simultaneously.
450 ** Libtool
451   Use of Libtool 1.5 and higher is encouraged.  Compatibility with
452   Libtool pre-1.4 is not checked.
454 ** Autotest
455   Testsuites no longer rerun failed tests in verbose mode; instead,
456   failures are logged while the test is run.
458   In addition, expected failures can be marked as such.
460 * Major changes in Autoconf 2.57
462   Released 2002-12-03 by Paul Eggert.
464 Bug fixes for problems with AIX linker, with freestanding C compilers,
465 with GNU M4 limitations, and with obsolete copies of GNU documents.
467 The Free Documentation License has been upgraded from 1.1 to 1.2.
469 * Major changes in Autoconf 2.56
471   Released 2002-11-15 by Akim Demaille.
473 One packaging problem fixed (config/install-sh was not executable).
475 * Major changes in Autoconf 2.55
477   Released 2002-11-14 by Akim Demaille.
479 Release tips:
481            Have your configure.ac checked by autoscan ("autoscan").
482              Try the warning options ("autoreconf -fv -Wall").
484 ** Documentation
486 - AC_CHECK_HEADER, AC_CHECK_HEADERS
487   More information on proper use.
489 - Writing Test Programs
491   This sections explains how to write good test sources to use with
492   AC_COMPILE_IFELSE etc.  It documents AC_LANG_PROGRAM and so forth.
494 - AC_FOO_IFELSE vs. AC_TRY_FOO
496   Explains why Autoconf moves from AC_TRY_COMPILE etc. to
497   AC_COMPILE_IFELSE and AC_LANG_PROGRAM etc.
499 ** autoreconf
501 - Is more robust to different Gettext installations.
503 - Produces messages (when --verbose) to be understood by Emacs'
504   compile mode.
506 - Supports -W/--warnings.
508 - -m/--make
509   Once the GNU Build System reinstalled, run `./config.status
510   --recheck && ./config.status && make' if possible.
512 ** autom4te
514 - Supports --cache, and --no-cache.
516 - ~/.autom4te.cfg makes it possible to disable the caching mechanism
517   (autom4te.cache).  See `Customizing autom4te' in the documentation.
519 ** config.status
520   Supports --quiet.
522 ** Obsolete options
524   Support for the obsoleted options -m, --macrodir, -l, --localdir is
525   dropped in favor of the safer --include/--prepend-include scheme.
527 ** Macros
529 - New macros
530   AC_COMPILER_IFELSE, AC_FUNC_MBRTOWC, AC_HEADER_STDBOOL,
531   AC_LANG_CONFTEST, AC_LANG_SOURCE, AC_LANG_PROGRAM, AC_LANG_CALL,
532   AC_LANG_FUNC_TRY_LINK, AC_MSG_FAILURE, AC_PREPROC_IFELSE.
534 - Obsoleted
535   Obsoleted macros are kept for Autoconf backward compatibility, but
536   should be avoided in configure.ac.  Running autoupdate is advised.
537   AC_DECL_SYS_SIGLIST.
539 - AC_DEFINE/AC_DEFINE_UNQUOTED
541   We have to stop using the old compatibility scheme --that tried to
542   avoid useless backslashes-- because Libtool 1.4.3 contains a
544   AC_DEFINE([error_t], [int],
545             [Define to a type to use for \`error_t' if it is not
546              otherwise available.])
548   We have to quote the single quotes and backslashes with \.  The old
549   compatibility scheme saw that ` was backslashed, and therefore did
550   not quote the single quote...  Failure.  Hence, Autoconf 2.54 is not
551   compatible with Libtool.  Autoconf 2.55 is, but in some cases might
552   produce more \ than wanted.
554   Please, note that in the future the same problem will happen with
555   AC_MSG_*: use `autoreconf -f -Wall'.
557 ** Bug Fixes
559 - Portability of the Autoconf package to Solaris.
561 - Spurious warnings caused by config.status.
562   This bug is benign, but painful: on some systems (typically
563   FreeBSD), warnings such as:
565      config.status: creating Makefile
566      mv: Makefile: set owner/group (was: 1357/0): Operation not permitted
568   could be issued.  This is fixed.
570 - Parallel Builds
571   Simultaneous executions of config.status are possible again.
573 - Precious variables accumulation
575   config.status could stack several copies of the precious variables
576   assignments.
579 ** Plans for later versions
581 - ./configure <host>
583   The compatibility hooks with the old scheme will be completely
584   removed.  Please, advice/use `--build', `--host', and `--target'
585   only.
587 - AC_CHECK_HEADER, AC_CHECK_HEADERS
589   The tests will be stricter, please make sure your invocations are
590   valid.
592 - shell functions
594   Shell functions will gradually be introduced, probably starting with
595   Autotest.  If you know machines which are in use that you suspect
596   *not* to support shell functions, please run the test suite of
597   Autoconf 2.55 on it, and report the results to
598   bug-autoconf@gnu.org.
600 - AC_MSG_*
602   Special characters in AC_MSG_* need not be quoted.  Currently,
603   Autoconf has heuristics to decide when a string is escaped, or has
604   to be escaped.  This scheme is fragile, and will be removed; the
605   only risk is uglified messages.  Please, run `autoreconf -f -Wall'
606   to find occurrences that will be affected.
608 * Major changes in Autoconf 2.54
610   Released 2002-09-13 by Akim Demaille.
612 ** Executables
614 - autoreconf no longer changes the version of the gettext/po/intl
615   support files. It now adds the files the correspond to the
616   AM_GNU_GETTEXT_VERSION declared in configure.ac.
618   Warning: It now relies on the 'autopoint' program, which is part
619   of GNU gettext 0.11.4 and newer.
621   Please note that you need to have a GNU gettext version that
622   corresponds at least to the AM_GNU_GETTEXT_VERSION declared
623   in configure.ac. You can upgrade to newer GNU gettext versions,
624   though, without needing to change configure.ac.
626 - The -I DIR or --include=DIR option now appends DIR to the include path
627   instead of prepending; this is for consistency with other GNU tools.
628   The new -B DIR or --prepend-include=DIR option has the old behavior.
630 ** Macros
632 - AC_OUTPUT
633   Now handles all the gory details about LIBOBJS and LTLIBOBJS.
634   Please, remove lines such as
636         # This is necessary so that .o files in LIBOBJS are also
637         # built via the ANSI2KNR-filtering rules.
638         LIBOBJS=`echo $LIBOBJS|sed 's/\.o /\$U.o /g;s/\.o$/\$U.o/'`
640   and read the `AC_LIBOBJ vs LIBOBJS' section.  Do not define U in
641   your Makefiles either.
643 - AC_CONFIG_LINKS now makes copies if it can't make links.
645 - AC_FUNC_FNMATCH now tests only for POSIX compatibility, reverting to
646   Autoconf 2.13 behavior.  The new macro AC_FUNC_FNMATCH_GNU also
647   tests for GNU extensions to fnmatch, and replaces fnmatch if needed.
649 - AC_FUNC_SETVBUF_REVERSED no longer fails when cross-compiling.
651 - AC_PROG_CC_STDC is integrated into AC_PROG_CC.
653 - AC_PROG_F77 default search no longer includes cf77 and cfg77.
655 - New macros
657   AC_C_BACKSLASH_A, AC_CONFIG_LIBOBJ_DIR, AC_GNU_SOURCE,
658   AC_PROG_EGREP, AC_PROG_FGREP, AC_REPLACE_FNMATCH,
659   AC_FUNC_FNMATCH_GNU, AC_FUNC_REALLOC, AC_TYPE_MBSTATE_T.
661 - AC_FUNC_GETLOADAVG
662   looks for getloadavg.c in the CONFIG_LIBOBJ_DIR.
664 - AC_FUNC_MALLOC
665   Now defines HAVE_MALLOC to 0 if `malloc' does not work, and asks
666   for an AC_LIBOBJ replacement.
668 ** Bug fixes
670 - Spurious complaints from `m4_bmatch' about invalid regular
671   expressions are suppressed.
673 - Empty top_builddirs are properly handled.
675 - AC_CHECK_MEMBER works correctly when the member is an aggregate.
677 - AC_PATH_PROG
678   Now colon in the optional path arguments are properly handled.
680 ** Improved portability
682 - Both Autoconf the package, and the scripts it produces, should run
683   more reliably with Zsh.  Bear in mind it is the default Bourne shell
684   on Darwin.
686 - Autoconf and the scripts it produces no longer assume the existence of
687   the obsolescent commands egrep and fgrep.
689 ** Documentation
691 - Limitations of Make
692   More of them.
694 - GNATS
695   The GNATS base moved to
696   http://bugs.gnu.org/cgi-bin/gnatsweb.pl?database=autoconf
697   (It is no longer available, though.)
699 ** Misc.
701 - config.log
702   Now contains the list of ouput variables and files (AC_SUBST,
703   AC_SUBST_FILES).
705 * Major changes in Autoconf 2.53
707   Released 2002-03-08 by Akim Demaille.
709 ** Requirements
711   Perl 5.005_03 or later is required: autom4te is written in Perl and is
712   needed by autoconf.  autoheader, autoreconf, ifnames, and autoscan are
713   rewritten in Perl.
715 ** Documentation
717 - AC_INIT
718   Argument requirements, output variables, defined macros.
719 - M4sugar, M4sh, Autotest
720   First sketch.
721 - Double quoting macros
722   AC_TRY_CPP, AC_TRY_COMPILE, AC_TRY_LINK and AC_TRY_RUN.
723 - Licensing
724   The Autoconf manual is now distributed under the terms of the GNU FDL.
725 - Section `Hosts and Cross-Compilation'
726   Explains the rationale for the 2.5x changes in the cross-compilation
727   chain, and in the relationships between build, host, and target
728   types.
729   Emphasizes that `cross-compilation' == `--host is given'.
730   If you are working on compilers etc., be sure to read this section.
731 - Section `AC_LIBOBJ vs. LIBOBJS'
732   Explains why assigning LIBOBJS directly is now an error.
733   Details how to update the code.
735 ** configure
737 - $LINENO
738   Now used instead of hard coded line numbers.
739   This eases the comparison of `configure's, and diminishes the
740   pressure over control version archives.
741   Automatic replacement for shells that don't support this feature.
742 - New output variables
743   @builddir@, @top_builddir@, @abs_srcdir@, @abs_top_srcdir@, @abs_builddir@,
744   @abs_top_builddir@.
746 ** Emacs
748   Autoconf and Autotest modes are provided.
750 ** Executables
752 - autom4te
753   New, used by the Autoconf suite to cache and speed up most processing.
754 - --force, -f
755   Supported by autom4te, autoconf and autoheader.
756 - --include, -I
757   Replaces --autoconf-dir and --localdir in autoconf, autoheader,
758   autoupdate, and autoreconf.
759 - autoreconf
760   No longer passes --cygnus, --foreign, --gnits, --gnu, --include-deps:
761   automake options are to be given via AUTOMAKE_OPTIONS.
762 - autoreconf
763   Runs gettextize and libtoolize when appropriate.
764 - autoreconf
765   --m4dir is no longer supported.
766 - autoreconf
767   Now runs only in the specified directories, defaulting to `.',
768   but understands AC_CONFIG_SUBDIRS for dependent directories.
769   Before, it used to run on all the `configure.ac' found in the
770   current tree.
771   Independent packages are properly updated.
773 ** Bug fixes
775 - The top level $prefix is propagated to the AC_CONFIG_SUBDIRS configures.
776 - AC_TRY_RUN
777   Under the user pressure, $? is finally available.  Probably a mistake.
778 - AC_F77_LIBRARY_LDFLAGS now supports the HP/UX f90 compiler.
779 - Precious variables accumulation
780   config.status could stack several copies of the precious variables
781   assignments.
782 - AC_PATH_PROG and family.
783   Works properly when given a literal path.
784 - AC_FUNC_SETPGRP
785   Somewhere since 2.13, the result had been reversed.
787 ** C Macros
789 - AC_C_BIGENDIAN supports the cross-compiling case.
790 - AC_C_BIGENDIAN accepts ACTION-IF-TRUE, ACTION-IF-FALSE, and
791   ACTION-IF-UNKNOWN arguments.  All are facultative, and the default
792   for ACTION-IF-TRUE is to define WORDS_BIGENDIAN like AC_C_BIGENDIAN
793   always did.
794 - AC_C_LONG_DOUBLE now succeeds only if `long double' has more range or
795   precision than `double'.
797 ** Generic macros
799 - AC_INIT
800   It now defines the preprocessor symbols PACKAGE_NAME,
801   PACKAGE_TARNAME, PACKAGE_VERSION, PACKAGE_STRING, and
802   PACKAGE_BUGREPORT.
804 - AC_INIT
805   Admits a fourth optional parameter: the tar name.
807 - AC_CONFIG_COMMANDS, HEADERS, FILES, LINKS.
808   Provide the user with srcdir, ac_srcdir, ac_top_srcdir, ac_builddir,
809   ac_top_builddir, ac_abs_srcdir, ac_abs_top_srcdir, ac_abs_builddir,
810   ac_abs_top_builddir.
812 - AC_CONFIG_COMMANDS, HEADERS, FILES, LINKS and AC_OUTPUT.
813   Are much less expensive when using long lists of files.
815 - AC_PREFIX_PROGRAM
816   Works with shell variables, and non alphanumeric names.
818 ** Library macros
820 - AC_FUNC_STRERROR_R now sets STRERROR_R_CHAR_P, not HAVE_WORKING_STRERROR_R,
821   because POSIX 1003.1-200x draft 7 says strerror_r returns int, not char *.
823 - AC_FUNC_STRTOD substitutes POW_LIB.
825 - AC_FUNC_STRNLEN
826   New.
828 * Major changes in Autoconf 2.52
830   Released 2001-07-18 by Akim Demaille.
832 ** Documentation
833 - AC_ARG_VAR
834 - Quadrigraphs
835   This feature was present in autoconf 2.50 but was not documented.
836   For example, `@<:@' is translated to `[' just before output.  This
837   is useful when writing strings that contain unbalanced quotes, or
838   other hard-to-quote constructs.
839 - m4_pattern_forbid, m4_pattern_allow
840 - Tips for upgrading from 2.13.
841 - Using autoscan to maintain a configure.ac.
843 ** Default includes
844 - Now include stdint.h.
845 - sys/types.h and sys/stat.h are guarded.
846 - strings.h is included if available, and not conflicting with string.h.
848 ** Bug fixes
849 - The test suite is more robust and presents less false failures.
850 - Invocation of GNU M4 now robust to POSIXLY_CORRECT.
851 - configure accepts --prefix='' again.
852 - AC_CHECK_LIB works properly when its first argument is not a
853   literal.
854 - HAVE_INTTYPES_H is defined only if not conflicting with sys/types.h.
855 - build_, host_, and target_alias are AC_SUBST as in 2.13.
856 - AC_ARG_VAR properly propagates precious variables inherited from the
857   environment to ./config.status.
858 - Using --program-suffix/--program-prefix is portable.
859 - Failures to detect the default compiler's output extension are less
860   likely.
861 - `config.status foo' works properly when `foo' depends on variables
862   set in an AC_CONFIG_THING INIT-CMD.
863 - autoheader is more robust to broken input.
864 - Fixed Fortran name-mangling and link tests on a number of systems,
865   e.g. NetBSD; see AC_F77_DUMMY_MAIN, below.
867 ** Generic macros
868 - AC_CHECK_HEADER and AC_CHECK_HEADERS support a fourth argument to
869   specify pre-includes.  In this case, the headers are compiled with
870   cc, not merely preprocessed by cpp.  Therefore it is the _usability_
871   of a header which is checked for, not just its availability.
872 - AC_ARG_VAR refuses to run configure when precious variables have
873   changed.
874 - Versions of compilers are dumped in the logs.
875 - AC_CHECK_TYPE recognizes use of `foo_t' as a replacement type.
877 ** Specific Macros
878 - AC_PATH_XTRA only adds -ldnet to $LIBS if it's needed to link.
879 - AC_FUNC_WAIT3 and AC_SYS_RESTARTABLE_SYSCALLS are obsoleted.
880 - AM_FUNC_ERROR_AT_LINE, AM_FUNC_FNMATCH, AM_FUNC_MKTIME,
881   AM_FUNC_OBSTACK, and AM_FUNC_STRTOD are now activated.
882   Be sure to read `Upgrading from Version 2.13' to understand why
883   running `autoupdate' is needed.
884 - AC_F77_DUMMY_MAIN, AC_F77_MAIN: new macros to detect whether
885   a main-like routine is required/possible when linking C/C++ with
886   Fortran.  Users of e.g. AC_F77_WRAPPERS should be aware of these.
887 - AC_FUNC_GETPGRG behaves better when cross-compiling.
889 * Major changes in Autoconf 2.51
890 There was no release of Autoconf 2.51 since some packagers had used
891 this version number without permission to ship intermediary versions
892 of 2.50.  The version was skipped to avoid confusion.
894 * Major changes in Autoconf 2.50
896   Released 2001-05-21 by Akim Demaille.
898 ** Lots of bug fixes
899 There have been far too many to enumerate them here.  Check out
900 ChangeLog if you really want to know more.
902 ** Improved documentation
903 In particular, portability issues are better covered.
905 ** Use of Automake
906 All the standard GNU Makefile targets are supported.  The layout has
907 changed: m4/ holds the M4 extensions Autoconf needs for its
908 configuration, doc/ contains the documentation, and tests/ contains
909 the test suite.
911 ** Man pages are provided
912 For autoconf, autoreconf, autoupdate, autoheader, autoscan, ifnames,
913 config.guess, config.sub.
915 ** autoconf
916 - --trace
917   Provides a safe and powerful means to trace the macro uses.  This
918   provide the parsing layer for tools which need to `study'
919   configure.in.
921 - --warnings
922   Specify what category of warnings should be enabled.
924 - When recursing into subdirectories, try for configure.gnu before
925   configure to adapt for packages not using autoconf on case-insensitive
926   file systems.
928 - Diagnostics
929   More errors are now caught (circular AC_REQUIRE dependencies,
930   AC_DEFINE in the action part of an AC_CACHE_CHECK, too many pops
931   etc.).  In addition, their location and call stack are given.
933 ** autoupdate
934 autoupdate is much more powerful, and is able to provide the glue code
935 which might be needed to move from an old macro to its newer
936 equivalent.
938 You are strongly encouraged to use it to modernize both your
939 `configure.in' and your .m4 extension files.
941 ** autoheader
942 The internal machinery of autoheader has completely changed.  As a
943 result, using `acconfig.h' should be considered to be obsoleted, and
944 you are encouraged to get rid of it using the AH macros.
946 ** autoreconf
947 Extensive overhaul.
949 ** Fortran 77 compilers
950 Globally, the support for Fortran 77 is considerably improved.
952 Support for automatically determining a Fortran 77 compiler's
953 name-mangling scheme.  New CPP macros F77_FUNC and F77_FUNC_ are
954 provided to wrap C/C++ identifiers, thus making it easier and more
955 transparent for C/C++ to call Fortran 77 routines, and Fortran 77 to
956 call C/C++ routines.  See the Texinfo documentation for details.
958 ** Test suite
959 The test suite no longer uses DejaGNU.  It should be easy to submit
960 test cases in this new framework.
962 ** configure
963 - --help, --help=long, -hl
964   no longer dumps useless items.
965 - --help=short, -hs
966   lists only specific options.
967 - --help=recursive, -hr
968   displays the help of all the embedded packages.
969 - Remembers environment variables when reconfiguring.
970   The previous scheme to set envvar before running configure was
971     ENV=VAL ./configure
972   what prevented configure from remembering the environment in which
973   it was run, therefore --recheck was run in an inconsistent
974   environment.  Now, one should run
975     ./configure ENV=VAR
976   and then --recheck will work properly.  Variables declared with
977   AC_ARG_VAR are also preserved.
978 - cross-compilation
979   $build defaults to `config.guess`, $host to $build, and then $target
980   to $host.
981   Cross-compilation is a global status of the package, it no longer
982   depends upon the current language.
983   Cross compilation is enabled iff the user specified `--host'.
984   `configure' now fails if it can't run the executables it compiles,
985   unless cross-compilation is enabled.
986 - Cache file
987   The cache file is disabled by default.  The new options
988   `--config-cache', `-C' set the cache to `config.cache'.
990 ** config.status
991 - faster
992   Much faster on most architectures.
993 - concurrent executions
994   It is safe to use `make -j' with config.status.
995 - human interface improved
996   It is possible to invoke
997     ./config.status foobar
998   instead of the former form (still valid)
999     CONFIG_COMMANDS= CONFIG_HEADERS= CONFIG_LINKS= \
1000     CONFIG_FILES=foobar:foo.in:bar.in \
1001     ./config.status
1002   The same holds for configuration headers and links.
1003   You can instantiate unknown files and headers:
1004     ./config.status --header foo.h:foo.h.in --file bar:baz
1005 - has a useful --help
1006 - accepts special file name "-" for stdin/stdout
1009 ** Identity Macros
1010 - AC_COPYRIGHT
1011   Specify additional copyright information.
1013 - AC_INIT
1014   Now expects the identity of the package as argument.
1016 ** General changes.
1017 - Uniform quotation
1018   Most macros, if not all, now strictly follow the `one quotation
1019   level' rule.  This results in a more predictable expansion.
1021 - AC_REQUIRE
1022   A sly bug in the AC_REQUIRE machinery, which could produce incorrect
1023   configure scripts, was fixed by Axel Thimm.
1025 ** Setup Macros
1026 - AC_ARG_VAR
1027   Document and ask for the registration of an envvar.
1029 - AC_CONFIG_SRCDIR
1030   Specifies the file which `configure' should look for when trying to
1031   find the source tree (used to be handled by AC_INIT).
1033 - AC_CONFIG_COMMANDS
1034   To add new actions to config.status.  Should be used instead of
1035   AC_OUTPUT_COMMANDS.
1037 - AC_CONFIG_LINKS
1038   Replaces AC_LINK_FILES.
1040 - AC_CONFIG_HEADERS, AC_CONFIG_COMMANDS, AC_CONFIG_SUBDIRS,
1041   AC_CONFIG_LINKS, and AC_CONFIG_FILES
1042   They now obey sh: you should no longer use shell variables as
1043   argument.  Instead of
1045         test "$package_foo_enabled" = yes && $my_subdirs="$my_subdirs foo"
1046         AC_CONFIG_SUBDIRS($my_subdirs)
1048   write
1050         if test "$package_foo_enabled" = yes; then
1051           AC_CONFIG_SUBDIRS(foo)
1052         fi
1054 - AC_HELP_STRING
1055   To format an Autoconf macro's help string so that it looks pretty
1056   when the user executes `configure --help'.
1059 ** Generic Test Macros
1060 - AC_CHECK families
1061   The interface of the AC_CHECK families of macros (decl, header,
1062   type, member, func) is now uniform.  They support the same set of
1063   default includes.
1065 - AC_CHECK_DECL, AC_CHECK_DECLS
1066   To check whether a symbol is declared.
1068 - AC_CHECK_SIZEOF, AC_C_CHAR_UNSIGNED.
1069   No longer need a cross-compilation default.
1071 - AC_CHECK_TYPE
1072   The test it performs is much more robust than previously, and makes
1073   it possible to test builtin types in addition to typedefs.
1074   It is now schizophrenic:
1075     - AC_CHECK_TYPE(TYPE, REPLACEMENT)
1076       remains for backward compatibility, but its use is discouraged.
1077     - AC_CHECK_TYPE(TYPE, IF-FOUND, IF-NOT-FOUND, INCLUDES)
1078       behaves exactly like the other AC_CHECK macros.
1080 - AC_CHECK_TYPES
1081   Checks whether given types are supported by the system.
1083 - AC_CHECK_MEMBER, AC_CHECK_MEMBERS
1084   Check for given members in aggregates (e.g., pw_gecos in struct
1085   passwd).
1087 - AC_PROG_CC_STDC
1088   Checks if the compiler supports ISO C, included when needs special
1089   options.
1091 - AC_PROG_CPP
1092   Checking whether the preprocessor indicates missing includes by the
1093   error code. stderr is checked by AC_TRY_CPP only as a fallback.
1095 - AC_LANG
1096   Takes a language as argument and replaces AC_LANG_C,
1097   AC_LANG_CPLUSPLUS and AC_LANG_FORTRAN77.
1099 - AC_LANG_PUSH, AC_LANG_POP
1100   Are preferred to AC_LANG_SAVE, AC_LANG_RESTORE.
1102 ** Specific Macros
1103 - AC_FUNC_CHOWN, AC_FUNC_MALLOC, AC_FUNC_STRERROR_R,
1104   AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK, AC_FUNC_STAT, AC_FUNC_LSTAT,
1105   AC_FUNC_ERROR_AT_LINE, AC_FUNC_OBSTACK, AC_FUNC_STRTOD, AC_FUNC_FSEEKO.
1106   New.
1108 - AC_FUNC_GETGROUPS
1109   Sets GETGROUPS_LIBS.
1111 - AC_FUNC_GETLOADAVG
1112   Defines `HAVE_STRUCT_NLIST_N_UN_N_NAME' instead of `NLIST_NAME_UNION'.
1114 - AC_PROG_LEX
1115   Now integrates `AC_DECL_YYTEXT' which is obsoleted.
1117 - AC_SYS_LARGEFILE
1118   Arrange for large-file support.
1120 - AC_EXEEXT, AC_OBJEXT
1121   You are no longer expected to use them: their computation is
1122   performed by default.
1124 ** C++ compatibility
1125   Every macro has been revisited in order to support at best CC=c++.
1127 Major changes in Autoconf 2.14:
1128   There was no release of GNU Autoconf 2.14.
1130 Major changes in Autoconf 2.13:
1132   Released 1999-05-01 by Ben Elliston.
1134 * Support for building on Win32 systems where the only available C or
1135   C++ compiler is the Microsoft Visual C++ command line compiler
1136   (`cl').  Additional support for building on Win32 systems which are
1137   using the Cygwin or Mingw32 environments.
1138 * Support for alternative object file and executable file extensions.
1139   On Win32, for example, these are .obj and .exe. These are discovered
1140   using AC_OBJEXT and AC_EXEEXT, which substitute @OBJEXT@ and
1141   @EXEEXT@ in the output, respectively.
1142 * New macros: AC_CACHE_LOAD, AC_CACHE_SAVE, AC_FUNC_SELECT_ARGTYPES,
1143   AC_VALIDATE_CACHED_SYSTEM_TUPLE, AC_SEARCH_LIBS, AC_TRY_LINK_FUNC,
1144   AC_C_STRINGIZE, AC_CHECK_FILE(S), AC_PROG_F77 (and friends).
1145 * AC_DEFINE now has an optional third argument for a description to be
1146   placed in the config header input file (e.g. config.h.in).
1147 * The C++ code fragment compiled for the C++ compiler test had to be
1148   improved to include an explicit return type for main(). This was
1149   causing failures on systems using recent versions of the EGCS C++
1150   compiler.
1151 * Fixed an important bug in AC_CHECK_TYPE that would cause a configure
1152   script to report that `sometype_t' was present when only `type_t'
1153   was defined.
1154 * Merge of the FSF version of config.guess and config.sub to modernize
1155   these scripts. Add support for a few new hosts in config.guess.
1156   Incorporate latest versions of install-sh, mkinstalldirs and
1157   texinfo.tex from the FSF.
1158 * autoreconf is capable of running automake if necessary (and
1159   applicable).
1160 * Support for Fortran 77. See the Texinfo documentation for details.
1161 * Bug fixes and workarounds for quirky bugs in vendor utilities.
1163 Major changes in Autoconf 2.12:
1165   Released 1996-11-26 by David J. MacKenzie
1167 * AC_OUTPUT and AC_CONFIG_HEADER can create output files by
1168   concatenating multiple input files separated by colons, like so:
1169   AC_CONFIG_HEADER(config.h:conf.pre:config.h.in:conf.post)
1170   AC_OUTPUT(Makefile:Makefile.in:Makefile.rules)
1171   The arguments may be shell variables, to compute the lists on the fly.
1172 * AC_LINK_FILES and AC_CONFIG_SUBDIRS may be called multiple times.
1173 * New macro AC_OUTPUT_COMMANDS adds more commands to run in config.status.
1174 * Bug fixes.
1176 Major changes in Autoconf 2.11:
1178   Released November 18th, 1996, by David J. MacKenzie
1180 * AC_PROG_CC and AC_PROG_CXX check whether the compiler works.
1181   They also default CFLAGS/CXXFLAGS to "-g -O2" for gcc, instead of "-g -O".
1182 * AC_REPLACE_FUNCS defines HAVE_foo if the system has the function `foo'.
1183 * AC_CONFIG_HEADER expands shell variables in its argument.
1184 * New macros: AC_FUNC_FNMATCH, AC_FUNC_SETPGRP.
1185 * The "checking..." messages and the source code for test programs that
1186   fail are saved in config.log.
1187 * Another workaround has been added for seds with small command length limits.
1188 * config.sub and config.guess recognize more system types.
1189 * Bug fixes.
1191 Major changes in Autoconf 2.10:
1193   Released May 7th, 1996, by Roland McGrath
1195 * Bug fixes.
1196 * The cache variable names used by `AC_CHECK_LIB(LIB, FUNC, ...)' has
1197   changed: now $ac_cv_lib_LIB_FUNC, previously $ac_cv_lib_LIB.
1199 Major changes in Autoconf 2.9:
1201   Released March 16th, 1996, by Roland McGrath
1203 * Bug fixes.
1205 Major changes in Autoconf 2.8:
1207   Released March 8th, 1996, by Roland McGrath
1209 * Bug fixes.
1211 Major changes in Autoconf 2.7:
1213   Released November 22nd, 1995, by David J. MacKenzie
1215 * Bug fixes.
1217 Major changes in Autoconf 2.6:
1219   Released November 20th, 1995, by David J. MacKenzie
1221 * Bug fixes.
1223 Major changes in Autoconf 2.5:
1225   Released November 17th, 1995, by Roland McGrath
1227 * New configure options --bindir, --libdir, --datadir, etc., with
1228   corresponding output variables.
1229 * New macro: AC_CACHE_CHECK, to make using the cache easier.
1230 * config.log contains the command being run as well as any output from it.
1231 * AC_CHECK_LIB can check for libraries with "." or "/" or "+" in their name.
1232 * AC_PROG_INSTALL doesn't cache a name for install-sh, for sharing caches.
1233 * AC_CHECK_PROG, AC_PATH_PROG, AC_CHECK_PROGS, AC_PATH_PROGS, and
1234   AC_CHECK_TOOL can search a path other than $PATH.
1235 * AC_CHECK_SIZEOF takes an optional size to use when cross-compiling.
1237 Major changes in Autoconf 2.4:
1239   Released June 14th, 1995, by David J. MacKenzie
1241 * Fix a few bugs found by Emacs testers.
1243 Major changes in Autoconf 2.3:
1245   Released March 27th, 1995, by David J. MacKenzie
1247 * Fix the cleanup trap in several ways.
1248 * Handle C compilers that are picky about option placement.
1249 * ifnames gets the version number from the right directory.
1251 Major changes in Autoconf 2.2:
1253   Released March 8th, 1995, by David J. MacKenzie
1255 * The ifnames utility is much faster but requires a "new awk" interpreter.
1256 * AC_CHECK_LIB and AC_HAVE_LIBRARY check and add the new
1257   library before existing libs, not after, in case it uses them.
1258 * New macros: AC_FUNC_GETPGRP, AC_CHECK_TOOL.
1259 * Lots of bug fixes.
1260 * Many additions to the TODO file :-)
1262 Major changes in Autoconf 2.1:
1264   Released November 4th, 1994, by David J. MacKenzie
1266 * Fix C++ problems.
1267 * More explanations in the manual.
1268 * Fix a spurious failure in the testsuite.
1269 * Clarify some warning messages.
1270 * autoreconf by default only rebuilds configure and config.h.in files
1271   that are older than any of their particular input files; there is a
1272   --force option to use after installing a new version of Autoconf.
1274 Thanks to everybody who's submitted changes and additions to Autoconf!
1275 I've incorporated many of them, and am still considering others for
1276 future releases -- but I didn't want to postpone this release indefinitely.
1278 Caution: don't indiscriminately rebuild configure scripts with
1279 Autoconf version 2.  Some configure.in files need minor adjustments to
1280 work with it; the documentation has a chapter on upgrading.  A few
1281 configure.in files, including those for GNU Emacs and the GNU C
1282 Library, need major changes because they relied on undocumented
1283 internals of version 1.  Future releases of those packages will have
1284 updated configure.in files.
1286 It's best to use GNU M4 1.3 (or later) with Autoconf version 2.
1287 Autoconf now makes heavy use of M4 diversions, which were implemented
1288 inefficiently in GNU M4 releases before 1.3.
1290 Major changes in Autoconf 2.0:
1292   Released October 26th, 1994, by David J. MacKenzie
1294 ** New copyright terms:
1295 * There are no restrictions on distribution or use of configure scripts.
1297 ** Documentation:
1298 * Autoconf manual is reorganized to make information easier to find
1299   and has several new indexes.
1300 * INSTALL is reorganized and clearer and is now made from Texinfo source.
1302 ** New utilities:
1303 * autoscan to generate a preliminary configure.in for a package by
1304   scanning its source code for commonly used nonportable functions,
1305   programs, and header files.
1306 * ifnames to list the symbols used in #if and #ifdef directives in a
1307   source tree.
1308 * autoupdate to update a configure.in to use the version 2 macro names.
1309 * autoreconf to recursively remake configure and configuration header
1310   files in a source tree.
1312 ** Changed utilities:
1313 * autoheader can take pieces of acconfig.h to replace config.h.{top,bot}.
1314 * autoconf and autoheader can look for package-local definition files
1315   in an alternate directory.
1317 ** New macros:
1318 * AC_CACHE_VAL to share results of tests between configure runs.
1319 * AC_DEFUN to define macros, automatically AC_PROVIDE them, and ensure
1320   that macros invoked with AC_REQUIRE don't interrupt other macros.
1321 * AC_CONFIG_AUX_DIR, AC_CANONICAL_SYSTEM, AC_CANONICAL_HOST, AC_LINK_FILES to
1322   support deciding unguessable features based on the host and target types.
1323 * AC_CONFIG_SUBDIRS to recursively configure a source tree.
1324 * AC_ARG_PROGRAM to use the options --program-prefix,
1325   --program-suffix, and --program-transform-name to change the names
1326   of programs being installed.
1327 * AC_PREFIX_DEFAULT to change the default installation prefix.
1328 * AC_TRY_COMPILE to compile a test program without linking it.
1329 * AC_CHECK_TYPE to check whether sys/types.h or stdlib.h defines a given type.
1330 * AC_CHECK_LIB to check for a particular function and library.
1331 * AC_MSG_CHECKING and AC_MSG_RESULT to print test results, on a single line,
1332   whether or not the test succeeds.  They obsolete AC_CHECKING and AC_VERBOSE.
1333 * AC_SUBST_FILE to insert one file into another.
1334 * AC_FUNC_MEMCMP to check whether memcmp is 8-bit clean.
1335 * AC_FUNC_STRFTIME to find strftime even if it's in -lintl.
1336 * AC_FUNC_GETMNTENT to find getmntent even if it's in -lsun or -lseq.
1337 * AC_HEADER_SYS_WAIT to check whether sys/wait.h is POSIX.1 compatible.
1339 ** Changed macros:
1340 * Many macros renamed systematically, but old names are accepted for
1341   backward compatibility.
1342 * AC_OUTPUT adds the "automatically generated" comment to
1343   non-Makefiles where it finds @configure_input@ in an input file, to
1344   support files with various comment syntaxes.
1345 * AC_OUTPUT does not replace "prefix" and "exec_prefix" in generated
1346   files when they are not enclosed in @ signs.
1347 * AC_OUTPUT allows the optional environment variable CONFIG_STATUS to
1348   override the file name "config.status".
1349 * AC_OUTPUT takes an optional argument for passing variables from
1350   configure to config.status.
1351 * AC_OUTPUT and AC_CONFIG_HEADER allow you to override the input-file names.
1352 * AC_OUTPUT automatically substitutes the values of CFLAGS, CXXFLAGS,
1353   CPPFLAGS, and LDFLAGS from the environment.
1354 * AC_PROG_CC and AC_PROG_CXX now set CFLAGS and CXXFLAGS, respectively.
1355 * AC_PROG_INSTALL looks for install-sh or install.sh in the directory
1356   specified by AC_CONFIG_AUXDIR, or srcdir or srcdir/.. or
1357   srcdir/../.. by default.
1358 * AC_DEFINE, AC_DEFINE_UNQUOTED, and AC_SUBST are more robust and smaller.
1359 * AC_DEFINE no longer prints anything, because of the new result reporting
1360   mechanism (AC_MSG_CHECKING and AC_MSG_RESULT).
1361 * AC_VERBOSE pays attention to --quiet/--silent, not --verbose.
1362 * AC_ARG_ENABLE and AC_ARG_WITH support whitespace in the arguments to
1363   --enable- and --with- options.
1364 * AC_CHECK_FUNCS and AC_CHECK_HEADERS take optional shell commands to
1365   execute on success or failure.
1366 * Checking for C functions in C++ works.
1368 ** Removed macros:
1369 * AC_REMOTE_TAPE and AC_RSH removed; too specific to tar and cpio, and
1370   better maintained with them.
1371 * AC_ARG_ARRAY removed because no one was likely using it.
1372 * AC_HAVE_POUNDBANG replaced with AC_SYS_INTERPRETER, which doesn't
1373   take arguments, for consistency with all of the other specific checks.
1375 ** New files:
1376 * Comes with config.sub and config.guess, and uses them optionally.
1377 * Uses config.cache to cache test results.  An alternate cache file
1378   can be selected with the --cache-file=FILE option.
1379 * Uses optional shell scripts $prefix/share/config.site and
1380   $prefix/etc/config.site to perform site or system specific initializations.
1381 * configure saves compiler output to ./config.log for debugging.
1382 * New files autoconf.m4 and autoheader.m4 load the other Autoconf macros.
1383 * acsite.m4 is the new name for the system-wide aclocal.m4.
1384 * Has a DejaGnu test suite.
1386 Major changes in Autoconf 1.11:
1388 * AC_PROG_INSTALL calls install.sh with the -c option.
1389 * AC_SET_MAKE cleans up after itself.
1390 * AC_OUTPUT sets prefix and exec_prefix if they weren't set already.
1391 * AC_OUTPUT prevents shells from looking in PATH for config.status.
1393 Plus a few other bug fixes.
1395 Major changes in Autoconf 1.10:
1397 * autoheader uses config.h.bot if present, analogous to config.h.top.
1398 * AC_PROG_INSTALL looks for install.sh in srcdir or srcdir/.. and
1399   never uses cp.
1400 * AC_PROG_CXX looks for cxx as a C++ compiler.
1402 Plus several bugs fixed.
1404 Major changes in Autoconf 1.9:
1406 * AC_YYTEXT_POINTER replaces AC_DECLARE_YYTEXT.
1407 * AC_SIZEOF_TYPE generates the cpp symbol name automatically,
1408   and autoheader generates entries for those names automatically.
1409 * AC_FIND_X gets the result from xmkmf correctly.
1410 * AC_FIND_X assumes no X if --without-x was given.
1411 * AC_FIND_XTRA adds libraries to the variable X_EXTRA_LIBS.
1412 * AC_PROG_INSTALL finds OSF/1 installbsd.
1414 Major changes in Autoconf 1.8:
1416 ** New macros:
1417 * New macros AC_LANG_C, AC_LANG_CPLUSPLUS, AC_LANG_SAVE, AC_LANG_RESTORE,
1418   AC_PROG_CXX, AC_PROG_CXXCPP, AC_REQUIRE_CPP
1419   for checking both C++ and C features in one configure script.
1420 * New macros AC_CHECKING, AC_VERBOSE, AC_WARN, AC_ERROR for printing messages.
1421 * New macros AC_FIND_XTRA, AC_MMAP, AC_SIZEOF_TYPE, AC_PREREQ,
1422   AC_SET_MAKE, AC_ENABLE.
1424 ** Changed macros:
1425 * AC_FIND_X looks for X in more places.
1426 * AC_PROG_INSTALL defaults to install.sh instead of cp, if it's in srcdir.
1427   install.sh is distributed with Autoconf.
1428 * AC_DECLARE_YYTEXT has been removed because it can't work, pending
1429   a rewrite of quoting in AC_DEFINE.
1430 * AC_OUTPUT adds its comments in C format when substituting in C files.
1431 * AC_COMPILE_CHECK protects its ECHO-TEXT argument with double quotes.
1433 ** New or changed command line options:
1434 * configure accepts --enable-FEATURE[=ARG] and --disable-FEATURE options.
1435 * configure accepts --without-PACKAGE, which sets withval=no.
1436 * configure accepts --x-includes=DIR and --x-libraries=DIR.
1437 * Giving --with-PACKAGE no argument sets withval=yes instead of withval=1.
1438 * configure accepts --help, --version, --silent/--quiet, --no-create options.
1439 * configure accepts and ignores most other Cygnus configure options, and
1440   warns about unknown options.
1441 * config.status accepts --help, --version options.
1443 ** File names and other changes:
1444 * Relative srcdir values are not made absolute.
1445 * The values of @prefix@ and @exec_prefix@ and @top_srcdir@ get substituted.
1446 * Autoconf library files are installed in ${datadir}/autoconf, not ${datadir}.
1447 * autoheader optionally copies config.h.top to the beginning of config.h.in.
1448 * The example Makefile dependencies for configure et al. work better.
1449 * Namespace cleanup: all shell variables used internally by Autoconf
1450   have names beginning with `ac_'.
1452 More big improvements are in process for future releases, but have not
1453 yet been (variously) finished, integrated, tested, or documented enough
1454 to release yet.
1456 Major changes in Autoconf 1.7:
1458 * New macro AC_OBSOLETE.
1459 * Bugs in Makefile.in fixed.
1460 * AC_LONG_FILE_NAMES improved.
1462 Major changes in Autoconf 1.6:
1464 * New macro AC_LONG_64_BITS.
1465 * Multiple .h files can be created.
1466 * AC_FIND_X looks for X files directly if it doesn't find xmkmf.
1467 * AC_ALLOCA defines C_ALLOCA if using alloca.c.
1468 * --with-NAME can take a value, e.g., --with-targets=sun4,hp300bsd.
1469 * Unused --no-create option to configure removed.
1470 * autoheader doesn't change the timestamp of its output file if
1471   the file didn't change.
1472 * All macros that look for libraries now use AC_HAVE_LIBRARY.
1473 * config.status checks three optional environment variables to
1474   modify its behavior.
1475 * The usual bug fixes.
1477 Major changes in Autoconf 1.5:
1479 * New macros AC_FIND_X, AC_OFF_T, AC_STAT_MACROS_BROKEN, AC_REVISION.
1480 * autoconf and autoheader scripts have GNU standards conforming
1481   --version and --help options (they print their message and exit).
1482 * Many bug fixes.
1484 Major changes in Autoconf 1.4:
1486 * New macros AC_HAVE_POUNDBANG, AC_TIME_WITH_SYS_TIME, AC_LONG_DOUBLE,
1487   AC_GETGROUPS_T, AC_DEFINE_UNQUOTED.
1488 * autoconf and autoheader use the M4 environment variable to determine the
1489   name of the M4 program to use.
1490 * The --macrodir option to autoconf and autoheader specifies the directory
1491   in which acspecific.m4, acgeneral.m4, etc. reside if not the default.
1492 * autoconf and autoheader can take `-' as their file names, which means to
1493   read stdin as input.
1494 * Resulting configure scripts can take a --verbose option which causes them
1495   to print the results of their tests.
1496 * AC_DEFINE quotes its second argument in such a way that spaces, magic
1497   shell characters, etc. will be preserved during various stages of
1498   expansion done by the shell.  If you don't want this, use
1499   AC_DEFINE_UNQUOTED instead.
1500 * Much textual processing done with external calls to tr and sed have been
1501   internalized with builtin M4 `patsubst' and `translit' calls.
1502 * AC_OUTPUT doesn't hardwire the file names it outputs.  Instead, you can
1503   set the shell variables `gen_files' and `gen_config' to the list of
1504   file names to output.
1505 * AC_DECLARE_YYTEXT does an AC_SUBST of `LEX_OUTPUT_ROOT', which may be
1506   "lex.yy" or "lexyy", depending on the system.
1507 * AC_PROGRAMS_CHECK takes an optional third arg.  If given, it is used as
1508   the default value.
1509 * If AC_ALLOCA chooses alloca.c, it also defines STACK_DIRECTION.
1510 * AC_CONST works much more reliably on more systems.
1511 * Many bug fixes.
1513 Major changes in Autoconf 1.3:
1515 configure no longer requires awk for packages that use a config.h.
1516 Support handling --with-PACKAGE options.
1517 New `autoheader' script to create `config.h.in' from `configure.in'.
1518 Ignore troublesome -lucb and -lPW when searching for alloca.
1519 Rename --exec_prefix to --exec-prefix for GNU standards conformance.
1520 Improve detection of STDC library.
1521 Add AC_HAVE_LIBRARY to check for non-default libraries.
1522 Function checking should work with future GNU libc releases.
1524 Major changes in Autoconf 1.2:
1526 The --srcdir option is now usually unnecessary.
1527 Add a file containing sample comments describing CPP macros.
1528 A comment in config.status tells which host it was configured on.
1529 Substituted variable values can now contain commas.
1530 Fix bugs in various feature checks.
1532 Major changes in Autoconf 1.1:
1534 Added AC_STRCOLL macro.
1535 Made AC_GETLOADAVG check for more things.
1536 AC_OUTPUT argument is now optional.
1537 Various bug fixes.
1539 -----
1541 Copyright (C) 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, 2002,
1542 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
1544 This file is part of GNU Autoconf.
1546 GNU Autoconf is free software; you can redistribute it and/or modify
1547 it under the terms of the GNU General Public License as published by
1548 the Free Software Foundation; either version 2, or (at your option)
1549 any later version.
1551 GNU Autoconf is distributed in the hope that it will be useful,
1552 but WITHOUT ANY WARRANTY; without even the implied warranty of
1553 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
1554 GNU General Public License for more details.
1556 You should have received a copy of the GNU General Public License
1557 along with GNU Autoconf; see the file COPYING.  If not, write to
1558 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
1559 Boston, MA 02110-1301, USA.
1561 Local Variables:
1562 mode: outline
1563 End: