]> git.ipfire.org Git - thirdparty/autoconf.git/commitdiff
1999-10-31 Akim Demaille <akim@epita.fr>
authorAkim Demaille <akim@epita.fr>
Mon, 20 Dec 1999 15:54:30 +0000 (15:54 +0000)
committerAkim Demaille <akim@epita.fr>
Mon, 20 Dec 1999 15:54:30 +0000 (15:54 +0000)
* autoconf.m4: Insert -*- Autoconf -*-.
* acgeneral.m4: Likewise.
* acspecific.m4: Likewise.
* acoldnames.m4: Likewise.

17 files changed:
ChangeLog
Makefile.in
NEWS
acconfig.h [deleted file]
acgeneral.m4
aclocal.m4
acoldnames.m4
acspecific.m4
autoconf.m4
autoheader.m4
configure
doc/Makefile.in
lib/autoconf/autoconf.m4
lib/autoconf/general.m4
lib/autoconf/oldnames.m4
lib/autoconf/specific.m4
testsuite/Makefile.in

index 7a89cb1196665cdd697e6d55b1b1adc19c94f8ec..70748903c2a8d1ff513d8de05227d978d28b9bf6 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+1999-10-31  Akim Demaille  <akim@epita.fr>
+
+       * autoconf.m4: Insert -*- Autoconf -*-.
+       * acgeneral.m4: Likewise.
+       * acspecific.m4: Likewise.
+       * acoldnames.m4: Likewise.
+
 1999-10-31  Akim Demaille  <akim@epita.fr>
 
        Create AC_CONFIG_HEADERS which has the same interface as the other
@@ -27,7 +34,7 @@
 1999-10-31  Akim Demaille  <akim@epita.fr>
 
        config.status: Speed up the creation of config headers (about four
-       times faster on Linux).
+       times faster on Linux).
 
        The previous scheme had three sed commands for each AC_DEFINE: one
        for #define templates, and two for #undef templates (with or
        #undef script.
 
        Note that this way, users that don't use #define templates don't
-       pay too much the overhead, since the sed script `realizes' quickly
-       there are no #define lines.  My test case runs in 0.32s with
-       #define templates, and 0.24s without.  To improve this common
-       case, the whole code for #define templates is conditionalized by a
-       proper egrep call.  The result runs is 0.24s, i.e., almost no cost
-       at all.
+       pay too much the overhead, since the sed script `realizes' quickly
+       there are no #define lines.  My test case runs in 0.32s with
+       #define templates, and 0.24s without.  To improve this common
+       case, the whole code for #define templates is conditionalized by a
+       proper egrep call.  The result runs is 0.24s, i.e., almost no cost
+       at all.
 
        I made one dangerous change that I carefully evaluated before
-       commiting: the sed scripts are cut at 48 lines instead of 12 as
-       before.  This produces here docs of about 4Kb.  I checked many
-       `configure's and they all have big here documents, much bigger
-       than the 12 lines (for instance AC_FUNC_MMAP produces a 150 lines
-       long, 3800+ character here document).  So I moved to the well
-       known HP UX sed limitations: no more than 100 commands, and there
-       are two commands per line now, plus a two command preamble.  The
-       speed up is noticeable.
+       commiting: the sed scripts are cut at 48 lines instead of 12 as
+       before.  This produces here docs of about 4Kb.  I checked many
+       `configure's and they all have big here documents, much bigger
+       than the 12 lines (for instance AC_FUNC_MMAP produces a 150 lines
+       long, 3800+ character here document).  So I moved to the well
+       known HP UX sed limitations: no more than 100 commands, and there
+       are two commands per line now, plus a two command preamble.  The
+       speed up is noticeable.
 
        * acgeneral.m4 (AC_OUTPUT_HEADERS): Remove the ac_e
        family.
@@ -67,7 +74,7 @@
        create `conftest.defines' with the ac_d family, and then
        `conftest.undefs' for the ac_e family.
        Break up both `conftest.defines' and `conftest.undefs'.  Insert a
-       top label and a global test for `#defines' and `#undef' before.
+       top label and a global test for `#defines' and `#undef' before.
        Call `conftest.defines' if there are #define in the input.
        Call `conftest.undefs'.
 
@@ -89,7 +96,7 @@
        IF-FOUND, IF-NOT-FOUND.
        (AC_NEED_DECLS, AC_CHECK_DECLS): Likewise.
        * autoconf.texi (Generic Declarations): Document the changes
-       aforementioned.
+       aforementioned.
        * autoheader.m4 (AH_NEED_DECLS): Renamed as
        (AH_CHECK_DECLS): This.
        (AH_HOOKS): Hook AH_CHECK_DECLS on AC_CHECK_DECLS instead of
        * acgeneral.m4: (AC_OUTPUT_CONFIG_STATUS): New macro, pulled out
        from...
        (AC_OUTPUT): Instead of using $1, $2 and $3, pass them to the
-       official macros (AC_CONFIG_FILES, AC_OUTPUT_COMMANTS).
+       official macros (AC_CONFIG_FILES, AC_OUTPUT_COMMANDS).
        Call AC_OUTPUT_CONFIG_STATUS.
        (option handling): Use the case-esac to recognize arguments.
        (AC_OUTPUT_COMMANDS): Fix the missing fi;done.
 
 1999-10-31  Akim Demaille  <akim@epita.fr>
 
-       New macro: AC_CONFIG_FILES which is very much like AC_OUTPUT but
+       New macro: AC_CONFIG_FILES which is very much like AC_OUTPUT but
        that one associates commands to run when a config file is created.
        For instance for a shell script `foo', one uses
        AC_CONFIG_FILES(foo, chmod +x foo).
        Use Automake.  Based on files from Ben Elliston.
 
        * acgeneral.m4: No longer define AC_ACVERSION, include
-       acversion.m4.
+       acversion.m4.
        * acversion.m4.in: New AC_CONFIG_FILE.
        * acspecific.m4: Few formating changes.
        * autoconf.texi: No longer define EDITION, VERSION and UPDATED:
        include version.texi.
        AC_OUTPUT the Makefiles mentioned below and acversion.m4.
        * configure.in: Use AM_INIT_AUTOMAKE.
-       Do not AC_ARG_PROGRAM: AM_INIT_AUTOMAKE does it.
+       Do not AC_ARG_PROGRAM: AM_INIT_AUTOMAKE does it.
        * Makefile.am: New file.
        * mdate-sh: Likewise.
        * missing: Likewise.
        Reported by H.J. Lu.
 
        * acgeneral.m4 (m4_split): Support a second optional argument: a
-       regexp to specify where to split.
+       regexp to specify where to split.
        (m4_compare): New macro, compares arbitrary long m4 lists of
-       integers.
+       integers.
        (AC_PREREQ_SPLIT, AC_PREREQ_CANON, AC_PREREQ_COMPARE): Removed,
        replaced by more generic macros.
        (AC_PREREQ): Reimplemented, using m4_compare and m4_split.
        * autoheader.m4: Restablish the hook for AC_CHECK_HEADERS_DIRENT.
 
        * acspecific.m4 (AC_CHECK_HEADERS_DIRENT, AC_CHECK_HEADER_DIRENT):
-       Reinserted.
+       Reinserted.
 
 1999-10-02  Akim Demaille  <demaille@inf.enst.fr>
 
        * acspecific.m4 (AC_DIR_HEADER): Raised from obsolete to hasbeen.
 
        * acspecific.m4 (AC_CHECK_HEADERS_DIRENT, AC_CHECK_HEADER_DIRENT):
-       Removed, were used only by AC_DIR_HEADER and were not documented.
+       Removed, were used only by AC_DIR_HEADER and were not documented.
 
        * autoheader.m4: Remove the hooks for AC_CHECK_HEADERS_DIRENT.
 
        separated list of DEST:SOURCES arguments.
 
        * acgeneral.m4: Rename each occurence of AC_LIST_HEADER as
-       AC_LIST_HEADERS for consistency.
+       AC_LIST_HEADERS for consistency.
 
        * acgeneral.m4 (AC_OUTPUT, config.status prologue): Move the
        definition of config_files and config_headers to the top.
        config.h.in.
 
        * autoheader.m4: Major rewrite: introduction of a set of macros
-       AH_ that produce code into config.h.in.  There are two sets of
-       macros: generic macros, or specialized, documented below.  The
-       basic idea is that an AC_FOO macro which needs an entry in
-       config.h.in should have a sibling AH_FOO which expands into that
-       entry.  In a near future, these macros will be moved next to their
+       AH_ that produce code into config.h.in.  There are two sets of
+       macros: generic macros, or specialized, documented below.  The
+       basic idea is that an AC_FOO macro which needs an entry in
+       config.h.in should have a sibling AH_FOO which expands into that
+       entry.  In a near future, these macros will be moved next to their
        siblings.
 
        * autoheader.m4 (AH_VERBATIM, AH_DEFINE, AH_DEFINE, AH_NEED_DECLS,
-       AH_CHECK_SIZEOF, AH_CHECK_FUNCS, AH_CHECK_HEADERS,
-       AH_CHECK_HEADERS, AH_CHECK_LIB, AH_PROG_LEX, AH_FUNC_ALLOCA,
-       AH_C_CHAR_UNSIGNED, AH_AIX, AH_F77_WRAPPERS): New macros.
+       AH_CHECK_SIZEOF, AH_CHECK_FUNCS, AH_CHECK_HEADERS,
+       AH_CHECK_HEADERS, AH_CHECK_LIB, AH_PROG_LEX, AH_FUNC_ALLOCA,
+       AH_C_CHAR_UNSIGNED, AH_AIX, AH_F77_WRAPPERS): New macros.
 
        * autoheader.m4 (End section): Bind AC_ macros to their
        AH_siblings.
 
        * acconfig.h: Completely emptied, the remaining templates
        (_ALL_SOURCE, __CHAR_UNSIGNED__, F77_FUNC, F77_FUNC_,
-       HAVE_STRINGIZE, and STACK_DIRECTION) are now either associated to
-       their AC_DEFINE, or to one of the new AH_ macros.
+       HAVE_STRINGIZE, and STACK_DIRECTION) are now either associated to
+       their AC_DEFINE, or to one of the new AH_ macros.
 
        * acgeneral.m4: Reordering of the m4 macros which are not specific
-       to Autoconf.
+       to Autoconf.
 
        * acgeneral.m4 (AC_HAVE_LIB): Promoted from obsolete to hasbeen.
 
        same number of times.
 
        * acconfig.h (_ALLOCA, CLOSEDIR_VOID, const, CRAY_STACKSEG_END,
-       DGUX, DIRENT, GETGROUPS_T, GETLOADAVG_PRIVILEGED, GETPGRP_VOID,
-       gid_t, HAVE_ALLOCA, HAVE_ALLOCA_H, HAVE_DOPRNT, HAVE_FNMATCH,
-       HAVE_GETLOADAVG, HAVE_GETMNTENT, HAVE_LONG_DOUBLE,
-       HAVE_LONG_FILE_NAMES, HAVE_MMAP, HAVE_RESTARTABLE_SYSCALLS,
-       HAVE_ST_BLKSIZE, HAVE_ST_BLOCKS, HAVE_STRCOLL, HAVE_ST_RDEV,
-       HAVE_STRFTIME, HAVE_SYS_WAIT_H, HAVE_TM_ZONE, HAVE_TZNAME,
-       HAVE_UNISTD_H, HAVE_UTIME_NULL, HAVE_VFORK_H, HAVE_VPRINTF,
-       HAVE_WAIT3, inline, INT_16_BITS, LONG_64_BITS, MAJOR_IN_MKDEV,
-       MAJOR_IN_SYSMACROS, _MINIX, NDIR, NEED_MEMORY_H, NLIST_NAME_UNION,
-       NLIST_STRUCT, NO_MINUS_C_MINUS_O, F77_NO_MINUS_C_MINUS_O,
-       _POSIX_1_SOURCE, _POSIX_SOURCE, RETSIGTYPE, SELECT_TYPE_ARG1,
-       SELECT_TYPE_ARG234, SELECT_TYPE_ARG5, SETPGRP_VOID,
-       SETVBUF_REVERSED, STAT_MACROS_BROKEN, STDC_HEADERS, SVR4, SYSDIR,
-       SYSNDIR, SYS_SIGLIST_DECLARED, TIME_WITH_SYS_TIME, TM_IN_SYS_TIME,
-       uid_t, UMAX, UMAX4_3, USG, vfork, VOID_CLOSEDIR, WORDS_BIGENDIAN,
-       X_DISPLAY_MISSING, YYTEXT_POINTER): Removed their autoheader
-       template.  They are now documented with their own AC_DEFINE.
+       DGUX, DIRENT, GETGROUPS_T, GETLOADAVG_PRIVILEGED, GETPGRP_VOID,
+       gid_t, HAVE_ALLOCA, HAVE_ALLOCA_H, HAVE_DOPRNT, HAVE_FNMATCH,
+       HAVE_GETLOADAVG, HAVE_GETMNTENT, HAVE_LONG_DOUBLE,
+       HAVE_LONG_FILE_NAMES, HAVE_MMAP, HAVE_RESTARTABLE_SYSCALLS,
+       HAVE_ST_BLKSIZE, HAVE_ST_BLOCKS, HAVE_STRCOLL, HAVE_ST_RDEV,
+       HAVE_STRFTIME, HAVE_SYS_WAIT_H, HAVE_TM_ZONE, HAVE_TZNAME,
+       HAVE_UNISTD_H, HAVE_UTIME_NULL, HAVE_VFORK_H, HAVE_VPRINTF,
+       HAVE_WAIT3, inline, INT_16_BITS, LONG_64_BITS, MAJOR_IN_MKDEV,
+       MAJOR_IN_SYSMACROS, _MINIX, NDIR, NEED_MEMORY_H, NLIST_NAME_UNION,
+       NLIST_STRUCT, NO_MINUS_C_MINUS_O, F77_NO_MINUS_C_MINUS_O,
+       _POSIX_1_SOURCE, _POSIX_SOURCE, RETSIGTYPE, SELECT_TYPE_ARG1,
+       SELECT_TYPE_ARG234, SELECT_TYPE_ARG5, SETPGRP_VOID,
+       SETVBUF_REVERSED, STAT_MACROS_BROKEN, STDC_HEADERS, SVR4, SYSDIR,
+       SYSNDIR, SYS_SIGLIST_DECLARED, TIME_WITH_SYS_TIME, TM_IN_SYS_TIME,
+       uid_t, UMAX, UMAX4_3, USG, vfork, VOID_CLOSEDIR, WORDS_BIGENDIAN,
+       X_DISPLAY_MISSING, YYTEXT_POINTER): Removed their autoheader
+       template.  They are now documented with their own AC_DEFINE.
 
        * acgeneral.m4 (AC_HASBEEN): New macro.  Same as AC_OBSOLETE, but
        dies.
 
        * acspecific.m4 (AC_UNISTD_H, AC_USG, AC_MEMORY_H, AC_INT_16_BITS,
-       AC_LONG_64_BITS): Promoted from obsolete to hasbeen.
+       AC_LONG_64_BITS): Promoted from obsolete to hasbeen.
 
        * autoheader.m4 (AC_DEFINE_UNQUOTED): Define via AC_DEFINE, so
        that we program things only once.
 1999-09-25  Akim Demaille  <akim@epita.fr>
 
        * acgeneral.m4: Rename the occurences of the variable `confstat'
