Thank you for your help, and your offer to help with particular code.  I think I will put this project on the backburner until I am hit with a desire to learn the depths of gnu build tools and M4 as the project has issues many warnings (including one about improperly quoted arguments), and gnu build tools is something I would like to learn at some point.

However, if out of curiosity you wish to duplicate the bug, here are the steps: download the debian copy of the lincity sources from http://deb.debian.org/debian/pool/main/l/lincity/lincity_1.13.1.orig.tar.gz
unpack and cd into the folder.
run `autoupdate`
run `autoconf`
then run `./configure`
and it generates the corresponding error. a log of me doing this is found in lincity-autoconf-bug-clean.txt

As for building autoconf, it turns out that `./bootstrap -v` only fails if I do a shallow clone of the repository. I clearly don't know enough git, as I assumed shallow clones would always be safe. Attached is the unedited output of `./bootstrap -v &> /tmp/autoconf-shallow-failure.txt` for the shallow clone. If I do a full clone then I get no failures, and it is included for comparison. The shallow clone was made with `git clone git://git.sv.gnu.org/autoconf --depth 1`.

On 18/02/2026 06:57, Zack Weinberg wrote:
On Wed, Feb 18, 2026, at 12:27 AM, Emily Ammundsen wrote:
The warning for STDC_HEADERS seems to get inserted directly into the
`configure` script, namely the following text without any quoting:

The preprocessor macro 'STDC_HEADERS' is obsolete.
    Except in unusual embedded environments, you can safely include all
    C89 headers unconditionally.)# Autoupdate added the next two lines to
ensure that your configure
I tried to reproduce this problem and could not. When I run autoconf on
a simple configure.ac that uses one of the two macros that trigger the
warning above, like this

     AC_INIT([demo], [1.0])
     AC_HEADER_STDC
     AC_OUTPUT

or like this

     AC_INIT([demo], [1.0])
     AC_STDC_HEADERS
     AC_OUTPUT

the resulting configure script does not have the above message embedded
in it at all, and it's syntactically well formed.  Autoconf does print a
warning message:

configure.ac:2: warning: The macro 'AC_HEADER_STDC' is obsolete.
configure.ac:2: You should run autoupdate.
../lib/autoconf/headers.m4:664: AC_HEADER_STDC is expanded from...
configure.ac:2: the top level

If I then run autoupdate as suggested, what I get is this (same in both cases):

     AC_INIT([demo],[1.0])
     m4_warn([obsolete],
     [The preprocessor macro 'STDC_HEADERS' is obsolete.
       Except in unusual embedded environments, you can safely include all
       C89 headers unconditionally.])dnl
     # Autoupdate added the next two lines to ensure that your configure
     # script's behavior did not change.  They are probably safe to remove.
     AC_CHECK_INCLUDES_DEFAULT
     AC_PROG_EGREP

     AC_OUTPUT

Running autoconf on _this_ prints the warning message about STDC_HEADERS
but the resulting configure script, again, doesn't embed the warning message
and it runs fine.

