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