-       as `ac_cs_root'.  The previous name was breaking the naming
+       as `ac_cs_root'.  The previous name was breaking the naming
        scheme.
 
        * TODO: Updated.
        * acgeneral.m4 (AC_CHECK_LIB): Use AC_VAR_*.
 
        * acgeneral.m4: Use `m4_BUILTIN' instead of indirection via
-       `builtin'.
+       `builtin'.
 
 1999-09-21  Akim Demaille  <akim@epita.fr>
 
 1999-09-21  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
 
        * acgeneral.m4 (AC_CHECK_FUNC_DECL, AC_CHECK_FUNC_DECLS): New
-       macros.
+       macros.
 
        * autoconf.texi (AC_CHECK_FUNC_DECL, AC_CHECK_FUNC_DECLS):
-       Document.
+       Document.
 
        * autoheader.m4: Add support for AC_CHECK_FUNC_DECLS.
 
        (AC_CHECK_FUNC): Likewise.
 
        * Makefile.in (${srcdir}/configure): Use autoconf.sh to build
-       Autoconf's configure.  Before the building was performed running
-       m4 at hand, but much was not done (e.g., __oline__,
-       @BKL@... expansion)
+       Autoconf's configure.  Before the building was performed running
+       m4 at hand, but much was not done (e.g., __oline__,
+       @BKL@... expansion)
 
 1999-09-20  Akim Demaille  <akim@epita.fr>
 
        * acgeneral.m4 (AC_OUTPUT): Don't remove the CONFIG_HEADERS
-       unconditionaly: it breaks the `config.h has not changed' trick.
+       unconditionaly: it breaks the `config.h has not changed' trick.
 
 1999-09-20  Ben Elliston  <bje@cygnus.com>
 
        * acgeneral.m4 (AC_OUTPUT): Change the root of filenames of
        config.status from $conftest to $confstat.
        The previous patch to make config.status reentrant was wrong,
-       because it changed some `conftest' that are used by configure into
-       `$conftest', while it was for config.status only.  To avoid
-       another confusion like this, all the filenames of config.status
-       should be `$confstat*', and those of configure should be
-       `conftest*'.
+       because it changed some `conftest' that are used by configure into
+       `$conftest', while it was for config.status only.  To avoid
+       another confusion like this, all the filenames of config.status
+       should be `$confstat*', and those of configure should be
+       `conftest*'.
        (AC_OUTPUT): Rename the uses of `ac_file' for the sed fragments as
        `ac_sed_frag'.
 
        * acgeneral.m4 (AC_OUTPUT): This macro used to open the here
-       documents that configure uses to generate config.status, included
-       that of the submacros.  Now, it no longer handles the here
-       documents for its subroutines (it was far to hard to track).
+       documents that configure uses to generate config.status, included
+       that of the submacros.  Now, it no longer handles the here
+       documents for its subroutines (it was far to hard to track).
        (AC_OUTPUT_FILES): Open and close your here documents to
        $CONFIG_STATUS.
        (AC_OUTPUT_HEADER): Likewise.
        (AC_OUTPUT_LINKS): Likewise.
 
        * acgeneral.m4 (AC_OUTPUT_FILES): Move $ac_vpsub and $extrasub
-       from the AC_SUBST substitutions (i.e., that of @SHELL@ etc.) to
-       the specific section (that of @srcdir@ etc.).
+       from the AC_SUBST substitutions (i.e., that of @SHELL@ etc.) to
+       the specific section (that of @srcdir@ etc.).
        Now the ``general substitution'' section is absolutely uniform.
 
        * acgeneral.m4 (AC_SUBST): Change sed call from `s%@from@%to%g'
-       into `s%@from@%to%;t t'.
+       into `s%@from@%to%;t t'.
        (AC_SUBST_FILE): Likewise.
        (AC_OUTPUT_FILES): Optimize the sed scripts by branching if there
-       are no `@' on the line. Impressive speed up.
+       are no `@' on the line. Impressive speed up.
 
        * Makefile.in (DISTFILES): Add THANKS.
 
 1999-09-14  Akim Demaille  <akim@epita.fr>
 
        * acgeneral.m4 (AC_HELP_STRING): Rewrite in m4.  Have m4 work, and
-       give a break to sh.
+       give a break to sh.
        (_AC_FOREACH): Be careful not to evaluate the arguments.  A loop
        over *quoted* macro names should loop over the macro names, not
        upon their expansion.
        (_AC_COMMATIZE): Also swallow end of lines.
 
        * autoconf.texi (Pretty Help Strings): Updated to reflect the
-       changes.
+       changes.
 
 1999-09-13  Akim Demaille  <akim@epita.fr>
 
        to allow parallel builds.
 
        * autoconf.sh: Substitute also /@BKL@/[/ /@BKR@/]/ /@DLR@/$/ so
-       that these characters are more easily accessible from m4 without
-       turning changequote juggling into a nightmare.
+       that these characters are more easily accessible from m4 without
+       turning changequote juggling into a nightmare.
 
        * acgeneral.m4 (AC_WRAP): New macro, for word wrapping.
 
        experimental branch from the main trunk.
 
        * acgeneral.m4 (AC_FOREACH_COMMA): New macro, to perform m4 loops
-       on m4 lists (i.e., list='(item_1, item_2, ..., item_n)').
+       on m4 lists (i.e., list='(item_1, item_2, ..., item_n)').
        (AC_FOREACH): New macro, to perform m4 loops on shell lists (i.e.,
-       list='item_1 item_2 ... item_n').
+       list='item_1 item_2 ... item_n').
 
        * acgeneral.m4 (AC_DEFUN): Now accept two other optionnal
-       parameters: the name of the macro which is specialized here, and
-       the name of the first argument.  For instance `AC_CHECK_FNMATCH'
-       should be declared as specializing `AC_CHECK_FUNC' for `fnmatch'
-       as first argument.
+       parameters: the name of the macro which is specialized here, and
+       the name of the first argument.  For instance `AC_CHECK_FNMATCH'
+       should be declared as specializing `AC_CHECK_FUNC' for `fnmatch'
+       as first argument.
 
        * acgeneral.m4 (AC_CHECK_FILES): Use AC_FOREACH for looping,
-       instead of the shell's loop.
+       instead of the shell's loop.
 
        * acgeneral.m4 (AC_TR): In addition to transliteration, provide a
-       mean to specify the valid destination alphabet and a default
-       character for aliens characters.  This is in order to remove
+       mean to specify the valid destination alphabet and a default
+       character for aliens characters.  This is in order to remove
        characters such as `+:-' etc. that may appear in file names,
        but are not valid for shell variables or #defines.
        (AC_TR_DEFINE): New macro, maps anything to a valid uppercase
-       #define rhs.
+       #define rhs.
        (AC_TR_UPCASE_NAME): Replaced by AC_TR_DEFINE.  All callers
-       changed.
+       changed.
        (AC_TR_UPCASE_FILE): Likewise.
 
        * acgeneral.m4 (AC_TR_SH): Don't use the generic AC_TR: there is a
-       difficult problem of quoting between m4 and sh.  Use the variable
-       $ac_tr_sh to work around this difficulty.
+       difficult problem of quoting between m4 and sh.  Use the variable
+       $ac_tr_sh to work around this difficulty.
        (AC_VAR_TEST_SET): New macro, which tests if a variable is set.
        (AC_VAR_IF_SET): New `ifelse' macro.
        (AC_CACHE_VAL): Use AC_VAR_IF_SET.
        (AC_INIT_NOTICE): Define $ac_tr_sh.
 
        * acgeneral.m4 (AC_CHECK_FILE): Converted to use AC_TR and AC_VAR