...
I ran `autoreconf -f -i` on a very old code base from around 2003
Ok, so that *probably* means it's being sloppy about M4 quotation and that's
*probably* the problem.  M4 quotation errors can easily cause bizarre syntax
errors like this in the generated configure script, and, unfortunately,
autoupdate cannot correct those errors.  I advise you to read through all
the subsections of
https://www.gnu.org/savannah-checkouts/gnu/autoconf/manual/autoconf-2.72/html_node/M4-Quotation.html
(it says "autoconf users can skip this" at the top but that's wrong)
and then try to edit your old configure.ac (or possibly it's so old that
it's named configure.in?) to quote things more carefully, and see if that
makes the problem go away.

If you can show me your very old code base (just a URL for a source code
repository is fine), I may be able to give more specific advice.

I considered trying my hand at writing a patch, but following the
instructions in README-hacking and executing ./bootstrap confusingly gives
me the error that an autoconf version 2.69 or higher is required, despite
my system version being 2.72 and README-hacking suggesting that I
shouldn't need autoconf installed already at all.
Indeed, you should not.  You need *automake* installed, but not autoconf.
This is what I see when I run `./bootstrap -v` in a fresh git checkout of 
autoconf:

   bootstrap: creating 
/home/zack/projects/gnu/autoconf/acboot.dFel9PwCCx/lib/Autom4te
   bootstrap: creating 
/home/zack/projects/gnu/autoconf/acboot.dFel9PwCCx/lib/autoconf
   bootstrap: creating 
/home/zack/projects/gnu/autoconf/acboot.dFel9PwCCx/lib/m4sugar
   bootstrap: creating 
/home/zack/projects/gnu/autoconf/acboot.dFel9PwCCx/bin/autoconf
   bootstrap: creating 
/home/zack/projects/gnu/autoconf/acboot.dFel9PwCCx/bin/autom4te
   bootstrap: creating 
/home/zack/projects/gnu/autoconf/acboot.dFel9PwCCx/lib/autom4te.cfg
   bootstrap: creating 
/home/zack/projects/gnu/autoconf/acboot.dFel9PwCCx/lib/autoconf_version.m4
   bootstrap: running aclocal -I m4 -Wall -Werror
   bootstrap: running 
/home/zack/projects/gnu/autoconf/acboot.dFel9PwCCx/bin/autoconf -Wall -Werror
   bootstrap: running automake --add-missing --copy -Wall -Werror
   configure.ac:37: installing 'build-aux/missing'
   Makefile.am: installing './INSTALL'
   doc/local.mk:27: installing 'build-aux/mdate-sh'
   Makefile.am:138:   'doc/local.mk' included from here

Can you please run that same command, `./bootstrap -v`, yourself, in a fresh 
git checkout
(right after cloning it) and send us the complete and unedited output?

zw



On 18/02/2026 06:57, Zack Weinberg wrote:
On Wed, Feb 18, 2026, at 12:27 AM, Emily Ammundsen wrote:
The warning for STDC_HEADERS seems to get inserted directly into the
`configure` script, namely the following text without any quoting:

The preprocessor macro 'STDC_HEADERS' is obsolete.
    Except in unusual embedded environments, you can safely include all
    C89 headers unconditionally.)# Autoupdate added the next two lines to
ensure that your configure
I tried to reproduce this problem and could not. When I run autoconf on
a simple configure.ac that uses one of the two macros that trigger the
warning above, like this

     AC_INIT([demo], [1.0])
     AC_HEADER_STDC
     AC_OUTPUT

or like this

     AC_INIT([demo], [1.0])
     AC_STDC_HEADERS
     AC_OUTPUT

the resulting configure script does not have the above message embedded
in it at all, and it's syntactically well formed.  Autoconf does print a
warning message:

configure.ac:2: warning: The macro 'AC_HEADER_STDC' is obsolete.
configure.ac:2: You should run autoupdate.
../lib/autoconf/headers.m4:664: AC_HEADER_STDC is expanded from...
configure.ac:2: the top level

If I then run autoupdate as suggested, what I get is this (same in both cases):

     AC_INIT([demo],[1.0])
     m4_warn([obsolete],
     [The preprocessor macro 'STDC_HEADERS' is obsolete.
       Except in unusual embedded environments, you can safely include all
       C89 headers unconditionally.])dnl
     # Autoupdate added the next two lines to ensure that your configure
     # script's behavior did not change.  They are probably safe to remove.
     AC_CHECK_INCLUDES_DEFAULT
     AC_PROG_EGREP

     AC_OUTPUT

Running autoconf on _this_ prints the warning message about STDC_HEADERS
but the resulting configure script, again, doesn't embed the warning message
and it runs fine.

...
I ran `autoreconf -f -i` on a very old code base from around 2003
Ok, so that *probably* means it's being sloppy about M4 quotation and that's
*probably* the problem.  M4 quotation errors can easily cause bizarre syntax
errors like this in the generated configure script, and, unfortunately,
autoupdate cannot correct those errors.  I advise you to read through all
the subsections of
https://www.gnu.org/savannah-checkouts/gnu/autoconf/manual/autoconf-2.72/html_node/M4-Quotation.html
(it says "autoconf users can skip this" at the top but that's wrong)
and then try to edit your old configure.ac (or possibly it's so old that
it's named configure.in?) to quote things more carefully, and see if that
makes the problem go away.

If you can show me your very old code base (just a URL for a source code
repository is fine), I may be able to give more specific advice.

I considered trying my hand at writing a patch, but following the
instructions in README-hacking and executing ./bootstrap confusingly gives
me the error that an autoconf version 2.69 or higher is required, despite
my system version being 2.72 and README-hacking suggesting that I
shouldn't need autoconf installed already at all.
Indeed, you should not.  You need *automake* installed, but not autoconf.
This is what I see when I run `./bootstrap -v` in a fresh git checkout of 
autoconf:

   bootstrap: creating 
/home/zack/projects/gnu/autoconf/acboot.dFel9PwCCx/lib/Autom4te
   bootstrap: creating 
/home/zack/projects/gnu/autoconf/acboot.dFel9PwCCx/lib/autoconf
   bootstrap: creating 
/home/zack/projects/gnu/autoconf/acboot.dFel9PwCCx/lib/m4sugar
   bootstrap: creating 
/home/zack/projects/gnu/autoconf/acboot.dFel9PwCCx/bin/autoconf
   bootstrap: creating 
/home/zack/projects/gnu/autoconf/acboot.dFel9PwCCx/bin/autom4te
   bootstrap: creating 
/home/zack/projects/gnu/autoconf/acboot.dFel9PwCCx/lib/autom4te.cfg
   bootstrap: creating 
/home/zack/projects/gnu/autoconf/acboot.dFel9PwCCx/lib/autoconf_version.m4
   bootstrap: running aclocal -I m4 -Wall -Werror
   bootstrap: running 
/home/zack/projects/gnu/autoconf/acboot.dFel9PwCCx/bin/autoconf -Wall -Werror
   bootstrap: running automake --add-missing --copy -Wall -Werror
   configure.ac:37: installing 'build-aux/missing'
   Makefile.am: installing './INSTALL'
   doc/local.mk:27: installing 'build-aux/mdate-sh'
   Makefile.am:138:   'doc/local.mk' included from here

Can you please run that same command, `./bootstrap -v`, yourself, in a fresh 
git checkout
(right after cloning it) and send us the complete and unedited output?

zw
[plum@silken tmp]$tar -xzf lincity_1.13.1.orig.tar.gz
[plum@silken tmp]$cd lincity
lincity-1.13.1/             lincity-autoconf-bug.txt
lincity_1.13.1.orig.tar.gz  
[plum@silken tmp]$cd lincity-1.13.1/
[plum@silken lincity-1.13.1]$autoupdate
configure.ac:57: warning: The preprocessor macro 'STDC_HEADERS' is obsolete.
  Except in unusual embedded environments, you can safely include all
  C89 headers unconditionally.
configure.ac:59: warning: Update your code to rely only on HAVE_SYS_TIME_H,
then remove this warning and the obsolete code below it.
All current systems provide time.h; it need not be checked for.
Not all systems provide sys/time.h, but those that do, all allow
you to include it and time.h simultaneously.
[plum@silken lincity-1.13.1]$autoconf
configure.ac:6: warning: The macro 'AC_FOREACH' is obsolete.
configure.ac:6: You should run autoupdate.
./lib/autoconf/general.m4:191: AC_FOREACH is expanded from...
aclocal.m4:220: _AM_SET_OPTIONS is expanded from...
aclocal.m4:73: AM_INIT_AUTOMAKE is expanded from...
configure.ac:6: the top level
configure.ac:14: warning: AC_LINK_IFELSE was called before 
AC_USE_SYSTEM_EXTENSIONS
./lib/autoconf/specific.m4:541: AC_USE_SYSTEM_EXTENSIONS is expanded from...
configure.ac:14: the top level
configure.ac:16: warning: The macro 'AC_HELP_STRING' is obsolete.
configure.ac:16: You should run autoupdate.
./lib/autoconf/general.m4:204: AC_HELP_STRING is expanded from...
./lib/autoconf/general.m4:1534: AC_ARG_ENABLE is expanded from...
aclocal.m4:2605: AC_ENABLE_SHARED is expanded from...
aclocal.m4:953: AC_LIBTOOL_SETUP is expanded from...
aclocal.m4:933: _AC_PROG_LIBTOOL is expanded from...
aclocal.m4:898: AC_PROG_LIBTOOL is expanded from...
configure.ac:16: the top level
configure.ac:16: warning: The macro 'AC_HELP_STRING' is obsolete.
configure.ac:16: You should run autoupdate.
./lib/autoconf/general.m4:204: AC_HELP_STRING is expanded from...
./lib/autoconf/general.m4:1534: AC_ARG_ENABLE is expanded from...
aclocal.m4:2644: AC_ENABLE_STATIC is expanded from...
aclocal.m4:953: AC_LIBTOOL_SETUP is expanded from...
aclocal.m4:933: _AC_PROG_LIBTOOL is expanded from...
aclocal.m4:898: AC_PROG_LIBTOOL is expanded from...
configure.ac:16: the top level
configure.ac:16: warning: The macro 'AC_HELP_STRING' is obsolete.
configure.ac:16: You should run autoupdate.
./lib/autoconf/general.m4:204: AC_HELP_STRING is expanded from...
./lib/autoconf/general.m4:1534: AC_ARG_ENABLE is expanded from...
aclocal.m4:2683: AC_ENABLE_FAST_INSTALL is expanded from...
aclocal.m4:953: AC_LIBTOOL_SETUP is expanded from...
aclocal.m4:933: _AC_PROG_LIBTOOL is expanded from...
aclocal.m4:898: AC_PROG_LIBTOOL is expanded from...
configure.ac:16: the top level
configure.ac:16: warning: The macro 'AC_HELP_STRING' is obsolete.
configure.ac:16: You should run autoupdate.
./lib/autoconf/general.m4:204: AC_HELP_STRING is expanded from...
./lib/autoconf/general.m4:1553: AC_ARG_WITH is expanded from...
aclocal.m4:2824: AC_PROG_LD is expanded from...
aclocal.m4:953: AC_LIBTOOL_SETUP is expanded from...
aclocal.m4:933: _AC_PROG_LIBTOOL is expanded from...
aclocal.m4:898: AC_PROG_LIBTOOL is expanded from...
configure.ac:16: the top level
configure.ac:16: warning: The macro 'AC_HELP_STRING' is obsolete.
configure.ac:16: You should run autoupdate.
./lib/autoconf/general.m4:204: AC_HELP_STRING is expanded from...
./lib/autoconf/general.m4:1534: AC_ARG_ENABLE is expanded from...
aclocal.m4:953: AC_LIBTOOL_SETUP is expanded from...
aclocal.m4:933: _AC_PROG_LIBTOOL is expanded from...
aclocal.m4:898: AC_PROG_LIBTOOL is expanded from...
configure.ac:16: the top level
configure.ac:16: warning: The macro 'AC_HELP_STRING' is obsolete.
configure.ac:16: You should run autoupdate.
./lib/autoconf/general.m4:204: AC_HELP_STRING is expanded from...
./lib/autoconf/general.m4:1553: AC_ARG_WITH is expanded from...
aclocal.m4:953: AC_LIBTOOL_SETUP is expanded from...
aclocal.m4:933: _AC_PROG_LIBTOOL is expanded from...
aclocal.m4:898: AC_PROG_LIBTOOL is expanded from...
configure.ac:16: the top level
configure.ac:16: warning: AC_CACHE_VAL(lt_prog_compiler_static_works, ...): 
suspicious cache-id, must contain _cv_ to be cached
./lib/autoconf/general.m4:2249: AC_CACHE_VAL is expanded from...
./lib/autoconf/general.m4:2270: AC_CACHE_CHECK is expanded from...
aclocal.m4:1467: AC_LIBTOOL_LINKER_OPTION is expanded from...
aclocal.m4:3318: _LT_AC_LANG_C_CONFIG is expanded from...
aclocal.m4:3317: AC_LIBTOOL_LANG_C_CONFIG is expanded from...
aclocal.m4:953: AC_LIBTOOL_SETUP is expanded from...
aclocal.m4:933: _AC_PROG_LIBTOOL is expanded from...
aclocal.m4:898: AC_PROG_LIBTOOL is expanded from...
configure.ac:16: the top level
configure.ac:16: warning: AC_CACHE_VAL(lt_prog_compiler_pic_works, ...): 
suspicious cache-id, must contain _cv_ to be cached
./lib/autoconf/general.m4:2249: AC_CACHE_VAL is expanded from...
./lib/autoconf/general.m4:2270: AC_CACHE_CHECK is expanded from...
aclocal.m4:1424: AC_LIBTOOL_COMPILER_OPTION is expanded from...
aclocal.m4:5360: AC_LIBTOOL_PROG_COMPILER_PIC is expanded from...
aclocal.m4:3318: _LT_AC_LANG_C_CONFIG is expanded from...
aclocal.m4:3317: AC_LIBTOOL_LANG_C_CONFIG is expanded from...
aclocal.m4:953: AC_LIBTOOL_SETUP is expanded from...
aclocal.m4:933: _AC_PROG_LIBTOOL is expanded from...
aclocal.m4:898: AC_PROG_LIBTOOL is expanded from...
configure.ac:16: the top level
configure.ac:16: warning: The macro 'AC_TRY_LINK' is obsolete.
configure.ac:16: You should run autoupdate.
./lib/autoconf/general.m4:2918: AC_TRY_LINK is expanded from...
lib/m4sugar/m4sh.m4:690: _AS_IF_ELSE is expanded from...
lib/m4sugar/m4sh.m4:697: AS_IF is expanded from...
./lib/autoconf/general.m4:2249: AC_CACHE_VAL is expanded from...
./lib/autoconf/general.m4:2270: AC_CACHE_CHECK is expanded from...
aclocal.m4:1294: _LT_AC_LOCK is expanded from...
aclocal.m4:1827: AC_LIBTOOL_SYS_HARD_LINK_LOCKS is expanded from...
aclocal.m4:3318: _LT_AC_LANG_C_CONFIG is expanded from...
aclocal.m4:3317: AC_LIBTOOL_LANG_C_CONFIG is expanded from...
aclocal.m4:953: AC_LIBTOOL_SETUP is expanded from...
aclocal.m4:933: _AC_PROG_LIBTOOL is expanded from...
aclocal.m4:898: AC_PROG_LIBTOOL is expanded from...
configure.ac:16: the top level
configure.ac:16: warning: AC_LANG_CONFTEST: no AC_LANG_SOURCE call detected in 
body
./lib/autoconf/lang.m4:199: AC_LANG_CONFTEST is expanded from...
./lib/autoconf/general.m4:2892: _AC_LINK_IFELSE is expanded from...
./lib/autoconf/general.m4:2909: AC_LINK_IFELSE is expanded from...
aclocal.m4:1114: _LT_AC_SYS_LIBPATH_AIX is expanded from...
aclocal.m4:5822: AC_LIBTOOL_PROG_LD_SHLIBS is expanded from...
aclocal.m4:3318: _LT_AC_LANG_C_CONFIG is expanded from...
aclocal.m4:3317: AC_LIBTOOL_LANG_C_CONFIG is expanded from...
aclocal.m4:953: AC_LIBTOOL_SETUP is expanded from...
aclocal.m4:933: _AC_PROG_LIBTOOL is expanded from...
aclocal.m4:898: AC_PROG_LIBTOOL is expanded from...
configure.ac:16: the top level
configure.ac:16: warning: The macro 'AC_HELP_STRING' is obsolete.
configure.ac:16: You should run autoupdate.
./lib/autoconf/general.m4:204: AC_HELP_STRING is expanded from...
./lib/autoconf/general.m4:1553: AC_ARG_WITH is expanded from...
aclocal.m4:2488: _LT_AC_TAGCONFIG is expanded from...
aclocal.m4:953: AC_LIBTOOL_SETUP is expanded from...
aclocal.m4:933: _AC_PROG_LIBTOOL is expanded from...
aclocal.m4:898: AC_PROG_LIBTOOL is expanded from...
configure.ac:16: the top level
configure.ac:16: warning: back quotes and double quotes must not be escaped in: 
tag name \"$tagname\" already exists
aclocal.m4:2488: _LT_AC_TAGCONFIG is expanded from...
aclocal.m4:953: AC_LIBTOOL_SETUP is expanded from...
aclocal.m4:933: _AC_PROG_LIBTOOL is expanded from...
aclocal.m4:898: AC_PROG_LIBTOOL is expanded from...
configure.ac:16: the top level
configure.ac:16: warning: AC_LANG_CONFTEST: no AC_LANG_SOURCE call detected in 
body
./lib/autoconf/lang.m4:199: AC_LANG_CONFTEST is expanded from...
./lib/autoconf/general.m4:2892: _AC_LINK_IFELSE is expanded from...
./lib/autoconf/general.m4:2909: AC_LINK_IFELSE is expanded from...
aclocal.m4:1114: _LT_AC_SYS_LIBPATH_AIX is expanded from...
aclocal.m4:3459: _LT_AC_LANG_CXX_CONFIG is expanded from...
aclocal.m4:3458: AC_LIBTOOL_LANG_CXX_CONFIG is expanded from...
aclocal.m4:2488: _LT_AC_TAGCONFIG is expanded from...
aclocal.m4:953: AC_LIBTOOL_SETUP is expanded from...
aclocal.m4:933: _AC_PROG_LIBTOOL is expanded from...
aclocal.m4:898: AC_PROG_LIBTOOL is expanded from...
configure.ac:16: the top level
configure.ac:16: warning: AC_CACHE_VAL(lt_prog_compiler_pic_works_CXX, ...): 
suspicious cache-id, must contain _cv_ to be cached
./lib/autoconf/general.m4:2249: AC_CACHE_VAL is expanded from...
./lib/autoconf/general.m4:2270: AC_CACHE_CHECK is expanded from...
aclocal.m4:1424: AC_LIBTOOL_COMPILER_OPTION is expanded from...
aclocal.m4:5360: AC_LIBTOOL_PROG_COMPILER_PIC is expanded from...
aclocal.m4:3459: _LT_AC_LANG_CXX_CONFIG is expanded from...
aclocal.m4:3458: AC_LIBTOOL_LANG_CXX_CONFIG is expanded from...
aclocal.m4:2488: _LT_AC_TAGCONFIG is expanded from...
aclocal.m4:953: AC_LIBTOOL_SETUP is expanded from...
aclocal.m4:933: _AC_PROG_LIBTOOL is expanded from...
aclocal.m4:898: AC_PROG_LIBTOOL is expanded from...
configure.ac:16: the top level
configure.ac:16: warning: AC_CACHE_VAL(lt_prog_compiler_pic_works_F77, ...): 
suspicious cache-id, must contain _cv_ to be cached
./lib/autoconf/general.m4:2249: AC_CACHE_VAL is expanded from...
./lib/autoconf/general.m4:2270: AC_CACHE_CHECK is expanded from...
aclocal.m4:1424: AC_LIBTOOL_COMPILER_OPTION is expanded from...
aclocal.m4:5360: AC_LIBTOOL_PROG_COMPILER_PIC is expanded from...
aclocal.m4:4485: _LT_AC_LANG_F77_CONFIG is expanded from...
aclocal.m4:4484: AC_LIBTOOL_LANG_F77_CONFIG is expanded from...
aclocal.m4:2488: _LT_AC_TAGCONFIG is expanded from...
aclocal.m4:953: AC_LIBTOOL_SETUP is expanded from...
aclocal.m4:933: _AC_PROG_LIBTOOL is expanded from...
aclocal.m4:898: AC_PROG_LIBTOOL is expanded from...
configure.ac:16: the top level
configure.ac:16: warning: AC_CACHE_VAL(lt_prog_compiler_pic_works_GCJ, ...): 
suspicious cache-id, must contain _cv_ to be cached
./lib/autoconf/general.m4:2249: AC_CACHE_VAL is expanded from...
./lib/autoconf/general.m4:2270: AC_CACHE_CHECK is expanded from...
aclocal.m4:1424: AC_LIBTOOL_COMPILER_OPTION is expanded from...
aclocal.m4:5360: AC_LIBTOOL_PROG_COMPILER_PIC is expanded from...
aclocal.m4:4585: _LT_AC_LANG_GCJ_CONFIG is expanded from...
aclocal.m4:4584: AC_LIBTOOL_LANG_GCJ_CONFIG is expanded from...
aclocal.m4:2488: _LT_AC_TAGCONFIG is expanded from...
aclocal.m4:953: AC_LIBTOOL_SETUP is expanded from...
aclocal.m4:933: _AC_PROG_LIBTOOL is expanded from...
aclocal.m4:898: AC_PROG_LIBTOOL is expanded from...
configure.ac:16: the top level
configure.ac:16: warning: AC_LANG_CONFTEST: no AC_LANG_SOURCE call detected in 
body
./lib/autoconf/lang.m4:199: AC_LANG_CONFTEST is expanded from...
./lib/autoconf/general.m4:2892: _AC_LINK_IFELSE is expanded from...
./lib/autoconf/general.m4:2909: AC_LINK_IFELSE is expanded from...
aclocal.m4:1114: _LT_AC_SYS_LIBPATH_AIX is expanded from...
aclocal.m4:5822: AC_LIBTOOL_PROG_LD_SHLIBS is expanded from...
aclocal.m4:4585: _LT_AC_LANG_GCJ_CONFIG is expanded from...
aclocal.m4:4584: AC_LIBTOOL_LANG_GCJ_CONFIG is expanded from...
aclocal.m4:2488: _LT_AC_TAGCONFIG is expanded from...
aclocal.m4:953: AC_LIBTOOL_SETUP is expanded from...
aclocal.m4:933: _AC_PROG_LIBTOOL is expanded from...
aclocal.m4:898: AC_PROG_LIBTOOL is expanded from...
configure.ac:16: the top level
configure.ac:67: warning: Update your code to rely only on HAVE_SYS_TIME_H,
configure.ac:67: then remove this warning and the obsolete code below it.
configure.ac:67: All current systems provide time.h; it need not be checked for.
configure.ac:67: Not all systems provide sys/time.h, but those that do, all 
allow
configure.ac:67: you to include it and time.h simultaneously.
configure.ac:130: warning: The macro 'AC_OUTPUT_COMMANDS' is obsolete.
configure.ac:130: You should run autoupdate.
./lib/autoconf/status.m4:1025: AC_OUTPUT_COMMANDS is expanded from...
aclocal.m4:7113: AM_PO_SUBDIRS is expanded from...
aclocal.m4:6842: AM_GNU_GETTEXT is expanded from...
configure.ac:130: the top level
configure.ac:130: warning: The macro 'AC_HEADER_STDC' is obsolete.
configure.ac:130: You should run autoupdate.
./lib/autoconf/headers.m4:663: AC_HEADER_STDC is expanded from...
aclocal.m4:7287: AM_INTL_SUBDIR is expanded from...
aclocal.m4:6842: AM_GNU_GETTEXT is expanded from...
configure.ac:130: the top level
configure.ac:130: warning: The macro 'AC_TRY_RUN' is obsolete.
configure.ac:130: You should run autoupdate.
./lib/autoconf/general.m4:2995: AC_TRY_RUN is expanded from...
lib/m4sugar/m4sh.m4:690: _AS_IF_ELSE is expanded from...
lib/m4sugar/m4sh.m4:697: AS_IF is expanded from...
./lib/autoconf/general.m4:2249: AC_CACHE_VAL is expanded from...
./lib/autoconf/general.m4:2270: AC_CACHE_CHECK is expanded from...
aclocal.m4:8381: gt_INTDIV0 is expanded from...
aclocal.m4:7287: AM_INTL_SUBDIR is expanded from...
aclocal.m4:6842: AM_GNU_GETTEXT is expanded from...
configure.ac:130: the top level
configure.ac:130: warning: The macro 'AC_TRY_COMPILE' is obsolete.
configure.ac:130: You should run autoupdate.
./lib/autoconf/general.m4:2845: AC_TRY_COMPILE is expanded from...
lib/m4sugar/m4sh.m4:690: _AS_IF_ELSE is expanded from...
lib/m4sugar/m4sh.m4:697: AS_IF is expanded from...
./lib/autoconf/general.m4:2249: AC_CACHE_VAL is expanded from...
./lib/autoconf/general.m4:2270: AC_CACHE_CHECK is expanded from...
aclocal.m4:8487: jm_AC_HEADER_INTTYPES_H is expanded from...
aclocal.m4:8459: jm_AC_TYPE_UINTMAX_T is expanded from...
aclocal.m4:7287: AM_INTL_SUBDIR is expanded from...
aclocal.m4:6842: AM_GNU_GETTEXT is expanded from...
configure.ac:130: the top level
configure.ac:130: warning: The macro 'AC_TRY_COMPILE' is obsolete.
configure.ac:130: You should run autoupdate.
./lib/autoconf/general.m4:2845: AC_TRY_COMPILE is expanded from...
lib/m4sugar/m4sh.m4:690: _AS_IF_ELSE is expanded from...
lib/m4sugar/m4sh.m4:697: AS_IF is expanded from...
./lib/autoconf/general.m4:2249: AC_CACHE_VAL is expanded from...
./lib/autoconf/general.m4:2270: AC_CACHE_CHECK is expanded from...
aclocal.m4:8516: jm_AC_HEADER_STDINT_H is expanded from...
aclocal.m4:8459: jm_AC_TYPE_UINTMAX_T is expanded from...
aclocal.m4:7287: AM_INTL_SUBDIR is expanded from...
aclocal.m4:6842: AM_GNU_GETTEXT is expanded from...
configure.ac:130: the top level
configure.ac:130: warning: The macro 'AC_TRY_LINK' is obsolete.
configure.ac:130: You should run autoupdate.
./lib/autoconf/general.m4:2918: AC_TRY_LINK is expanded from...
lib/m4sugar/m4sh.m4:690: _AS_IF_ELSE is expanded from...
lib/m4sugar/m4sh.m4:697: AS_IF is expanded from...
./lib/autoconf/general.m4:2249: AC_CACHE_VAL is expanded from...
./lib/autoconf/general.m4:2270: AC_CACHE_CHECK is expanded from...
aclocal.m4:8542: jm_AC_TYPE_UNSIGNED_LONG_LONG is expanded from...
aclocal.m4:8459: jm_AC_TYPE_UINTMAX_T is expanded from...
aclocal.m4:7287: AM_INTL_SUBDIR is expanded from...
aclocal.m4:6842: AM_GNU_GETTEXT is expanded from...
configure.ac:130: the top level
configure.ac:130: warning: The macro 'AC_TRY_COMPILE' is obsolete.
configure.ac:130: You should run autoupdate.
./lib/autoconf/general.m4:2845: AC_TRY_COMPILE is expanded from...
lib/m4sugar/m4sh.m4:690: _AS_IF_ELSE is expanded from...
lib/m4sugar/m4sh.m4:697: AS_IF is expanded from...
./lib/autoconf/general.m4:2249: AC_CACHE_VAL is expanded from...
./lib/autoconf/general.m4:2270: AC_CACHE_CHECK is expanded from...
aclocal.m4:8569: gt_HEADER_INTTYPES_H is expanded from...
aclocal.m4:7287: AM_INTL_SUBDIR is expanded from...
aclocal.m4:6842: AM_GNU_GETTEXT is expanded from...
configure.ac:130: the top level
configure.ac:130: warning: The macro 'AC_TRY_COMPILE' is obsolete.
configure.ac:130: You should run autoupdate.
./lib/autoconf/general.m4:2845: AC_TRY_COMPILE is expanded from...
lib/m4sugar/m4sh.m4:690: _AS_IF_ELSE is expanded from...
lib/m4sugar/m4sh.m4:697: AS_IF is expanded from...
./lib/autoconf/general.m4:2249: AC_CACHE_VAL is expanded from...
./lib/autoconf/general.m4:2270: AC_CACHE_CHECK is expanded from...
aclocal.m4:8597: gt_INTTYPES_PRI is expanded from...
aclocal.m4:7287: AM_INTL_SUBDIR is expanded from...
aclocal.m4:6842: AM_GNU_GETTEXT is expanded from...
configure.ac:130: the top level
configure.ac:130: warning: The macro 'AC_TRY_LINK' is obsolete.
configure.ac:130: You should run autoupdate.
./lib/autoconf/general.m4:2918: AC_TRY_LINK is expanded from...
lib/m4sugar/m4sh.m4:690: _AS_IF_ELSE is expanded from...
lib/m4sugar/m4sh.m4:697: AS_IF is expanded from...
./lib/autoconf/general.m4:2249: AC_CACHE_VAL is expanded from...
./lib/autoconf/general.m4:2270: AC_CACHE_CHECK is expanded from...
aclocal.m4:8195: AM_ICONV_LINK is expanded from...
aclocal.m4:8250: AM_ICONV is expanded from...
aclocal.m4:7287: AM_INTL_SUBDIR is expanded from...
aclocal.m4:6842: AM_GNU_GETTEXT is expanded from...
configure.ac:130: the top level
configure.ac:130: warning: The macro 'AC_TRY_COMPILE' is obsolete.
configure.ac:130: You should run autoupdate.
./lib/autoconf/general.m4:2845: AC_TRY_COMPILE is expanded from...
lib/m4sugar/m4sh.m4:690: _AS_IF_ELSE is expanded from...
lib/m4sugar/m4sh.m4:697: AS_IF is expanded from...
./lib/autoconf/general.m4:2249: AC_CACHE_VAL is expanded from...
aclocal.m4:8250: AM_ICONV is expanded from...
aclocal.m4:7287: AM_INTL_SUBDIR is expanded from...
aclocal.m4:6842: AM_GNU_GETTEXT is expanded from...
configure.ac:130: the top level
configure.ac:130: warning: The macro 'AC_TRY_LINK' is obsolete.
configure.ac:130: You should run autoupdate.
./lib/autoconf/general.m4:2918: AC_TRY_LINK is expanded from...
lib/m4sugar/m4sh.m4:690: _AS_IF_ELSE is expanded from...
lib/m4sugar/m4sh.m4:697: AS_IF is expanded from...
./lib/autoconf/general.m4:2249: AC_CACHE_VAL is expanded from...
./lib/autoconf/general.m4:2270: AC_CACHE_CHECK is expanded from...
aclocal.m4:8627: AM_LANGINFO_CODESET is expanded from...
aclocal.m4:7287: AM_INTL_SUBDIR is expanded from...
aclocal.m4:6842: AM_GNU_GETTEXT is expanded from...
configure.ac:130: the top level
configure.ac:130: warning: The macro 'AC_TRY_LINK' is obsolete.
configure.ac:130: You should run autoupdate.
./lib/autoconf/general.m4:2918: AC_TRY_LINK is expanded from...
lib/m4sugar/m4sh.m4:690: _AS_IF_ELSE is expanded from...
lib/m4sugar/m4sh.m4:697: AS_IF is expanded from...
./lib/autoconf/general.m4:2249: AC_CACHE_VAL is expanded from...
./lib/autoconf/general.m4:2270: AC_CACHE_CHECK is expanded from...
aclocal.m4:8663: AM_LC_MESSAGES is expanded from...
aclocal.m4:7287: AM_INTL_SUBDIR is expanded from...
aclocal.m4:6842: AM_GNU_GETTEXT is expanded from...
configure.ac:130: the top level
configure.ac:130: warning: The macro 'AC_TRY_LINK' is obsolete.
configure.ac:130: You should run autoupdate.
./lib/autoconf/general.m4:2918: AC_TRY_LINK is expanded from...
lib/m4sugar/m4sh.m4:690: _AS_IF_ELSE is expanded from...
lib/m4sugar/m4sh.m4:697: AS_IF is expanded from...
./lib/autoconf/general.m4:2249: AC_CACHE_VAL is expanded from...
./lib/autoconf/general.m4:2270: AC_CACHE_CHECK is expanded from...
aclocal.m4:6842: AM_GNU_GETTEXT is expanded from...
configure.ac:130: the top level
[plum@silken lincity-1.13.1]$./configure
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking for style of include used by make... GNU
checking for gcc... gcc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables... 
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether the compiler supports GNU C... yes
checking whether gcc accepts -g... yes
checking for gcc option to enable C11 features... none needed
checking dependency style of gcc... gcc3
checking for library containing strerror... none required
checking for gcc... (cached) gcc
checking whether the compiler supports GNU C... (cached) yes
checking whether gcc accepts -g... (cached) yes
checking for gcc option to enable C11 features... (cached) none needed
checking dependency style of gcc... (cached) gcc3
checking for stdio.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for strings.h... yes
checking for sys/stat.h... yes
checking for sys/types.h... yes
checking for unistd.h... yes
checking for wchar.h... yes
checking for minix/config.h... no
checking for sys/time.h... yes
checking for sys/param.h... yes
checking whether it is safe to define __EXTENSIONS__... yes
checking whether _XOPEN_SOURCE should be defined... no
checking whether make sets $(MAKE)... (cached) yes
checking build system type... x86_64-unknown-linux-gnu
checking host system type... x86_64-unknown-linux-gnu
checking for a sed that does not truncate output... /usr/bin/sed
checking for grep that handles long lines and -e... /usr/bin/grep
checking for egrep... /usr/bin/grep -E
checking for ld used by gcc... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking for /usr/bin/ld option to reload object files... -r
checking for BSD-compatible nm... /usr/bin/nm -B
checking whether ln -s works... yes
checking how to recognise dependent libraries... pass_all
checking for dlfcn.h... yes
checking for g++... g++
checking whether the compiler supports GNU C++... yes
checking whether g++ accepts -g... yes
checking for g++ option to enable C++11 features... none needed
checking dependency style of g++... gcc3
checking how to run the C++ preprocessor... g++ -E
checking for g77... no
checking for xlf... no
checking for f77... no
checking for frt... no
checking for pgf77... no
checking for cf77... no
checking for fort77... no
checking for fl32... no
checking for af77... no
checking for xlf90... no
checking for f90... no
checking for pgf90... no
checking for pghpf... no
checking for epcf90... no
checking for gfortran... no
checking for g95... no
checking for xlf95... no
checking for f95... no
checking for fort... no
checking for ifort... no
checking for ifc... no
checking for efc... no
checking for pgfortran... no
checking for pgf95... no
checking for lf95... no
checking for ftn... no
checking for nagfor... no
checking whether the compiler supports GNU Fortran 77... no
checking whether  accepts -g... no
checking the maximum length of command line arguments... 32768
checking command to parse /usr/bin/nm -B output from gcc object... ok
checking for objdir... .libs
checking for ar... ar
checking for ranlib... ranlib
checking for strip... strip
checking if gcc static flag  works... yes
checking if gcc supports -fno-rtti -fno-exceptions... no
checking for gcc option to produce PIC... -fPIC
checking if gcc PIC flag -fPIC works... yes
checking if gcc supports -c -o file.o... yes
checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) supports shared 
libraries... yes
checking whether -lc should be explicitly linked in... no
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... yes
configure: creating libtool
appending configuration tag "CXX" to libtool
checking for ld used by g++... /usr/bin/ld -m elf_x86_64
checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld... yes
checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared 
libraries... yes
checking for g++ option to produce PIC... -fPIC
checking if g++ PIC flag -fPIC works... yes
checking if g++ supports -c -o file.o... yes
checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared 
libraries... yes
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
appending configuration tag "F77" to libtool
checking for gzip... yes
checking how to run the C preprocessor... gcc -E
checking for X... libraries , headers 
checking for gethostbyname... yes
checking for connect... yes
checking for remove... yes
checking for shmat... yes
checking for IceConnectionNumber in -lICE... yes
./configure: line 21829: The: command not found
./configure: line 21830: Except: command not found
./configure: line 21831: syntax error near unexpected token `)'
./configure: line 21831: `  C89 headers unconditionally.)# Autoupdate added the 
next two lines to ensure that your configure'
[plum@silken lincity-1.13.1]$autoupdate --version
autoupdate (GNU Autoconf) 2.72
Copyright (C) 2023 Free Software Foundation, Inc.
License GPLv3+/Autoconf: GNU GPL version 3 or later
<https://gnu.org/licenses/gpl.html>, <https://gnu.org/licenses/exceptions.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Written by David J. MacKenzie and Akim Demaille.
[plum@silken lincity-1.13.1]$autoconf --version
autoconf (GNU Autoconf) 2.72
Copyright (C) 2023 Free Software Foundation, Inc.
License GPLv3+/Autoconf: GNU GPL version 3 or later
<https://gnu.org/licenses/gpl.html>, <https://gnu.org/licenses/exceptions.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Written by David J. MacKenzie and Akim Demaille.
[plum@silken lincity-1.13.1]$
exit

bootstrap: creating /home/plum/patches/autoconf/acboot.ewPW1ulvvP/lib/Autom4te
bootstrap: creating /home/plum/patches/autoconf/acboot.ewPW1ulvvP/lib/autoconf
bootstrap: creating /home/plum/patches/autoconf/acboot.ewPW1ulvvP/lib/m4sugar
bootstrap: creating /home/plum/patches/autoconf/acboot.ewPW1ulvvP/bin/autoconf
bootstrap: creating /home/plum/patches/autoconf/acboot.ewPW1ulvvP/bin/autom4te
bootstrap: creating 
/home/plum/patches/autoconf/acboot.ewPW1ulvvP/lib/autom4te.cfg
bootstrap: creating 
/home/plum/patches/autoconf/acboot.ewPW1ulvvP/lib/autoconf_version.m4
bootstrap: running aclocal -I m4 -Wall -Werror
bootstrap: running /home/plum/patches/autoconf/acboot.ewPW1ulvvP/bin/autoconf 
-Wall -Werror
bootstrap: running automake --add-missing --copy -Wall -Werror
configure.ac:37: installing 'build-aux/missing'
Makefile.am: installing './INSTALL'
doc/local.mk:27: installing 'build-aux/mdate-sh'
Makefile.am:138:   'doc/local.mk' included from here
bootstrap: creating /home/plum/patches/autoconf/acboot.LvUipw0rv7/lib/Autom4te
bootstrap: creating /home/plum/patches/autoconf/acboot.LvUipw0rv7/lib/autoconf
bootstrap: creating /home/plum/patches/autoconf/acboot.LvUipw0rv7/lib/m4sugar
bootstrap: creating /home/plum/patches/autoconf/acboot.LvUipw0rv7/bin/autoconf
bootstrap: creating /home/plum/patches/autoconf/acboot.LvUipw0rv7/bin/autom4te
bootstrap: creating 
/home/plum/patches/autoconf/acboot.LvUipw0rv7/lib/autom4te.cfg
bootstrap: creating 
/home/plum/patches/autoconf/acboot.LvUipw0rv7/lib/autoconf_version.m4
bootstrap: running aclocal -I m4 -Wall -Werror
configure.ac:20: error: Autoconf version 2.69 or higher is required
configure.ac:20: the top level
autom4te: error: m4 failed with exit status: 63
aclocal: error: /home/plum/patches/autoconf/acboot.LvUipw0rv7/bin/autom4te 
failed with exit status: 63

Reply via email to