-       families.
+       families.
 
        * acgeneral.m4: Fixed the regular expressions: `$' shall not be
        portably in a sed \(\) group.
        argument to AC_PROG_CC, AC_PROG_CXX and AC_PROG_F77.  Document
        additions to the Fortran 77 compiler search list.
 
-       * acspecific.m4 (AC_PROG_F77): Add more Fortran 77 compilers to
+       * acspecific.m4 (AC_PROG_F77): Add more Fortran 77 compilers to
        the search list.  Contributed by Steven G. Johnson
        <stevenj@alum.mit.edu>.
 
 1999-01-19  Pavel Roskin  <pavel_roskin@geocities.com>
 
        * ifnames.sh: Source lines ending with backslash are prepended to
-       the following line before further processing.
+       the following line before further processing.
 
 1999-01-19  Ben Elliston  <bje@cygnus.com>
 
          (AC_SEARCH_LIBS, AC_CHECK_FILE, AC_CHECK_FILES,
           AC_TRY_LINK_FUNC): Document.
          (AC_CHECK_LIB): Indicate the absence of
-               action-if-not-found will not kill default action.
+               action-if-not-found will not kill default action.
          (AC_SYS_INTERPRETER): Alphabetize with rest of section,
-               s/ac_cv_sys_interpreter/interpval/
+               s/ac_cv_sys_interpreter/interpval/
 
        * acgeneral.m4:
          (AC_TRY_LINK_FUNC): Fix arg transposition.
 
        * acspecific.m4:
          (AC_SYS_INTERPRETER): New shell var 'interpval' stores
-               internal var ac_cv_sys_interpreter.
+               internal var ac_cv_sys_interpreter.
 
 1998-12-27  Ben Elliston  <bje@cygnus.com>
 
@@ -1997,7 +2004,7 @@ Tue Nov 18 14:21:38 1997  Eric Mumpower  <nocturne@cygnus.com>
 Fri Oct  3 18:10:39 1997  Ian Lance Taylor  <ian@cygnus.com>
 
        * acgeneral.m4 (AC_CACHE_SAVE): Add a grep when checking whether
-       set quotes correctly, to avoid a cache overflow on HP-UX 9.
+       set quotes correctly, to avoid a cache overflow on HP-UX 9.
        * configure: Rebuild.
 
 Wed Sep 11 15:35:19 1997  Chris Provenzano  <proven@cygnus.com>
@@ -2127,7 +2134,7 @@ Sun Nov 17 20:12:05 1996  David J MacKenzie  <djm@catapult.va.pubnix.com>
 Thu Nov 14 11:15:27 1996  David J MacKenzie  <djm@catapult.va.pubnix.com>
 
        * acheaders: Add entry for malloc.h.  Make the strings.h entry
-       suggest AC_CHECK_HEADERS instead of AC_HEADER_STDC.
+       suggest AC_CHECK_HEADERS instead of AC_HEADER_STDC.
 
        * acgeneral.m4 (AC_INIT_PARSE_ARGS): Move initialization of
        ac_max_here_lines here from AC_OUTPUT_HEADER.
@@ -2178,8 +2185,8 @@ Tue Nov 12 00:06:14 1996  David J MacKenzie  <djm@catapult.va.pubnix.com>
        of -O.  Suggested by fnf@ninemoons.com (Fred Fish).
 
        * acgeneral.m4 (AC_OUTPUT_HEADER): Support passing
-       AC_CONFIG_HEADER a value containing shell variables.  Suggested by
-       Markku Savela <msa@msa.tte.vtt.fi> and Julian Onions
+       AC_CONFIG_HEADER a value containing shell variables.  Suggested by
+       Markku Savela <msa@msa.tte.vtt.fi> and Julian Onions
        <j.onions@nexor.co.uk>.
        * acgeneral.m4 (AC_TRY_RUN_NATIVE, AC_TRY_LINK, AC_TRY_COMPILE,
        AC_TRY_CPP): Show the test program in config.log if the test fails.
@@ -2381,9 +2388,9 @@ Wed Mar 13 12:49:51 1996  Roland McGrath  <roland@charlie-brown.gnu.ai.mit.edu>
 Tue Mar 12 02:51:24 1996  Roland McGrath  <roland@charlie-brown.gnu.ai.mit.edu>
 
        * acgeneral.m4 (AC_OUTPUT_HEADER): Apply Jan 15 fix to
-       AC_OUTPUT_MAKE_DEFS here too: Match `#define foo' without trailing
-       space in confdefs.h.  Before configure would lose if all its trailing
-       whitespace got stripped, and that can happen in mail.
+       AC_OUTPUT_MAKE_DEFS here too: Match `#define foo' without trailing
+       space in confdefs.h.  Before configure would lose if all its trailing
+       whitespace got stripped, and that can happen in mail.
 
 Sun Mar 10 20:30:09 1996  Roland McGrath  <roland@charlie-brown.gnu.ai.mit.edu>
 
@@ -2653,8 +2660,8 @@ Wed Mar  8 12:44:34 1995  David J. MacKenzie  <djm@catapult.va.pubnix.com>
 Tue Mar  7 11:48:19 1995  David J. MacKenzie  <djm@catapult.va.pubnix.com>
 
        * acspecific.m4 (AC_FUNC_ALLOCA): Keep sh variable namespace
-       clean.  Put newline after AC_DEFINE_UNQUOTED call to avoid Irix
-       syntax error.
+       clean.  Put newline after AC_DEFINE_UNQUOTED call to avoid Irix
+       syntax error.
 
 Mon Mar  6 15:07:00 1995  David J. MacKenzie  <djm@catapult.va.pubnix.com>
 
@@ -2683,13 +2690,13 @@ Fri Mar  3 11:41:01 1995  David J. MacKenzie  <djm@catapult.va.pubnix.com>
 Sat Feb 25 01:56:57 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
 
        * acspecific.m4 (AC_C_BIGENDIAN): Check for BYTE_ORDER macro from
-       sys/param.h before trying the test program which cannot be
-       cross-compiled.
+       sys/param.h before trying the test program which cannot be
+       cross-compiled.
 
 Fri Feb 24 20:02:08 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
 
        * acgeneral.m4 (AC_CHECK_FUNC): Include errno.h instead of ctype.h
-       in test program.
+       in test program.
 
 Wed Feb 22 18:01:27 1995  David J. MacKenzie  <djm@geech.gnu.ai.mit.edu>
 
@@ -2711,22 +2718,22 @@ Tue Feb 21 13:00:07 1995  David J. MacKenzie  <djm@catapult.va.pubnix.com>
 Mon Feb 13 18:13:11 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
 
        * acspecific.m4 (AC_PROG_CC_C_O): Use sed filter to make sure
-       ${ac_cc} is always a valid shell variable name.
+       ${ac_cc} is always a valid shell variable name.
        (AC_PROG_MAKE_SET): Remove gratuitous backslashes in checking message.
 
 Sun Feb 12 18:42:35 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
 
        * acgeneral.m4 (AC_CHECK_TOOL_PREFIX): Require AC_CANONICAL_BUILD,
-       so both $build and $host are definitely set before we compare
-       them.
+       so both $build and $host are definitely set before we compare
+       them.
 
 Sat Feb 11 04:37:30 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
 
        * acgeneral.m4 (AC_CHECK_TOOL): Rewritten.  Take optional third
-       arg VALUE-IF-NOT-FOUND.  Check for
-       ${ac_tool_prefix}PROG-TO-CHECK-FOR first.  If not found and third
-       arg given, and ${ac_tool_prefix} is nonempty, check for unadorned
-       PROG-TO-CHECK-FOR as well.  Last choice use VALUE-IF-NOT-FOUND.
+       arg VALUE-IF-NOT-FOUND.  Check for
+       ${ac_tool_prefix}PROG-TO-CHECK-FOR first.  If not found and third
+       arg given, and ${ac_tool_prefix} is nonempty, check for unadorned
+       PROG-TO-CHECK-FOR as well.  Last choice use VALUE-IF-NOT-FOUND.
 
 Fri Feb 10 17:45:53 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
 
@@ -3321,10 +3328,10 @@ Fri Aug 26 00:34:11 1994  David J. MacKenzie  (djm@vortex.eng.umd.edu)
        code after AC_OUTPUT (needed for Emacs).
 
        * acgeneral.m4 (AC_CANONICAL_SYSTEM): Move setting of alias vars
-       into submacros.
+       into submacros.
 
        * acspecific.m4 (AC_PROG_CPP): If $CPP is set and is a directory,
-       ignore it.
+       ignore it.
 
 Thu Aug 25 09:26:36 1994  David J. MacKenzie  (djm@vortex.eng.umd.edu)
 
index a600fd6a7fc5603475d82c77713257a293f13ef2..5d17dbe023f1c40254c492a4d1c6ff1b8bbaee9d 100644 (file)
@@ -57,12 +57,20 @@ POST_INSTALL = :
 NORMAL_UNINSTALL = :
 PRE_UNINSTALL = :
 POST_UNINSTALL = :
+AMDEP = @AMDEP@
+AMTAR = @AMTAR@
 AWK = @AWK@
+CC = @CC@
+CPP = @CPP@
+CXX = @CXX@
+CXXCPP = @CXXCPP@
+DEPDIR = @DEPDIR@
 M4 = @M4@
 PACKAGE = @PACKAGE@
 PERL = @PERL@
 PERLSCRIPTS = @PERLSCRIPTS@
 VERSION = @VERSION@
+install_sh = @install_sh@
 standards_texi = @standards_texi@
 
 AUTOMAKE_OPTIONS = check-news
@@ -76,7 +84,7 @@ SUFFIXES = .m4 .m4f .pl .sh
 bin_SCRIPTS = autoconf autoheader autoreconf autoupdate ifnames @PERLSCRIPTS@
 EXTRA_SCRIPTS = autoscan
 
-pkgdata_DATA = acfunctions acheaders acidentifiers acmakevars                acprograms acconfig.h autoconf.m4f autoheader.m4f                acgeneral.m4 acoldnames.m4 acspecific.m4 autoconf.m4                autoheader.m4 acversion.m4
+pkgdata_DATA = acfunctions acheaders acidentifiers acmakevars                acprograms autoconf.m4f autoheader.m4f                acgeneral.m4 acoldnames.m4 acspecific.m4 autoconf.m4                autoheader.m4 acversion.m4
 
 
 info_TEXINFOS = autoconf.texi standards.texi
@@ -84,7 +92,7 @@ autoconf_TEXINFOS = install.texi
 standards_TEXINFOS = make-stds.texi
 
 OLDCHANGELOGS = ChangeLog.0 ChangeLog.1
-EXTRA_DIST = $(OLDCHANGELOGS)             acfunctions acheaders acidentifiers acmakevars              acprograms acconfig.h acgeneral.m4 acoldnames.m4              acspecific.m4 autoconf.m4 autoheader.m4 acversion.m4.in         autoconf.sh autoheader.sh autoreconf.sh autoupdate.sh           ifnames.sh autoscan.pl INSTALL.txt
+EXTRA_DIST = $(OLDCHANGELOGS)             acfunctions acheaders acidentifiers acmakevars              acprograms acgeneral.m4 acoldnames.m4              acspecific.m4 autoconf.m4 autoheader.m4 acversion.m4.in            autoconf.sh autoheader.sh autoreconf.sh autoupdate.sh           ifnames.sh autoscan.pl INSTALL.txt
 
 
 # Files that should be removed, but which Automake does not know.
@@ -466,7 +474,7 @@ distdir: $(DISTFILES)
        @for file in $(DISTFILES); do \
          d=$(srcdir); \
          if test -d $$d/$$file; then \
-           cp -pr $$/$$file $(distdir)/$$file; \
+           cp -pr $$d/$$file $(distdir)/$$file; \
          else \
            test -f $(distdir)/$$file \
            || ln $$d/$$file $(distdir)/$$file 2> /dev/null \
diff --git a/NEWS b/NEWS
index d39329d42f612d5487a1ada9bf9134b22c5cd686..82aa5ec52b60747f1d8c2a4ef1f8058f90ec665b 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -1,4 +1,4 @@
-* Major changes in release 2.15                                -*- outline -*-
+* Major changes in release 2.14.1                      -*- outline -*-
 
 ** config.status
 - much faster on most architectures
diff --git a/acconfig.h b/acconfig.h
deleted file mode 100644 (file)
index e69de29..0000000
index 0cb946296b7f873e9c7bda27aee25dcf4ec458a1..6ccc234d617460a8827f1f0099ec8f7037abd59e 100644 (file)
@@ -1,6 +1,6 @@
+dnl This file is part of Autoconf.                       -*- Autoconf -*-
 dnl Parameterized macros.
 dnl Requires GNU m4.
-dnl This file is part of Autoconf.
 dnl Copyright (C) 1992, 93, 94, 95, 96, 98, 1999 Free Software Foundation, Inc.
 dnl
 dnl This program is free software; you can redistribute it and/or modify
index 9f8add8f0d990b497df73a3f164cb305379278fb..aa3b7fa408f71c8ce205410bf3ef830f706517a6 100644 (file)
@@ -1,4 +1,4 @@
-dnl aclocal.m4 generated automatically by aclocal 1.4
+dnl aclocal.m4 generated automatically by aclocal 1.4a
 
 dnl Copyright (C) 1994, 1995-8, 1999 Free Software Foundation, Inc.
 dnl This file is free software; the Free Software Foundation
@@ -21,27 +21,40 @@ dnl AM_INIT_AUTOMAKE(package,version, [no-define])
 
 AC_DEFUN(AM_INIT_AUTOMAKE,
 [AC_REQUIRE([AC_PROG_INSTALL])
+dnl We require 2.13 because we rely on SHELL being computed by configure.
+AC_PREREQ([2.13])
 PACKAGE=[$1]
 AC_SUBST(PACKAGE)
 VERSION=[$2]
 AC_SUBST(VERSION)
 dnl test to see if srcdir already configured
-if test "`cd $srcdir && pwd`" != "`pwd`" && test -f $srcdir/config.status; then
+if test "`CDPATH=: && cd $srcdir && pwd`" != "`pwd`" &&
+   test -f $srcdir/config.status; then
   AC_MSG_ERROR([source directory already configured; run "make distclean" there first])
 fi
 ifelse([$3],,
-AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Name of package])
-AC_DEFINE_UNQUOTED(VERSION, "$VERSION", [Version number of package]))
+[AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Name of package.])
+AC_DEFINE_UNQUOTED(VERSION, "$VERSION", [Version number of package.])])
 AC_REQUIRE([AM_SANITY_CHECK])
 AC_REQUIRE([AC_ARG_PROGRAM])
-dnl FIXME This is truly gross.
-missing_dir=`cd $ac_aux_dir && pwd`
-AM_MISSING_PROG(ACLOCAL, aclocal, $missing_dir)
-AM_MISSING_PROG(AUTOCONF, autoconf, $missing_dir)
-AM_MISSING_PROG(AUTOMAKE, automake, $missing_dir)
-AM_MISSING_PROG(AUTOHEADER, autoheader, $missing_dir)
-AM_MISSING_PROG(MAKEINFO, makeinfo, $missing_dir)
-AC_REQUIRE([AC_PROG_MAKE_SET])])
+AM_MISSING_PROG(ACLOCAL, aclocal)
+AM_MISSING_PROG(AUTOCONF, autoconf)
+AM_MISSING_PROG(AUTOMAKE, automake)
+AM_MISSING_PROG(AUTOHEADER, autoheader)
+AM_MISSING_PROG(MAKEINFO, makeinfo)
+AM_MISSING_PROG(AMTAR, tar)
+AM_MISSING_INSTALL_SH
+dnl We need awk for the "check" target.  The system "awk" is bad on
+dnl some platforms.
+AC_REQUIRE([AC_PROG_AWK])
+AC_REQUIRE([AC_PROG_MAKE_SET])
+AC_REQUIRE([AM_DEP_TRACK])
+AC_REQUIRE([AM_SET_DEPDIR])
+ifdef([AC_PROVIDE_AC_PROG_CC], [AM_DEPENDENCIES(CC)], [
+   define([AC_PROG_CC], defn([AC_PROG_CC])[AM_DEPENDENCIES(CC)])])
+ifdef([AC_PROVIDE_AC_PROG_CXX], [AM_DEPENDENCIES(CXX)], [
+   define([AC_PROG_CXX], defn([AC_PROG_CXX])[AM_DEPENDENCIES(CXX)])])
+])
 
 #
 # Check to make sure that the build environment is sane.
@@ -86,19 +99,181 @@ fi
 rm -f conftest*
 AC_MSG_RESULT(yes)])
 
-dnl AM_MISSING_PROG(NAME, PROGRAM, DIRECTORY)
-dnl The program must properly implement --version.
-AC_DEFUN(AM_MISSING_PROG,
-[AC_MSG_CHECKING(for working $2)
-# Run test in a subshell; some versions of sh will print an error if
-# an executable is not found, even if stderr is redirected.
-# Redirect stdin to placate older versions of autoconf.  Sigh.
-if ($2 --version) < /dev/null > /dev/null 2>&1; then
-   $1=$2
-   AC_MSG_RESULT(found)
+dnl AM_MISSING_PROG(NAME, PROGRAM)
+AC_DEFUN(AM_MISSING_PROG, [
+AC_REQUIRE([AM_MISSING_HAS_RUN])
+$1=${$1-"${am_missing_run}$2"}
+AC_SUBST($1)])
+
+dnl Like AM_MISSING_PROG, but only looks for install-sh.
+dnl AM_MISSING_INSTALL_SH()
+AC_DEFUN(AM_MISSING_INSTALL_SH, [
+AC_REQUIRE([AM_MISSING_HAS_RUN])
+if test -z "$install_sh"; then
+   install_sh="${am_missing_run}install-sh"
+   test -f "$install_sh" || install_sh="${am_missing_run}install.sh"
+fi
+AC_SUBST(install_sh)])
+
+dnl AM_MISSING_HAS_RUN.
+dnl Define MISSING if not defined so far and test if it supports --run.
+dnl If it does, set am_missing_run to use it, otherwise, to nothing.
+AC_DEFUN([AM_MISSING_HAS_RUN], [
+test x"${MISSING+set}" = xset || \
+  MISSING="\${SHELL} `CDPATH=: && cd $ac_aux_dir && pwd`/missing"
+dnl Use eval to expand $SHELL
+if AC_TRY_COMMAND($MISSING --run : >/dev/null) then
+  am_missing_run="$MISSING --run "
 else
-   $1="$3/missing $2"
-   AC_MSG_RESULT(missing)
+  am_missing_run=
+  AC_MSG_WARN([\`missing' script is too old or missing])
 fi
-AC_SUBST($1)])
+])
+
+dnl See how the compiler implements dependency checking.
+dnl Usage:
+dnl AM_DEPENDENCIES(NAME)
+dnl NAME is "CC", "CXX" or "OBJC".
+
+dnl We try a few techniques and use that to set a single cache variable.
+
+AC_DEFUN(AM_DEPENDENCIES,[
+AC_REQUIRE([AM_SET_DEPDIR])
+AC_REQUIRE([AM_OUTPUT_DEPENDENCY_COMMANDS])
+ifelse([$1],CC,[
+AC_REQUIRE([AC_PROG_CC])
+AC_REQUIRE([AC_PROG_CPP])
+depcc="$CC"
+depcpp="$CPP"],[$1],CXX,[
+AC_REQUIRE([AC_PROG_CXX])
+AC_REQUIRE([AC_PROG_CXXCPP])
+depcc="$CXX"
+depcpp="$CXXCPP"],[$1],OBJC,[
+am_cv_OBJC_dependencies_compiler_type=gcc],[
+AC_REQUIRE([AC_PROG_][$1])
+depcc="$[$1]"
+depcpp=""])
+AC_MSG_CHECKING([dependency style of $depcc])
+AC_CACHE_VAL(am_cv_[$1]_dependencies_compiler_type,[
+if test -z "$AMDEP"; then
+  echo '#include "conftest.h"' > conftest.c
+  echo 'int i;' > conftest.h
+
+  am_cv_[$1]_dependencies_compiler_type=none
+  for depmode in `sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < "$am_depcomp"`; do
+    case "$depmode" in
+    nosideeffect)
+      # after this tag, mechanisms are not by side-effect, so they'll
+      # only be used when explicitly requested
+      if test "x$enable_dependency_tracking" = xyes; then
+       continue
+      else
+       break
+      fi
+      ;;
+    none) break ;;
+    esac
+    if depmode="$depmode" \
+       source=conftest.c object=conftest.o \
+       depfile=conftest.Po tmpdepfile=conftest.TPo \
+       $SHELL $am_depcomp $depcc -c conftest.c 2>/dev/null &&
+       grep conftest.h conftest.Po > /dev/null 2>&1; then
+      am_cv_[$1]_dependencies_compiler_type="$depmode"
+      break
+    fi
+  done
+
+  rm -f conftest.*
+else
+  am_cv_[$1]_dependencies_compiler_type=none
+fi
+])
+AC_MSG_RESULT($am_cv_[$1]_dependencies_compiler_type)
+[$1]DEPMODE="depmode=$am_cv_[$1]_dependencies_compiler_type"
+AC_SUBST([$1]DEPMODE)
+])
+
+dnl Choose a directory name for dependency files.
+dnl This macro is AC_REQUIREd in AM_DEPENDENCIES
+
+AC_DEFUN(AM_SET_DEPDIR,[
+if test -d .deps || mkdir .deps 2> /dev/null || test -d .deps; then
+  DEPDIR=.deps
+else
+  DEPDIR=_deps
+fi
+AC_SUBST(DEPDIR)
+])
+
+AC_DEFUN(AM_DEP_TRACK,[
+AC_ARG_ENABLE(dependency-tracking,
+[  --disable-dependency-tracking Speeds up one-time builds
+  --enable-dependency-tracking  Do not reject slow dependency extractors])
+if test "x$enable_dependency_tracking" = xno; then
+  AMDEP="#"
+else
+  am_depcomp="$ac_aux_dir/depcomp"
+  if test ! -f "$am_depcomp"; then
+    AMDEP="#"
+  else
+    AMDEP=
+  fi
+fi
+AC_SUBST(AMDEP)
+if test -z "$AMDEP"; then
+  AMDEPBACKSLASH='\'
+else
+  AMDEPBACKSLASH=
+fi
+pushdef([subst], defn([AC_SUBST]))
+subst(AMDEPBACKSLASH)
+popdef([subst])
+])
+
+dnl Generate code to set up dependency tracking.
+dnl This macro should only be invoked once -- use via AC_REQUIRE.
+dnl Usage:
+dnl AM_OUTPUT_DEPENDENCY_COMMANDS
+
+dnl
+dnl This code is only required when automatic dependency tracking
+dnl is enabled.  FIXME.  This creates each `.P' file that we will
+dnl need in order to bootstrap the dependency handling code.
+AC_DEFUN(AM_OUTPUT_DEPENDENCY_COMMANDS,[
+AC_OUTPUT_COMMANDS([
+test x"$AMDEP" != x"" ||
+for mf in $CONFIG_FILES; do
+  case "$mf" in
+  Makefile) dirpart=.;;
+  */Makefile) dirpart=`echo "$mf" | sed -e 's|/[^/]*$||'`;;
+  *) continue;;
+  esac
+  grep '^DEP_FILES *= *[^ #]' < "$mf" > /dev/null || continue
+  # Extract the definition of DEP_FILES from the Makefile without
+  # running `make'.
+  DEPDIR=`sed -n -e '/^DEPDIR = / s///p' < "$mf"`
+  test -z "$DEPDIR" && continue
+  # When using ansi2knr, U may be empty or an underscore; expand it
+  U=`sed -n -e '/^U = / s///p' < "$mf"`
+  test -d "$dirpart/$DEPDIR" || mkdir "$dirpart/$DEPDIR"
+  # We invoke sed twice because it is the simplest approach to
+  # changing $(DEPDIR) to its actual value in the expansion.
+  for file in `sed -n -e '
+    /^DEP_FILES = .*\\\\$/ {
+      s/^DEP_FILES = //
+      :loop
+       s/\\\\$//
+       p
+       n
+       /\\\\$/ b loop
+      p
+    }
+    /^DEP_FILES = / s/^DEP_FILES = //p' < "$mf" | \
+       sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do
+    test -f "$dirpart/$file" && continue
+    echo "creating $dirpart/$file"
+    echo '# dummy' > "$dirpart/$file"
+  done
+done
+], [AMDEP="$AMDEP"])])
 
index d31cdd754f526656adde96d0741710ee7ebc6b55..29b396cdde86c029c66f410a202ab20231509639 100644 (file)
@@ -1,5 +1,5 @@
+dnl This file is part of Autoconf.                       -*- Autoconf -*-
 dnl Map old names of Autoconf macros to new regularized names.
-dnl This file is part of Autoconf.
 dnl Copyright (C) 1994 Free Software Foundation, Inc.
 dnl
 dnl This program is free software; you can redistribute it and/or modify
index 57192878ba6d0ec5ea5717ed3164f0ae590648c5..cfd7ffbe101c4fee8299f32eb0314b5c6a207d97 100644 (file)
@@ -1,5 +1,5 @@
+dnl This file is part of Autoconf.                       -*- Autoconf -*-
 dnl Macros that test for specific features.
-dnl This file is part of Autoconf.
 dnl Copyright (C) 1992, 93, 94, 95, 96, 98, 1999 Free Software Foundation, Inc.
 dnl
 dnl This program is free software; you can redistribute it and/or modify
index dde59ab380f2a62015cbaa063284e08374fddc1c..2e6e937104ba3e05b1ecad2fe2a43599de52404c 100644 (file)
@@ -1,6 +1,6 @@
+dnl This file is part of Autoconf.                       -*- Autoconf -*-
 dnl Driver that loads the Autoconf macro files.
 dnl Requires GNU m4.
-dnl This file is part of Autoconf.
 dnl Copyright (C) 1994 Free Software Foundation, Inc.
 dnl
 dnl This program is free software; you can redistribute it and/or modify
index e005d6d249e08980958abf7616452cef180207de..9b1f7f262d826b0b6e2d5b12b443a3d5a15467ee 100644 (file)
@@ -1,5 +1,5 @@
+dnl This file is part of Autoconf.                       -*- Autoconf -*-
 dnl Driver and redefinitions of some Autoconf macros for autoheader.
-dnl This file is part of Autoconf.
 dnl Copyright (C) 1994, 1995, 1999 Free Software Foundation, Inc.
 dnl
 dnl This program is free software; you can redistribute it and/or modify
index e18aac38acf9a1353f5f29082b636d320c8664d8..776bf09756c709c8b28eb1f0740073b9307a1c94 100755 (executable)
--- a/configure
+++ b/configure
@@ -1,16 +1,20 @@
 #! /bin/sh
-
 # Guess values for system-dependent variables and create Makefiles.
-# Generated automatically using autoconf version 2.13 
-# Copyright (C) 1992, 93, 94, 95, 96 Free Software Foundation, Inc.
+# Generated automatically using Autoconf version 2.14.1 
+# Copyright (C) 1992, 93, 94, 95, 96, 98, 1999 Free Software Foundation, Inc.
 #
 # This configure script is free software; the Free Software Foundation
 # gives unlimited permission to copy, distribute and modify it.
 
 # Defaults:
-ac_help=
+ac_arg_with_help=
+ac_arg_enable_help=
+ac_arg_var_help=
 ac_default_prefix=/usr/local
 # Any additions from configure.in:
+ac_arg_enable_help="$ac_arg_enable_help
+  --disable-dependency-tracking Speeds up one-time builds
+  --enable-dependency-tracking  Do not reject slow dependency extractors"
 
 # Initialize some variables set by options.
 # The variables have the same names as the options, with
@@ -52,6 +56,9 @@ MFLAGS= MAKEFLAGS=
 SHELL=${CONFIG_SHELL-/bin/sh}
 # Maximum number of lines to put in a shell here document.
 ac_max_here_lines=12
+# Sed expression to map a string onto a valid sh and CPP variable names.
+ac_tr_sh='sed -e y%*+%pp%;s%[^a-zA-Z0-9_]%_%g'
+ac_tr_cpp='sed -e y%*abcdefghijklmnopqrstuvwxyz%PABCDEFGHIJKLMNOPQRSTUVWXYZ%;s%[^A-Z0-9_]%_%g'
 
 ac_prev=
 for ac_option
@@ -97,23 +104,23 @@ do
     datadir="$ac_optarg" ;;
 
   -disable-* | --disable-*)
-    ac_feature=`echo $ac_option|sed -e 's/-*disable-//'`
+    ac_feature=`echo "$ac_option"|sed -e 's/-*disable-//'`
     # Reject names that are not valid shell variable names.
-    if test -n "`echo $ac_feature| sed 's/[-a-zA-Z0-9_]//g'`"; then
+    if test -n "`echo "$ac_feature"| sed 's/[-a-zA-Z0-9_]//g'`"; then
       { echo "configure: error: $ac_feature: invalid feature name" 1>&2; exit 1; }
     fi
     ac_feature=`echo $ac_feature| sed 's/-/_/g'`
     eval "enable_${ac_feature}=no" ;;
 
   -enable-* | --enable-*)
-    ac_feature=`echo $ac_option|sed -e 's/-*enable-//' -e 's/=.*//'`
+    ac_feature=`echo "$ac_option"|sed -e 's/-*enable-//' -e 's/=.*//'`
     # Reject names that are not valid shell variable names.
-    if test -n "`echo $ac_feature| sed 's/[-_a-zA-Z0-9]//g'`"; then
+    if test -n "`echo "$ac_feature"| sed 's/[-_a-zA-Z0-9]//g'`"; then
       { echo "configure: error: $ac_feature: invalid feature name" 1>&2; exit 1; }
     fi
     ac_feature=`echo $ac_feature| sed 's/-/_/g'`
     case "$ac_option" in
-      *=*) ;;
+      *=*) ac_optarg=`echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"`;;
       *) ac_optarg=yes ;;
     esac
     eval "enable_${ac_feature}='$ac_optarg'" ;;
@@ -134,15 +141,24 @@ do
   -help | --help | --hel | --he)
     # Omit some internal or obsolete options to make the list less imposing.
     # This message is too long to be a string in the A/UX 3.1 sh.
-    cat << EOF
-Usage: configure [options] [host]
-Options: [defaults in brackets after descriptions]
+    cat << \EOF
+`configure' configures software source code packages to adapt to many kinds
+of systems.
+
+Usage: configure [OPTION]... [VAR=VALUE]... [HOST]
+
+To safely assign special values to environment variables (e.g., CC,
+CFLAGS...), give to `configure' the definition as VAR=VALUE.
+
+Defaults for the options are specified in brackets.
+
 Configuration:
   --cache-file=FILE       cache test results in FILE
   --help                  print this message
   --no-create             do not create output files
   --quiet, --silent       do not print \`checking...' messages
   --version               print the version of autoconf that created configure
+
 Directory and file names:
   --prefix=PREFIX         install architecture-independent files in PREFIX
                           [$ac_default_prefix]
@@ -163,16 +179,20 @@ Directory and file names:
   --infodir=DIR           info documentation in DIR [PREFIX/info]
   --mandir=DIR            man documentation in DIR [PREFIX/man]
   --srcdir=DIR            find the sources in DIR [configure dir or ..]
+
+Program names:
   --program-prefix=PREFIX prepend PREFIX to installed program names
   --program-suffix=SUFFIX append SUFFIX to installed program names
   --program-transform-name=PROGRAM
                           run sed PROGRAM on installed program names
+
 EOF
-    cat << EOF
+    cat << \EOF
 Host type:
   --build=BUILD           configure for building on BUILD [BUILD=HOST]
   --host=HOST             configure for HOST [guessed]
   --target=TARGET         configure for TARGET [TARGET=HOST]
+
 Features and packages:
   --disable-FEATURE       do not include FEATURE (same as --enable-FEATURE=no)
   --enable-FEATURE[=ARG]  include FEATURE [ARG=yes]
@@ -181,9 +201,12 @@ Features and packages:
   --x-includes=DIR        X include files are in DIR
   --x-libraries=DIR       X library files are in DIR
 EOF
-    if test -n "$ac_help"; then
-      echo "--enable and --with options recognized:$ac_help"
-    fi
+    test -n "$ac_arg_enable_help" && echo "
+--enable options recognized:$ac_arg_enable_help"
+    test -n "$ac_arg_with_help" && echo "
+--with options recognized:$ac_arg_with_help"
+    test -n "$ac_arg_var_help" && echo "
+Some of the influent environment variables:$ac_arg_var_help"
     exit 0 ;;
 
   -host | --host | --hos | --ho)
@@ -333,26 +356,26 @@ EOF
     verbose=yes ;;
 
   -version | --version | --versio | --versi | --vers)
-    echo "configure generated by autoconf version 2.13"
+    echo "configure generated by autoconf version 2.14.1"
     exit 0 ;;
 
   -with-* | --with-*)
-    ac_package=`echo $ac_option|sed -e 's/-*with-//' -e 's/=.*//'`
+    ac_package=`echo "$ac_option"|sed -e 's/-*with-//' -e 's/=.*//'`
     # Reject names that are not valid shell variable names.
-    if test -n "`echo $ac_package| sed 's/[-_a-zA-Z0-9]//g'`"; then
+    if test -n "`echo "$ac_package"| sed 's/[-_a-zA-Z0-9]//g'`"; then
       { echo "configure: error: $ac_package: invalid package name" 1>&2; exit 1; }
     fi
     ac_package=`echo $ac_package| sed 's/-/_/g'`
     case "$ac_option" in
-      *=*) ;;
+      *=*) ac_optarg=`echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"`;;
       *) ac_optarg=yes ;;
     esac
     eval "with_${ac_package}='$ac_optarg'" ;;
 
   -without-* | --without-*)
-    ac_package=`echo $ac_option|sed -e 's/-*without-//'`
+    ac_package=`echo "$ac_option"|sed -e 's/-*without-//'`
     # Reject names that are not valid shell variable names.
-    if test -n "`echo $ac_package| sed 's/[-a-zA-Z0-9_]//g'`"; then
+    if test -n "`echo "$ac_package"| sed 's/[-a-zA-Z0-9_]//g'`"; then
       { echo "configure: error: $ac_package: invalid package name" 1>&2; exit 1; }
     fi
     ac_package=`echo $ac_package| sed 's/-/_/g'`
@@ -379,8 +402,17 @@ EOF
   -*) { echo "configure: error: $ac_option: invalid option; use --help to show usage" 1>&2; exit 1; }
     ;;
 
+  *=*)
+    ac_envvar=`echo $ac_option|sed -e 's/=.*//'`
+    # Reject names that are not valid shell variable names.
+    if test -n "`echo $ac_envvar| sed 's/[_a-zA-Z0-9]//g'`"; then
+      { echo "configure: error: $ac_envvar: invalid variable name" 1>&2; exit 1; }
+    fi
+    eval "${ac_envvar}='$ac_optarg'"
+    export $ac_envvar ;;
+
   *)
-    if test -n "`echo $ac_option| sed 's/[-a-z0-9.]//g'`"; then
+    if test -n "`echo "$ac_option"| sed 's/[-a-z0-9.]//g'`"; then
       echo "configure: warning: $ac_option: invalid host type" 1>&2
     fi
     if test "x$nonopt" != xNONE; then
@@ -393,7 +425,7 @@ EOF
 done
 
 if test -n "$ac_prev"; then
-  { echo "configure: error: missing argument to --`echo $ac_prev | sed 's/_/-/g'`" 1>&2; exit 1; }
+  { echo "configure: error: missing argument to --\`echo $ac_prev | sed 's/_/-/g'\`" 1>&2; exit 1; }
 fi
 
 trap 'rm -fr conftest* confdefs* core core.* *.core $ac_clean_files; exit 1' 1 2 15
@@ -419,7 +451,7 @@ running configure, to aid debugging if configure makes a mistake.
 " 1>&5
 
 # Strip out --no-create and --no-recursion so they do not pile up.
-# Also quote any args containing shell metacharacters.
+# Also quote any args containing shell meta-characters.
 ac_configure_args=
 for ac_arg
 do
@@ -429,6 +461,7 @@ do
   -no-recursion | --no-recursion | --no-recursio | --no-recursi \
   | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r) ;;
   *" "*|*"     "*|*[\[\]\~\#\$\^\&\*\(\)\{\}\\\|\;\<\>\?]*)
+  ac_arg=`echo "$ac_arg"|sed "s/'/'\\\\\\\\''/g"`
   ac_configure_args="$ac_configure_args '$ac_arg'" ;;
   *) ac_configure_args="$ac_configure_args $ac_arg" ;;
   esac
@@ -458,7 +491,7 @@ if test -z "$srcdir"; then
   ac_srcdir_defaulted=yes
   # Try the directory containing this script, then its parent.
   ac_prog=$0
-  ac_confdir=`echo $ac_prog|sed 's%/[^/][^/]*$%%'`
+  ac_confdir=`echo "$ac_prog"|sed 's%/[^/][^/]*$%%'`
   test "x$ac_confdir" = "x$ac_prog" && ac_confdir=.
   srcdir=$ac_confdir
   if test ! -r $srcdir/$ac_unique_file; then
@@ -469,9 +502,9 @@ else
 fi
 if test ! -r $srcdir/$ac_unique_file; then
   if test "$ac_srcdir_defaulted" = yes; then
-    { echo "configure: error: can not find sources in $ac_confdir or .." 1>&2; exit 1; }
+    { echo "configure: error: cannot find sources in $ac_confdir or .." 1>&2; exit 1; }
   else
-    { echo "configure: error: can not find sources in $srcdir" 1>&2; exit 1; }
+    { echo "configure: error: cannot find sources in $srcdir" 1>&2; exit 1; }
   fi
 fi
 srcdir=`echo "${srcdir}" | sed 's%\([^/]\)/*$%\1%'`
@@ -493,7 +526,7 @@ done
 
 if test -r "$cache_file"; then
   echo "loading cache $cache_file"
-  . $cache_file
+      test -f "$cache_file" && . $cache_file
 else
   echo "creating cache $cache_file"
   > $cache_file
@@ -531,14 +564,18 @@ for ac_dir in $srcdir $srcdir/.. $srcdir/../..; do
     ac_aux_dir=$ac_dir
     ac_install_sh="$ac_aux_dir/install.sh -c"
     break
+  elif test -f $ac_dir/shtool; then
+    ac_aux_dir=$ac_dir
+    ac_install_sh="$ac_aux_dir/shtool install -c"
+    break
   fi
 done
 if test -z "$ac_aux_dir"; then
-  { echo "configure: error: can not find install-sh or install.sh in $srcdir $srcdir/.. $srcdir/../.." 1>&2; exit 1; }
+  { echo "configure: error: cannot find install-sh or install.sh in $srcdir $srcdir/.. $srcdir/../.." 1>&2; exit 1; }
 fi
-ac_config_guess=$ac_aux_dir/config.guess
-ac_config_sub=$ac_aux_dir/config.sub
-ac_configure=$ac_aux_dir/configure # This should be Cygnus configure.
+ac_config_guess="$SHELL $ac_aux_dir/config.guess"
+ac_config_sub="$SHELL $ac_aux_dir/config.sub"
+ac_configure="$SHELL $ac_aux_dir/configure" # This should be Cygnus configure.
 
 # Find a good install program.  We prefer a C program (faster),
 # so one script is as good as another.  But avoid the broken or
@@ -551,10 +588,10 @@ ac_configure=$ac_aux_dir/configure # This should be Cygnus configure.
 # AFS /usr/afsws/bin/install, which mishandles nonexistent args
 # SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff"
 # ./install, which can be erroneously created by make from ./install.sh.
-echo $ac_n "checking for a BSD compatible install""... $ac_c" 1>&6
-echo "configure:556: checking for a BSD compatible install" >&5
+echo $ac_n "checking for a BSD compatible install... $ac_c" 1>&6
+echo "configure:593: checking for a BSD compatible install" 1>&5
 if test -z "$INSTALL"; then
-if eval "test \"`echo '$''{'ac_cv_path_install'+set}'`\" = set"; then
+if test "${ac_cv_path_install+set}" = set; then
   echo $ac_n "(cached) $ac_c" 1>&6
 else
     IFS="${IFS=        }"; ac_save_IFS="$IFS"; IFS=":"
@@ -572,6 +609,10 @@ else
             grep dspmsg $ac_dir/$ac_prog >/dev/null 2>&1; then
            # AIX install.  It has an incompatible calling convention.
            :
+         elif test $ac_prog = install &&
+           grep pwplus $ac_dir/$ac_prog >/dev/null 2>&1; then
+           # program-specific install script used by HP pwplus--don't use.
+           :
          else
            ac_cv_path_install="$ac_dir/$ac_prog -c"
            break 2
@@ -600,12 +641,12 @@ echo "$ac_t""$INSTALL" 1>&6
 # It thinks the first close brace ends the variable substitution.
 test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}'
 
-test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL_PROGRAM}'
+test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}'
 
 test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644'
 
-echo $ac_n "checking whether build environment is sane""... $ac_c" 1>&6
-echo "configure:609: checking whether build environment is sane" >&5
+echo $ac_n "checking whether build environment is sane... $ac_c" 1>&6
+echo "configure:650: checking whether build environment is sane" 1>&5
 # Just in case
 sleep 1
 echo timestamp > conftestfile
@@ -653,18 +694,62 @@ EOF_SED
   rm -f conftestsed
 fi
 test "$program_prefix" != NONE &&
-  program_transform_name="s,^,${program_prefix},; $program_transform_name"
+  program_transform_name="s,^,${program_prefix},;$program_transform_name"
 # Use a double $ so make ignores it.
 test "$program_suffix" != NONE &&
-  program_transform_name="s,\$\$,${program_suffix},; $program_transform_name"
+  program_transform_name="s,\$\$,${program_suffix},;$program_transform_name"
 
 # sed with no file args requires a program.
 test "$program_transform_name" = "" && program_transform_name="s,x,x,"
 
-echo $ac_n "checking whether ${MAKE-make} sets \${MAKE}""... $ac_c" 1>&6
-echo "configure:666: checking whether ${MAKE-make} sets \${MAKE}" >&5
+
+test x"${MISSING+set}" = xset || \
+  MISSING="\${SHELL} `CDPATH=: && cd $ac_aux_dir && pwd`/missing"
+if { ac_try='$MISSING --run : >/dev/null'; { (eval echo configure:709: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } then
+  am_missing_run="$MISSING --run "
+else
+  am_missing_run=
+  echo "configure: warning: \`missing' script is too old or missing" 1>&2
+fi
+
+for ac_prog in mawk gawk nawk awk
+do
+# Extract the first word of "$ac_prog", so it can be a program name with args.
+set dummy $ac_prog; ac_word=$2
+echo $ac_n "checking for $ac_word... $ac_c" 1>&6
+echo "configure:721: checking for $ac_word" 1>&5
+if test "${ac_cv_prog_AWK+set}" = set; then
+  echo $ac_n "(cached) $ac_c" 1>&6
+else
+  if test -n "$AWK"; then
+  ac_cv_prog_AWK="$AWK" # Let the user override the test.
+else
+  IFS="${IFS=  }"; ac_save_ifs="$IFS"; IFS=":"
+  ac_dummy="$PATH"
+  for ac_dir in $ac_dummy; do
+    test -z "$ac_dir" && ac_dir=.
+    if test -f $ac_dir/$ac_word; then
+      ac_cv_prog_AWK="$ac_prog"
+      break
+    fi
+  done
+  IFS="$ac_save_ifs"
+fi
+fi
+AWK="$ac_cv_prog_AWK"
+if test -n "$AWK"; then
+  echo "$ac_t""$AWK" 1>&6
+else
+  echo "$ac_t""no" 1>&6
+fi
+
+test -n "$AWK" && break
+done
+
+echo $ac_n "checking whether ${MAKE-make} sets \${MAKE}... $ac_c" 1>&6
+echo "configure:751: checking whether ${MAKE-make} sets \${MAKE}" 1>&5
 set dummy ${MAKE-make}; ac_make=`echo "$2" | sed 'y%./+-%__p_%'`
-if eval "test \"`echo '$''{'ac_cv_prog_make_${ac_make}_set'+set}'`\" = set"; then
+if eval "test \"\${ac_cv_prog_make_${ac_make}_set+set}\" = set"; then
   echo $ac_n "(cached) $ac_c" 1>&6
 else
   cat > conftestmake <<\EOF
@@ -689,11 +774,48 @@ else
 fi
 
 
+# Check whether --enable-dependency-tracking or --disable-dependency-tracking was given.
+if test "${enable_dependency_tracking+set}" = set; then
+  enableval="$enable_dependency_tracking"
+  :
+fi
+
+if test "x$enable_dependency_tracking" = xno; then
+  AMDEP="#"
+else
+  am_depcomp="$ac_aux_dir/depcomp"
+  if test ! -f "$am_depcomp"; then
+    AMDEP="#"
+  else
+    AMDEP=
+  fi
+fi
+
+if test -z "$AMDEP"; then
+  AMDEPBACKSLASH='\'
+else
+  AMDEPBACKSLASH=
+fi
+
+
+
+
+
+if test -d .deps || mkdir .deps 2> /dev/null || test -d .deps; then
+  DEPDIR=.deps
+else
+  DEPDIR=_deps
+fi
+
+
+
+
 PACKAGE=autoconf
 
 VERSION=2.14.1
 
-if test "`cd $srcdir && pwd`" != "`pwd`" && test -f $srcdir/config.status; then
+if test "`CDPATH=: && cd $srcdir && pwd`" != "`pwd`" &&
+   test -f $srcdir/config.status; then
   { echo "configure: error: source directory already configured; run "make distclean" there first" 1>&2; exit 1; }
 fi
 cat >> confdefs.h <<EOF
@@ -706,96 +828,66 @@ EOF
 
 
 
-missing_dir=`cd $ac_aux_dir && pwd`
-echo $ac_n "checking for working aclocal""... $ac_c" 1>&6
-echo "configure:712: checking for working aclocal" >&5
-# Run test in a subshell; some versions of sh will print an error if
-# an executable is not found, even if stderr is redirected.
-# Redirect stdin to placate older versions of autoconf.  Sigh.
-if (aclocal --version) < /dev/null > /dev/null 2>&1; then
-   ACLOCAL=aclocal
-   echo "$ac_t""found" 1>&6
-else
-   ACLOCAL="$missing_dir/missing aclocal"
-   echo "$ac_t""missing" 1>&6
-fi
 
-echo $ac_n "checking for working autoconf""... $ac_c" 1>&6
-echo "configure:725: checking for working autoconf" >&5
-# Run test in a subshell; some versions of sh will print an error if
-# an executable is not found, even if stderr is redirected.
-# Redirect stdin to placate older versions of autoconf.  Sigh.
-if (autoconf --version) < /dev/null > /dev/null 2>&1; then
-   AUTOCONF=autoconf
-   echo "$ac_t""found" 1>&6
-else
-   AUTOCONF="$missing_dir/missing autoconf"
-   echo "$ac_t""missing" 1>&6
-fi
 
-echo $ac_n "checking for working automake""... $ac_c" 1>&6
-echo "configure:738: checking for working automake" >&5
-# Run test in a subshell; some versions of sh will print an error if
-# an executable is not found, even if stderr is redirected.
-# Redirect stdin to placate older versions of autoconf.  Sigh.
-if (automake --version) < /dev/null > /dev/null 2>&1; then
-   AUTOMAKE=automake
-   echo "$ac_t""found" 1>&6
-else
-   AUTOMAKE="$missing_dir/missing automake"
-   echo "$ac_t""missing" 1>&6
-fi
+ACLOCAL=${ACLOCAL-"${am_missing_run}aclocal"}
 
-echo $ac_n "checking for working autoheader""... $ac_c" 1>&6
-echo "configure:751: checking for working autoheader" >&5
-# Run test in a subshell; some versions of sh will print an error if
-# an executable is not found, even if stderr is redirected.
-# Redirect stdin to placate older versions of autoconf.  Sigh.
-if (autoheader --version) < /dev/null > /dev/null 2>&1; then
-   AUTOHEADER=autoheader
-   echo "$ac_t""found" 1>&6
-else
-   AUTOHEADER="$missing_dir/missing autoheader"
-   echo "$ac_t""missing" 1>&6
-fi
 
-echo $ac_n "checking for working makeinfo""... $ac_c" 1>&6
-echo "configure:764: checking for working makeinfo" >&5
-# Run test in a subshell; some versions of sh will print an error if
-# an executable is not found, even if stderr is redirected.
-# Redirect stdin to placate older versions of autoconf.  Sigh.
-if (makeinfo --version) < /dev/null > /dev/null 2>&1; then
-   MAKEINFO=makeinfo
-   echo "$ac_t""found" 1>&6
-else
-   MAKEINFO="$missing_dir/missing makeinfo"
-   echo "$ac_t""missing" 1>&6
+
+AUTOCONF=${AUTOCONF-"${am_missing_run}autoconf"}
+
+
+
+AUTOMAKE=${AUTOMAKE-"${am_missing_run}automake"}
+
+
+
+AUTOHEADER=${AUTOHEADER-"${am_missing_run}autoheader"}
+
+
+
+MAKEINFO=${MAKEINFO-"${am_missing_run}makeinfo"}
+
+
+
+AMTAR=${AMTAR-"${am_missing_run}tar"}
+
+
+
+if test -z "$install_sh"; then
+   install_sh="${am_missing_run}install-sh"
+   test -f "$install_sh" || install_sh="${am_missing_run}install.sh"
 fi
 
 
 
+
+
+
+   
+
+   
+
+
 for ac_prog in gm4 gnum4 m4
 do
 # Extract the first word of "$ac_prog", so it can be a program name with args.
 set dummy $ac_prog; ac_word=$2
-echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
-echo "configure:783: checking for $ac_word" >&5
-if eval "test \"`echo '$''{'ac_cv_path_M4'+set}'`\" = set"; then
+echo $ac_n "checking for $ac_word... $ac_c" 1>&6
+echo "configure:878: checking for $ac_word" 1>&5
+if test "${ac_cv_path_M4+set}" = set; then
   echo $ac_n "(cached) $ac_c" 1>&6
 else
   case "$M4" in
-  /*)
+  /* | ?:/*)
   ac_cv_path_M4="$M4" # Let the user override the test with a path.
   ;;
-  ?:/*)                         
-  ac_cv_path_M4="$M4" # Let the user override the test with a dos path.
-  ;;
   *)
   IFS="${IFS=  }"; ac_save_ifs="$IFS"; IFS=":"
   ac_dummy="$PATH"
-  for ac_dir in $ac_dummy; do 
+  for ac_dir in $ac_dummy; do
     test -z "$ac_dir" && ac_dir=.
-    if test -f $ac_dir/$ac_word; then
+    if test -f "$ac_dir/$ac_word"; then
       ac_cv_path_M4="$ac_dir/$ac_word"
       break
     fi
@@ -815,9 +907,9 @@ test -n "$M4" && break
 done
 test -n "$M4" || M4="m4"
 
-echo $ac_n "checking whether we are using GNU m4""... $ac_c" 1>&6
-echo "configure:820: checking whether we are using GNU m4" >&5
-if eval "test \"`echo '$''{'acac_cv_gnu_m4'+set}'`\" = set"; then
+echo $ac_n "checking whether we are using GNU m4... $ac_c" 1>&6
+echo "configure:912: checking whether we are using GNU m4" 1>&5
+if test "${acac_cv_gnu_m4+set}" = set; then
   echo $ac_n "(cached) $ac_c" 1>&6
 else
   acac_cv_gnu_m4=no
@@ -827,7 +919,6 @@ if test x"$M4" != x; then
   esac
 fi
 fi
-
 echo "$ac_t""$acac_cv_gnu_m4" 1>&6
 if test x"$acac_cv_gnu_m4" != xyes; then
   { echo "configure: error: GNU m4 is required" 1>&2; exit 1; }
@@ -836,9 +927,9 @@ for ac_prog in mawk gawk nawk awk
 do
 # Extract the first word of "$ac_prog", so it can be a program name with args.
 set dummy $ac_prog; ac_word=$2
-echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
-echo "configure:841: checking for $ac_word" >&5
-if eval "test \"`echo '$''{'ac_cv_prog_AWK'+set}'`\" = set"; then
+echo $ac_n "checking for $ac_word... $ac_c" 1>&6
+echo "configure:932: checking for $ac_word" 1>&5
+if test "${ac_cv_prog_AWK+set}" = set; then
   echo $ac_n "(cached) $ac_c" 1>&6
 else
   if test -n "$AWK"; then
@@ -869,24 +960,21 @@ done
 
 # Extract the first word of "perl", so it can be a program name with args.
 set dummy perl; ac_word=$2
-echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
-echo "configure:874: checking for $ac_word" >&5
-if eval "test \"`echo '$''{'ac_cv_path_PERL'+set}'`\" = set"; then
+echo $ac_n "checking for $ac_word... $ac_c" 1>&6
+echo "configure:965: checking for $ac_word" 1>&5
+if test "${ac_cv_path_PERL+set}" = set; then
   echo $ac_n "(cached) $ac_c" 1>&6
 else
   case "$PERL" in
-  /*)
+  /* | ?:/*)
   ac_cv_path_PERL="$PERL" # Let the user override the test with a path.
   ;;
-  ?:/*)                         
-  ac_cv_path_PERL="$PERL" # Let the user override the test with a dos path.
-  ;;
   *)
   IFS="${IFS=  }"; ac_save_ifs="$IFS"; IFS=":"
   ac_dummy="$PATH"
-  for ac_dir in $ac_dummy; do 
+  for ac_dir in $ac_dummy; do
     test -z "$ac_dir" && ac_dir=.
-    if test -f $ac_dir/$ac_word; then
+    if test -f "$ac_dir/$ac_word"; then
       ac_cv_path_PERL="$ac_dir/$ac_word"
       break
     fi
@@ -920,10 +1008,10 @@ fi
 # AFS /usr/afsws/bin/install, which mishandles nonexistent args
 # SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff"
 # ./install, which can be erroneously created by make from ./install.sh.
-echo $ac_n "checking for a BSD compatible install""... $ac_c" 1>&6
-echo "configure:925: checking for a BSD compatible install" >&5
+echo $ac_n "checking for a BSD compatible install... $ac_c" 1>&6
+echo "configure:1013: checking for a BSD compatible install" 1>&5
 if test -z "$INSTALL"; then
-if eval "test \"`echo '$''{'ac_cv_path_install'+set}'`\" = set"; then
+if test "${ac_cv_path_install+set}" = set; then
   echo $ac_n "(cached) $ac_c" 1>&6
 else
     IFS="${IFS=        }"; ac_save_IFS="$IFS"; IFS=":"
@@ -941,6 +1029,10 @@ else
             grep dspmsg $ac_dir/$ac_prog >/dev/null 2>&1; then
            # AIX install.  It has an incompatible calling convention.
            :
+         elif test $ac_prog = install &&
+           grep pwplus $ac_dir/$ac_prog >/dev/null 2>&1; then
+           # program-specific install script used by HP pwplus--don't use.
+           :
          else
            ac_cv_path_install="$ac_dir/$ac_prog -c"
            break 2
@@ -969,7 +1061,7 @@ echo "$ac_t""$INSTALL" 1>&6
 # It thinks the first close brace ends the variable substitution.
 test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}'
 
-test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL_PROGRAM}'
+test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}'
 
 test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644'
 
@@ -1045,15 +1137,29 @@ trap 'rm -f $CONFIG_STATUS conftest*; exit 1' 1 2 15
 # Transform confdefs.h into DEFS.
 # Protect against shell expansion while executing Makefile rules.
 # Protect against Makefile macro expansion.
-cat > conftest.defs <<\EOF
-s%#define \([A-Za-z_][A-Za-z0-9_]*\) *\(.*\)%-D\1=\2%g
+#
+# If the first sed substitution is executed (which looks for macros that
+# take arguments), then we branch to the cleanup section.  Otherwise,
+# look for a macro that doesn't take arguments.
+cat > $ac_cs_root.defs <<\EOF
+s%^[   ]*#[    ]*define[       ][      ]*\([^  (][^    (]*([^)]*)\)[   ]*\(.*\)%-D\1=\2%g
+t cleanup
+s%^[   ]*#[    ]*define[       ][      ]*\([^  ][^     ]*\)[   ]*\(.*\)%-D\1=\2%g
+: cleanup
 s%[    `~#$^&*(){}\\|;'"<>?]%\\&%g
 s%\[%\\&%g
 s%\]%\\&%g
 s%\$%$$%g
 EOF
-DEFS=`sed -f conftest.defs confdefs.h | tr '\012' ' '`
-rm -f conftest.defs
+# We use echo to avoid assuming a particular line-breaking character.
+# The extra dot is to prevent the shell from consuming trailing
+# line-breaks from the sub-command output.  A line-break within
+# single-quotes doesn't work because, if this script is created in a
+# platform that uses two characters for line-breaks (e.g., DOS), tr
+# would break.
+ac_LF_and_DOT="`echo; echo .`"
+DEFS=`sed -f $ac_cs_root.defs confdefs.h | tr "$ac_LF_and_DOT" ' .'`
+rm -f $ac_cs_root.defs
 
 
 # Without the "./", some shells look in PATH for config.status.
@@ -1073,116 +1179,195 @@ cat > $CONFIG_STATUS <<EOF
 # Compiler output produced by configure, useful for debugging
 # configure, is in ./config.log if it exists.
 
-ac_cs_usage="Usage: $CONFIG_STATUS [--recheck] [--version] [--help]"
+# Files that config.status was made for.
+config_files="\\
+    acversion.m4 Makefile testsuite/Makefile"
+config_links="\\
+    :"
+
+ac_cs_usage="\\
+\\\`$CONFIG_STATUS' instantiates files from templates according to the
+current configuration.
+
+Usage: $CONFIG_STATUS [OPTIONS] FILE...
+
+  --recheck    Update $CONFIG_STATUS by reconfiguring in the same conditions
+  --version    Print the version of Autoconf and exit
+  --help       Display this help and exit
+
+Files to instantiate:
+  Configuration files:
+\$config_files
+  Links to install:
+\$config_links
+
+Report bugs to <bug-autoconf@gnu.org>."
+
+ac_cs_version="\\
+$CONFIG_STATUS generated by autoconf version 2.14.1.
+Configured on host `(hostname || uname -n) 2>/dev/null | sed 1q` by running
+  $0 $ac_configure_args"
+
+# Root of the tmp file names.  Use pid to allow concurrent executions.
+ac_cs_root=cs\$\$
+ac_given_srcdir=$srcdir
+ac_given_INSTALL="$INSTALL"
+
 for ac_option
 do
   case "\$ac_option" in
   -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r)
-    echo "running \${CONFIG_SHELL-/bin/sh} $0 $ac_configure_args --no-create --no-recursion"
+    echo "running \${CONFIG_SHELL-/bin/sh} $0 `echo "$ac_configure_args" | sed 's/[\\"\`\$]/\\\\&/g'` --no-create --no-recursion"
     exec \${CONFIG_SHELL-/bin/sh} $0 $ac_configure_args --no-create --no-recursion ;;
   -version | --version | --versio | --versi | --vers | --ver | --ve | --v)
-    echo "$CONFIG_STATUS generated by autoconf version 2.13"
-    exit 0 ;;
+    echo "\$ac_cs_version"; exit 0 ;;
   -help | --help | --hel | --he | --h)
     echo "\$ac_cs_usage"; exit 0 ;;
-  *) echo "\$ac_cs_usage"; exit 1 ;;
+  *) # Find out the files to process.
+    for ac_file in \$config_files
+    do
+      case \$ac_file in
+        \$ac_option | \$ac_option:* )
+          CONFIG_FILES="\$CONFIG_FILES \$ac_file"
+          ac_option=
+          break ;;
+      esac
+    done
+    test -z "\$ac_option" && continue
+    for ac_file in \$config_headers
+    do
+      case \$ac_file in
+        \$ac_option | \$ac_option:* )
+          CONFIG_HEADERS="\$CONFIG_HEADERS \$ac_file"
+          ac_option=
+          break ;;
+      esac
+    done
+    test -z "\$ac_option" && continue
+    for ac_file in \$config_links
+    do
+      case \$ac_file in
+        \$ac_option | \$ac_option:* )
+          CONFIG_LINKS="\$CONFIG_LINKS \$ac_file"
+          ac_option=
+          break ;;
+      esac
+    done
+    test -z "\$ac_option" && continue
+    echo "$CONFIG_STATUS: invalid argument: \$ac_option"; exit 1
+   ;;
   esac
 done
 
-ac_given_srcdir=$srcdir
-ac_given_INSTALL="$INSTALL"
-
-trap 'rm -fr `echo "acversion.m4 Makefile testsuite/Makefile" | sed "s/:[^ ]*//g"` conftest*; exit 1' 1 2 15
 EOF
+
 cat >> $CONFIG_STATUS <<EOF
+# If there were arguments, don't assign a default value.
+if test \$# = 0; then
+  : \${CONFIG_FILES="\$config_files"}
+  : \${CONFIG_LINKS="\$config_links"}
+fi
 
-# Protect against being on the right side of a sed subst in config.status.
-sed 's/%@/@@/; s/@%/@@/; s/%g\$/@g/; /@g\$/s/[\\\\&%]/\\\\&/g;
- s/@@/%@/; s/@@/@%/; s/@g\$/%g/' > conftest.subs <<\\CEOF
-$ac_vpsub
-$extrasub
-s%@SHELL@%$SHELL%g
-s%@CFLAGS@%$CFLAGS%g
-s%@CPPFLAGS@%$CPPFLAGS%g
-s%@CXXFLAGS@%$CXXFLAGS%g
-s%@FFLAGS@%$FFLAGS%g
-s%@DEFS@%$DEFS%g
-s%@LDFLAGS@%$LDFLAGS%g
-s%@LIBS@%$LIBS%g
-s%@exec_prefix@%$exec_prefix%g
-s%@prefix@%$prefix%g
-s%@program_transform_name@%$program_transform_name%g
-s%@bindir@%$bindir%g
-s%@sbindir@%$sbindir%g
-s%@libexecdir@%$libexecdir%g
-s%@datadir@%$datadir%g
-s%@sysconfdir@%$sysconfdir%g
-s%@sharedstatedir@%$sharedstatedir%g
-s%@localstatedir@%$localstatedir%g
-s%@libdir@%$libdir%g
-s%@includedir@%$includedir%g
-s%@oldincludedir@%$oldincludedir%g
-s%@infodir@%$infodir%g
-s%@mandir@%$mandir%g
-s%@INSTALL_PROGRAM@%$INSTALL_PROGRAM%g
-s%@INSTALL_SCRIPT@%$INSTALL_SCRIPT%g
-s%@INSTALL_DATA@%$INSTALL_DATA%g
-s%@PACKAGE@%$PACKAGE%g
-s%@VERSION@%$VERSION%g
-s%@ACLOCAL@%$ACLOCAL%g
-s%@AUTOCONF@%$AUTOCONF%g
-s%@AUTOMAKE@%$AUTOMAKE%g
-s%@AUTOHEADER@%$AUTOHEADER%g
-s%@MAKEINFO@%$MAKEINFO%g
-s%@SET_MAKE@%$SET_MAKE%g
-s%@M4@%$M4%g
-s%@AWK@%$AWK%g
-s%@PERL@%$PERL%g
-s%@PERLSCRIPTS@%$PERLSCRIPTS%g
-s%@standards_texi@%$standards_texi%g
+# Remove all the CONFIG_FILES, and trap to remove the temp files.
+rm -fr \`echo "\$CONFIG_FILES" | sed "s/:[^ ]*//g"\`
+trap 'rm -fr \$ac_cs_root*; exit 1' 1 2 15
 
+EOF
+
+
+cat >>$CONFIG_STATUS <<EOF
+# Protect against being on the right side of a sed subst in config.status.
+sed 's/%@/@@/; s/@%/@@/; s/%;t t\$/@;t t/; /@;t t\$/s/[\\\\&%]/\\\\&/g;
+ s/@@/%@/; s/@@/@%/; s/@;t t\$/%;t t/' > \$ac_cs_root.subs <<\\CEOF
+s%@SHELL@%$SHELL%;t t
+s%@CFLAGS@%$CFLAGS%;t t
+s%@CPPFLAGS@%$CPPFLAGS%;t t
+s%@CXXFLAGS@%$CXXFLAGS%;t t
+s%@FFLAGS@%$FFLAGS%;t t
+s%@DEFS@%$DEFS%;t t
+s%@LDFLAGS@%$LDFLAGS%;t t
+s%@LIBS@%$LIBS%;t t
+s%@exec_prefix@%$exec_prefix%;t t
+s%@prefix@%$prefix%;t t
+s%@program_transform_name@%$program_transform_name%;t t
+s%@bindir@%$bindir%;t t
+s%@sbindir@%$sbindir%;t t
+s%@libexecdir@%$libexecdir%;t t
+s%@datadir@%$datadir%;t t
+s%@sysconfdir@%$sysconfdir%;t t
+s%@sharedstatedir@%$sharedstatedir%;t t
+s%@localstatedir@%$localstatedir%;t t
+s%@libdir@%$libdir%;t t
+s%@includedir@%$includedir%;t t
+s%@oldincludedir@%$oldincludedir%;t t
+s%@infodir@%$infodir%;t t
+s%@mandir@%$mandir%;t t
+s%@INSTALL_PROGRAM@%$INSTALL_PROGRAM%;t t
+s%@INSTALL_SCRIPT@%$INSTALL_SCRIPT%;t t
+s%@INSTALL_DATA@%$INSTALL_DATA%;t t
+s%@PACKAGE@%$PACKAGE%;t t
+s%@VERSION@%$VERSION%;t t
+s%@ACLOCAL@%$ACLOCAL%;t t
+s%@AUTOCONF@%$AUTOCONF%;t t
+s%@AUTOMAKE@%$AUTOMAKE%;t t
+s%@AUTOHEADER@%$AUTOHEADER%;t t
+s%@MAKEINFO@%$MAKEINFO%;t t
+s%@AMTAR@%$AMTAR%;t t
+s%@install_sh@%$install_sh%;t t
+s%@AWK@%$AWK%;t t
+s%@SET_MAKE@%$SET_MAKE%;t t
+s%@AMDEP@%$AMDEP%;t t
+s%@AMDEPBACKSLASH@%$AMDEPBACKSLASH%;t t
+s%@DEPDIR@%$DEPDIR%;t t
+s%@M4@%$M4%;t t
+s%@PERL@%$PERL%;t t
+s%@PERLSCRIPTS@%$PERLSCRIPTS%;t t
+s%@standards_texi@%$standards_texi%;t t
 CEOF
+
 EOF
 
 cat >> $CONFIG_STATUS <<\EOF
-
 # Split the substitutions into bite-sized pieces for seds with
 # small command number limits, like on Digital OSF/1 and HP-UX.
-ac_max_sed_cmds=90 # Maximum number of lines to put in a sed script.
-ac_file=1 # Number of current file.
+ac_max_sed_lines=48
+ac_sed_frag=1 # Number of current file.
 ac_beg=1 # First line for current file.
-ac_end=$ac_max_sed_cmds # Line after last line for current file.
+ac_end=$ac_max_sed_lines # Line after last line for current file.
 ac_more_lines=:
 ac_sed_cmds=""
 while $ac_more_lines; do
   if test $ac_beg -gt 1; then
-    sed "1,${ac_beg}d; ${ac_end}q" conftest.subs > conftest.s$ac_file
+    sed "1,${ac_beg}d; ${ac_end}q" $ac_cs_root.subs > $ac_cs_root.sfrag
   else
-    sed "${ac_end}q" conftest.subs > conftest.s$ac_file
+    sed "${ac_end}q" $ac_cs_root.subs > $ac_cs_root.sfrag
   fi
-  if test ! -s conftest.s$ac_file; then
+  if test ! -s $ac_cs_root.sfrag; then
     ac_more_lines=false
-    rm -f conftest.s$ac_file
+    rm -f $ac_cs_root.sfrag
   else
+    # The purpose of the label and of the branching condition is to
+    # speed up the sed processing (if there are no `@' at all, there
+    # is no need to browse any of the substitutions).
+    # These are the two extra sed commands mentioned above.
+    (echo ':t
+/@[a-zA-Z_][a-zA-Z_0-9]*@/!b' && cat $ac_cs_root.sfrag) > $ac_cs_root.s$ac_sed_frag
     if test -z "$ac_sed_cmds"; then
-      ac_sed_cmds="sed -f conftest.s$ac_file"
+      ac_sed_cmds="sed -f $ac_cs_root.s$ac_sed_frag"
     else
-      ac_sed_cmds="$ac_sed_cmds | sed -f conftest.s$ac_file"
+      ac_sed_cmds="$ac_sed_cmds | sed -f $ac_cs_root.s$ac_sed_frag"
     fi
-    ac_file=`expr $ac_file + 1`
+    ac_sed_frag=`expr $ac_sed_frag + 1`
     ac_beg=$ac_end
-    ac_end=`expr $ac_end + $ac_max_sed_cmds`
+    ac_end=`expr $ac_end + $ac_max_sed_lines`
   fi
 done
 if test -z "$ac_sed_cmds"; then
   ac_sed_cmds=cat
 fi
-EOF
 
-cat >> $CONFIG_STATUS <<EOF
-
-CONFIG_FILES=\${CONFIG_FILES-"acversion.m4 Makefile testsuite/Makefile"}
 EOF
+
 cat >> $CONFIG_STATUS <<\EOF
 for ac_file in .. $CONFIG_FILES; do if test "x$ac_file" != x..; then
   # Support "outfile[:infile[:infile...]]", defaulting infile="outfile.in".
@@ -1225,22 +1410,73 @@ for ac_file in .. $CONFIG_FILES; do if test "x$ac_file" != x..; then
   rm -f "$ac_file"
   configure_input="Generated automatically from `echo $ac_file_in|sed 's%.*/%%'` by configure."
   case "$ac_file" in
-  *Makefile*) ac_comsub="1i\\
+  *[Mm]akefile*) ac_comsub="1i\\
 # $configure_input" ;;
   *) ac_comsub= ;;
   esac
 
-  ac_file_inputs=`echo $ac_file_in|sed -e "s%^%$ac_given_srcdir/%" -e "s%:% $ac_given_srcdir/%g"`
+# Don't redirect the output to AC_FILE directly: use `mv' so that updating
+# is atomic, and doesn't need trapping.
+  ac_file_inputs=`echo $ac_file_in | sed -e "s%^%$ac_given_srcdir/%" -e "s%:% $ac_given_srcdir/%g"`
+EOF
+cat >>$CONFIG_STATUS <<EOF
   sed -e "$ac_comsub
-s%@configure_input@%$configure_input%g
-s%@srcdir@%$srcdir%g
-s%@top_srcdir@%$top_srcdir%g
-s%@INSTALL@%$INSTALL%g
-" $ac_file_inputs | (eval "$ac_sed_cmds") > $ac_file
+$ac_vpsub
+$extrasub
+EOF
+cat >>$CONFIG_STATUS <<\EOF
+:t
+/@[a-zA-Z_][a-zA-Z_0-9]*@/!b
+s%@configure_input@%$configure_input%;t t
+s%@srcdir@%$srcdir%;t t
+s%@top_srcdir@%$top_srcdir%;t t
+s%@INSTALL@%$INSTALL%;t t
+" $ac_file_inputs | (eval "$ac_sed_cmds") > $ac_cs_root.out
+  mv $ac_cs_root.out $ac_file
 fi; done
-rm -f conftest.s*
+rm -f $ac_cs_root.s*
+EOF
+cat >> $CONFIG_STATUS <<\EOF
+srcdir=$ac_given_srcdir
+
+for ac_file in : $CONFIG_LINKS; do if test "x$ac_file" != x:; then
+  ac_dest=`echo "$ac_file"|sed 's%:.*%%'`
+  ac_source=`echo "$ac_file"|sed 's%[^:]*:%%'`
+
+  echo "linking $srcdir/$ac_source to $ac_dest"
+
+  if test ! -r $srcdir/$ac_source; then
+    { echo "configure: error: $srcdir/$ac_source: File not found" 1>&2; exit 1; }
+  fi
+  rm -f $ac_dest
 
+  # Make relative symlinks.
+  # Remove last slash and all that follows it.  Not all systems have dirname.
+  ac_dest_dir=`echo $ac_dest|sed 's%/[^/][^/]*$%%'`
+  if test "$ac_dest_dir" != "$ac_dest" && test "$ac_dest_dir" != .; then
+    # The dest file is in a subdirectory.
+    test ! -d "$ac_dest_dir" && mkdir "$ac_dest_dir"
+    ac_dest_dir_suffix="/`echo $ac_dest_dir|sed 's%^\./%%'`"
+    # A "../" for each directory in $ac_dest_dir_suffix.
+    ac_dots=`echo $ac_dest_dir_suffix|sed 's%/[^/]*%../%g'`
+  else
+    ac_dest_dir_suffix= ac_dots=
+  fi
+
+  case "$srcdir" in
+  [/$]*) ac_rel_source="$srcdir/$ac_source" ;;
+  *) ac_rel_source="$ac_dots$srcdir/$ac_source" ;;
+  esac
+
+  # Make a symlink if possible; otherwise try a hard link.
+  if ln -s $ac_rel_source $ac_dest 2>/dev/null ||
+     ln $srcdir/$ac_source $ac_dest; then :
+  else
+    { echo "configure: error: cannot link $ac_dest to $srcdir/$ac_source" 1>&2; exit 1; }
+  fi
+fi; done
 EOF
+
 cat >> $CONFIG_STATUS <<EOF
 
 EOF
@@ -1250,5 +1486,5 @@ exit 0
 EOF
 chmod +x $CONFIG_STATUS
 rm -fr confdefs* $ac_clean_files
-test "$no_create" = yes || ${CONFIG_SHELL-/bin/sh} $CONFIG_STATUS || exit 1
+test "$no_create" = yes || $SHELL $CONFIG_STATUS || exit 1
 
index a600fd6a7fc5603475d82c77713257a293f13ef2..5d17dbe023f1c40254c492a4d1c6ff1b8bbaee9d 100644 (file)
@@ -57,12 +57,20 @@ POST_INSTALL = :
 NORMAL_UNINSTALL = :
 PRE_UNINSTALL = :
 POST_UNINSTALL = :
+AMDEP = @AMDEP@
+AMTAR = @AMTAR@
 AWK = @AWK@
+CC = @CC@
+CPP = @CPP@
+CXX = @CXX@
+CXXCPP = @CXXCPP@
+DEPDIR = @DEPDIR@
 M4 = @M4@
 PACKAGE = @PACKAGE@
 PERL = @PERL@
 PERLSCRIPTS = @PERLSCRIPTS@
 VERSION = @VERSION@
+install_sh = @install_sh@
 standards_texi = @standards_texi@
 
 AUTOMAKE_OPTIONS = check-news
@@ -76,7 +84,7 @@ SUFFIXES = .m4 .m4f .pl .sh
 bin_SCRIPTS = autoconf autoheader autoreconf autoupdate ifnames @PERLSCRIPTS@
 EXTRA_SCRIPTS = autoscan
 
-pkgdata_DATA = acfunctions acheaders acidentifiers acmakevars                acprograms acconfig.h autoconf.m4f autoheader.m4f                acgeneral.m4 acoldnames.m4 acspecific.m4 autoconf.m4                autoheader.m4 acversion.m4
+pkgdata_DATA = acfunctions acheaders acidentifiers acmakevars                acprograms autoconf.m4f autoheader.m4f                acgeneral.m4 acoldnames.m4 acspecific.m4 autoconf.m4                autoheader.m4 acversion.m4
 
 
 info_TEXINFOS = autoconf.texi standards.texi
@@ -84,7 +92,7 @@ autoconf_TEXINFOS = install.texi
 standards_TEXINFOS = make-stds.texi
 
 OLDCHANGELOGS = ChangeLog.0 ChangeLog.1
-EXTRA_DIST = $(OLDCHANGELOGS)             acfunctions acheaders acidentifiers acmakevars              acprograms acconfig.h acgeneral.m4 acoldnames.m4              acspecific.m4 autoconf.m4 autoheader.m4 acversion.m4.in         autoconf.sh autoheader.sh autoreconf.sh autoupdate.sh           ifnames.sh autoscan.pl INSTALL.txt
+EXTRA_DIST = $(OLDCHANGELOGS)             acfunctions acheaders acidentifiers acmakevars              acprograms acgeneral.m4 acoldnames.m4              acspecific.m4 autoconf.m4 autoheader.m4 acversion.m4.in            autoconf.sh autoheader.sh autoreconf.sh autoupdate.sh           ifnames.sh autoscan.pl INSTALL.txt
 
 
 # Files that should be removed, but which Automake does not know.
@@ -466,7 +474,7 @@ distdir: $(DISTFILES)
        @for file in $(DISTFILES); do \
          d=$(srcdir); \
          if test -d $$d/$$file; then \
-           cp -pr $$/$$file $(distdir)/$$file; \
+           cp -pr $$d/$$file $(distdir)/$$file; \
          else \
            test -f $(distdir)/$$file \
            || ln $$d/$$file $(distdir)/$$file 2> /dev/null \
index dde59ab380f2a62015cbaa063284e08374fddc1c..2e6e937104ba3e05b1ecad2fe2a43599de52404c 100644 (file)
@@ -1,6 +1,6 @@
+dnl This file is part of Autoconf.                       -*- Autoconf -*-
 dnl Driver that loads the Autoconf macro files.
 dnl Requires GNU m4.
-dnl This file is part of Autoconf.
 dnl Copyright (C) 1994 Free Software Foundation, Inc.
 dnl
 dnl This program is free software; you can redistribute it and/or modify
index 0cb946296b7f873e9c7bda27aee25dcf4ec458a1..6ccc234d617460a8827f1f0099ec8f7037abd59e 100644 (file)
@@ -1,6 +1,6 @@
+dnl This file is part of Autoconf.                       -*- Autoconf -*-
 dnl Parameterized macros.
 dnl Requires GNU m4.
-dnl This file is part of Autoconf.
 dnl Copyright (C) 1992, 93, 94, 95, 96, 98, 1999 Free Software Foundation, Inc.
 dnl
 dnl This program is free software; you can redistribute it and/or modify
index d31cdd754f526656adde96d0741710ee7ebc6b55..29b396cdde86c029c66f410a202ab20231509639 100644 (file)
@@ -1,5 +1,5 @@
+dnl This file is part of Autoconf.                       -*- Autoconf -*-
 dnl Map old names of Autoconf macros to new regularized names.
-dnl This file is part of Autoconf.
 dnl Copyright (C) 1994 Free Software Foundation, Inc.
 dnl
 dnl This program is free software; you can redistribute it and/or modify
index 57192878ba6d0ec5ea5717ed3164f0ae590648c5..cfd7ffbe101c4fee8299f32eb0314b5c6a207d97 100644 (file)
@@ -1,5 +1,5 @@
+dnl This file is part of Autoconf.                       -*- Autoconf -*-
 dnl Macros that test for specific features.
-dnl This file is part of Autoconf.
 dnl Copyright (C) 1992, 93, 94, 95, 96, 98, 1999 Free Software Foundation, Inc.
 dnl
 dnl This program is free software; you can redistribute it and/or modify
index b1b6977cc0b9680fddf408b458df22e16a33bfb6..1302364663fa094bbc47f8e05e28d104c73bca1a 100644 (file)
@@ -56,13 +56,21 @@ POST_INSTALL = :
 NORMAL_UNINSTALL = :
 PRE_UNINSTALL = :
 POST_UNINSTALL = :
+AMDEP = @AMDEP@
+AMTAR = @AMTAR@
 AWK = @AWK@
+CC = @CC@
+CPP = @CPP@
+CXX = @CXX@
+CXXCPP = @CXXCPP@
+DEPDIR = @DEPDIR@
 M4 = @M4@
 MAKEINFO = @MAKEINFO@
 PACKAGE = @PACKAGE@
 PERL = @PERL@
 PERLSCRIPTS = @PERLSCRIPTS@
 VERSION = @VERSION@
+install_sh = @install_sh@
 standards_texi = @standards_texi@
 
 AUTOMAKE_OPTIONS = dejagnu
@@ -115,7 +123,7 @@ distdir: $(DISTFILES)
        @for file in $(DISTFILES); do \
          d=$(srcdir); \
          if test -d $$d/$$file; then \
-           cp -pr $$/$$file $(distdir)/$$file; \
+           cp -pr $$d/$$file $(distdir)/$$file; \
          else \
            test -f $(distdir)/$$file \
            || ln $$d/$$file $(distdir)/$$file 2> /dev/null \