The test for AS_VERSION_COMPARE (and presumably also the AS_VERSION_COMPARE
macro itself) is broken on current autoconf master.  It is OK in the 2.72
release.  This is a regression introduced by:

  e22aa0a9994e07432d81e3223b0ba52406e6a091 is the first bad commit
  commit e22aa0a9994e07432d81e3223b0ba52406e6a091 (HEAD)
  Author: Paul Eggert <[email protected]>
  Date:   Fri Dec 12 22:25:49 2025 -0800
  
      Update Solaris commentary

This is because while the changes to m4sh.m4 (shown below) look like
they are changing a comment at a first glance, this is not a comment.
It is part of a single-quoted shell word, and the addition of single
quotes and shell metacharacters cause sh to exit with a fatal error.

Please consider reverting this change to m4sh.m4:

--- lib/m4sugar/m4sh.m4.orig
+++ lib/m4sugar/m4sh.m4
@@ -1798,8 +1798,9 @@ m4_defun([_AS_VERSION_COMPARE_PREPARE],
       if (d1 < d2) exit 1
       if (d1 > d2) exit 2
     }
-    # Beware Solaris /usr/xgp4/bin/awk (at least through Solaris 10),
-    # which mishandles some comparisons of empty strings to integers.
+    # Beware Solaris 11 /usr/xgp4/bin/awk, which mishandles some
+    # comparisons of empty strings to integers.  For example,
+    # LC_ALL=C /usr/xpg4/bin/awk 'BEGIN {if (-1 < "") print "a"}' prints "a".
     if (length(v2)) exit 1
     if (length(v1)) exit 2
   }

testsuite.log attached.
## -------------------------------------- ##
## GNU Autoconf 2.72.100-c370 test suite. ##
## -------------------------------------- ##

testsuite: command line was:
  $ tests/testsuite -C tests MAKE=make -k AS_VERSION_COMPARE

## --------- ##
## Platform. ##
## --------- ##

hostname = aion
uname -m = ppc64le
uname -r = 6.12.63-00001-g6317288adf5d
uname -s = Linux
uname -v = #104 SMP PREEMPT Wed Dec 24 10:23:15 EST 2025

/usr/bin/uname -p = POWER9, altivec supported
/bin/uname -X     = unknown

/bin/arch              = unknown
/usr/bin/arch -k       = unknown
/usr/convex/getsysinfo = unknown
/usr/bin/hostinfo      = unknown
/bin/machine           = unknown
/usr/bin/oslevel       = unknown
/bin/universe          = unknown

PATH: /home/nbowler/misc/autoconf/tests/
PATH: /home/nbowler/misc/autoconf/tests/
PATH: /home/nbowler/autotools-sane/bin/
PATH: /home/nbowler/bin/
PATH: /usr/lib/ccache/bin/
PATH: /usr/local/sbin/
PATH: /usr/local/bin/
PATH: /usr/sbin/
PATH: /usr/bin/
PATH: /sbin/
PATH: /bin/
PATH: /usr/lib/llvm/20/bin/
PATH: /opt/ibm/xlC/16.1.1/bin/

testsuite: atconfig:
| # Configurable variable values for building test suites.
| # Generated by ./config.status.
| # Copyright (C) 2026 Free Software Foundation, Inc.
| 
| # The test suite will define top_srcdir=/../.. etc.
| at_testdir='tests'
| abs_builddir='/home/nbowler/misc/autoconf/tests'
| at_srcdir='.'
| abs_srcdir='/home/nbowler/misc/autoconf/tests'
| at_top_srcdir='..'
| abs_top_srcdir='/home/nbowler/misc/autoconf'
| at_top_build_prefix='../'
| abs_top_builddir='/home/nbowler/misc/autoconf'
| 
| # Backward compatibility with Autotest <= 2.59b:
| at_top_builddir=$at_top_build_prefix
| 
| AUTOTEST_PATH='tests'
| 
| SHELL=${CONFIG_SHELL-'/bin/sh'}

testsuite: atlocal:
| # -*- shell-script -*-
| # tests/atlocal.  Generated from atlocal.in by configure.
| # Configurable variable values for Autoconf test suite.
| 
| # Copyright (C) 2000-2001, 2005, 2008-2017, 2020-2026 Free Software
| # Foundation, Inc.
| #
| # This program is free software: you can redistribute it and/or modify
| # it under the terms of the GNU General Public License as published by
| # the Free Software Foundation, either version 3 of the License, or
| # (at your option) any later version.
| #
| # This program is distributed in the hope that it will be useful,
| # but WITHOUT ANY WARRANTY; without even the implied warranty of
| # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
| # GNU General Public License for more details.
| #
| # You should have received a copy of the GNU General Public License
| # along with this program.  If not, see <https://www.gnu.org/licenses/>.
| 
| AWK='gawk'
| EGREP='/bin/grep -E'
| GREP='/bin/grep'
| M4='/usr/bin/m4'
| PERL='/usr/bin/perl'
| SED='/bin/sed'
| 
| # We need to know if sh -n is ok.
| SHELL_N='bash'
| 
| # Check whether the underlying system can manage some unusual
| # symbols in file names.
| if test -z ''; then
|   func_sanitize_file_name () { echo "$@"; }
| else
|   func_sanitize_file_name () { echo "$@" | tr -d ''; }
| fi
| 
| # Can we create directories with trailing whitespace in their names?
| ac_cv_dir_trailing_space='yes'
| if test "$ac_cv_dir_trailing_space" = yes; then
|   func_sanitize_dir_name () { echo "$@"; }
| else
|   func_sanitize_dir_name () { echo "$@" | sed 's/  *$//'; }
| fi
| 
| # AUTOM4TE might be set in the environment.  Override it here so that
| # direct aclocal invocations also use it.
| AUTOM4TE=autom4te
| export AUTOM4TE

## ------------------------------------------- ##
## System supplied programs that we depend on. ##
## ------------------------------------------- ##

# m4 is /usr/bin/m4
/usr/bin/m4 --version
m4 (GNU M4) 1.4.20
Packaged by Gentoo Linux (1.4.20)
Copyright (C) 2025 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <https://gnu.org/licenses/gpl.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 Rene' Seindal.

# perl is /usr/bin/perl
/usr/bin/perl --version

This is perl 5, version 42, subversion 0 (v5.42.0) built for powerpc64le-linux
(with 78 registered patches, see perl -V for more detail)

Copyright 1987-2025, Larry Wall

Perl may be copied only under the terms of either the Artistic License or the
GNU General Public License, which may be found in the Perl 5 source kit.

Complete documentation for Perl, including FAQ lists, should be found on
this system using "man perl" or "perldoc perl".  If you have access to the
Internet, point your browser at https://www.perl.org/, the Perl Home Page.


# sh is /bin/sh
/bin/sh --version
/bin/sh: 0: Illegal option --

# make is /usr/bin/make
/usr/bin/make --version
GNU Make 4.4.1
Built for powerpc64le-unknown-linux-gnu
Copyright (C) 1988-2023 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <https://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

# automake is /home/nbowler/autotools-sane/bin/automake
/home/nbowler/autotools-sane/bin/automake --version
automake (GNU automake) 1.16.5
Copyright (C) 2021 Free Software Foundation, Inc.
License GPLv2+: GNU GPL version 2 or later 
<https://gnu.org/licenses/gpl-2.0.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 Tom Tromey <[email protected]>
       and Alexandre Duret-Lutz <[email protected]>.

# aclocal is /home/nbowler/autotools-sane/bin/aclocal
/home/nbowler/autotools-sane/bin/aclocal --version
aclocal (GNU automake) 1.16.5
Copyright (C) 2021 Free Software Foundation, Inc.
License GPLv2+: GNU GPL version 2 or later 
<https://gnu.org/licenses/gpl-2.0.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 Tom Tromey <[email protected]>
       and Alexandre Duret-Lutz <[email protected]>.

./local.at:32: using 1s as mtime resolution

## ---------------- ##
## Tested programs. ##
## ---------------- ##

./local.at:25: /home/nbowler/misc/autoconf/tests/autom4te --version
autom4te (GNU Autoconf) 2.72.100-c370
Features: subsecond-mtime

Copyright (C) 2026 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 Akim Demaille.

./local.at:25: /home/nbowler/misc/autoconf/tests/autoconf --version
autoconf (GNU Autoconf) 2.72.100-c370
Copyright (C) 2026 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.

./local.at:25: /home/nbowler/misc/autoconf/tests/autoheader --version
autoheader (GNU Autoconf) 2.72.100-c370
Copyright (C) 2026 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 Roland McGrath and Akim Demaille.

./local.at:25: /home/nbowler/misc/autoconf/tests/autoupdate --version
autoupdate (GNU Autoconf) 2.72.100-c370
Copyright (C) 2026 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.

./local.at:25: /home/nbowler/misc/autoconf/tests/autoreconf --version
autoreconf (GNU Autoconf) 2.72.100-c370
Copyright (C) 2026 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.

./local.at:25: /home/nbowler/misc/autoconf/tests/ifnames --version
ifnames (GNU Autoconf) 2.72.100-c370
Copyright (C) 2026 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 Paul Eggert.

## ------------------ ##
## Running the tests. ##
## ------------------ ##
testsuite: starting at: Fri Jan  9 16:25:59 EST 2026
testsuite: ending at: Fri Jan  9 16:26:00 EST 2026
testsuite: test suite duration: 0h 0m 1s

## ------------- ##
## Test results. ##
## ------------- ##

ERROR: 1 test was run,
1 failed unexpectedly.

## ------------------------ ##
## Summary of the failures. ##
## ------------------------ ##
Failed tests:
GNU Autoconf 2.72.100-c370 test suite test groups:

 NUM: FILE-NAME:LINE     TEST-GROUP-NAME
      KEYWORDS

  98: m4sh.at:880        AS_VERSION_COMPARE
      m4sh

## ---------------------- ##
## Detailed failed tests. ##
## ---------------------- ##

#                             -*- compilation -*-
98. m4sh.at:880: testing AS_VERSION_COMPARE ...
./m4sh.at:914: autom4te --language=m4sh script.as -o script 
./m4sh.at:915: $CONFIG_SHELL ./script
--- /dev/null   2025-12-24 10:43:46.499999709 -0500
+++ /home/nbowler/misc/autoconf/tests/testsuite.dir/at-groups/98/stderr 
2026-01-09 16:26:00.036546741 -0500
@@ -0,0 +1 @@
+./script: 379: Syntax error: "(" unexpected
./m4sh.at:915: exit code was 2, expected 0
98. m4sh.at:880: 98. AS_VERSION_COMPARE (m4sh.at:880): FAILED (m4sh.at:915)


## ------------- ##
## ../config.log ##
## ------------- ##
| This file contains any messages produced by compilers while
| running configure, to aid debugging if configure makes a mistake.
| 
| It was created by GNU Autoconf configure 2.72.100-c370, which was
| generated by GNU Autoconf 2.72.100-c370.  Invocation command line was
| 
|   $ ./configure --prefix=/home/nbowler/misc/autoconf/inst --no-create 
--no-recursion
| 
| ## --------- ##
| ## Platform. ##
| ## --------- ##
| 
| hostname = aion
| uname -m = ppc64le
| uname -r = 6.12.63-00001-g6317288adf5d
| uname -s = Linux
| uname -v = #104 SMP PREEMPT Wed Dec 24 10:23:15 EST 2025
| 
| /usr/bin/uname -p = POWER9, altivec supported
| /bin/uname -X     = unknown
| 
| /bin/arch              = unknown
| /usr/bin/arch -k       = unknown
| /usr/convex/getsysinfo = unknown
| /usr/bin/hostinfo      = unknown
| /bin/machine           = unknown
| /usr/bin/oslevel       = unknown
| /bin/universe          = unknown
| 
| PATH: /home/nbowler/misc/autoconf/tests/
| PATH: /home/nbowler/autotools-sane/bin/
| PATH: /home/nbowler/bin/
| PATH: /usr/lib/ccache/bin/
| PATH: /usr/local/sbin/
| PATH: /usr/local/bin/
| PATH: /usr/sbin/
| PATH: /usr/bin/
| PATH: /sbin/
| PATH: /bin/
| PATH: /opt/bin/
| PATH: /usr/lib/llvm/20/bin/
| PATH: /opt/ibm/xlC/16.1.1/bin/
| 
| 
| ## ----------- ##
| ## Core tests. ##
| ## ----------- ##
| 
| configure:1758: looking for aux files: config.guess config.sub missing 
install-sh
| configure:1771:  trying ./build-aux/
| configure:1800:   ./build-aux/config.guess found
| configure:1800:   ./build-aux/config.sub found
| configure:1800:   ./build-aux/missing found
| configure:1782:   ./build-aux/install-sh found
| configure:1957: checking for a BSD-compatible install
| configure:2031: result: /usr/bin/install -c
| configure:2042: checking whether build environment is sane
| configure:2097: result: yes
| configure:2258: checking for a race-free mkdir -p
| configure:2301: result: /bin/mkdir -p
| configure:2308: checking for gawk
| configure:2329: found /usr/bin/gawk
| configure:2341: result: gawk
| configure:2352: checking whether make sets $(MAKE)
| configure:2376: result: yes
| configure:2406: checking whether make supports nested variables
| configure:2425: result: yes
| configure:2573: checking build system type
| configure:2589: result: powerpc64le-unknown-linux-gnu
| configure:2609: checking host system type
| configure:2624: result: powerpc64le-unknown-linux-gnu
| configure:2651: autobuild project... GNU Autoconf
| configure:2657: autobuild revision... 2.72.100-c370
| configure:2662: autobuild hostname... aion
| configure:2673: autobuild timestamp... 20260109T212453Z
| configure:2700: checking for a shell whose -n mode is known to work
| configure:2733: result: bash
| configure:2738: checking for characters that cannot appear in file names
| configure:2760: result: none
| configure:2766: checking whether directories can have trailing spaces
| configure:2782: result: yes
| configure:2793: checking for expr
| configure:2816: found /usr/bin/expr
| configure:2829: result: /usr/bin/expr
| configure:2848: checking for GNU M4 that supports accurate traces
| configure:2887: trying /usr/bin/m4
| configure:2914: result: /usr/bin/m4
| configure:2917: checking whether /usr/bin/m4 accepts --gnu
| configure:2929: result: yes
| configure:2946: checking how m4 supports trace files
| configure:2958: result: --debugfile
| configure:2980: checking for perl
| configure:3003: found /usr/bin/perl
| configure:3017: result: /usr/bin/perl
| configure:3036: checking whether /usr/bin/perl Fcntl::flock is implemented
| configure:3052: result: yes
| configure:3068: checking for emacs
| configure:3089: found /usr/bin/emacs
| configure:3101: result: emacs
| configure:3120: checking whether emacs is sufficiently recent
| configure:3131: $TEST_EMACS -batch -q -f batch-byte-compile conftest.el 1>&2
| 
| In toplevel form:
| conftest.el:1:1: Warning: file has no `lexical-binding' directive on its 
first line
| conftest.el:1:15: Warning: global/dynamic var `broken' lacks a prefix
| 
| In broken-mode:
| conftest.el:2:35: Warning: assignment to free variable `broken-defaults'
| configure:3134: $? = 0
| configure:3145: result: yes
| configure:3163: checking for emacs
| configure:3196: result: emacs
| configure:3221: checking where .elc files should go
| configure:3235: $EMACS -batch -Q -eval '(while load-path (princ (concat (car 
load-path) "\n")) (setq load-path (cdr load-path)))' </dev/null >conftest.out
| configure:3238: $? = 0
| configure:3252: result: ${datadir}/emacs/site-lisp
| configure:3266: checking for grep that handles long lines and -e
| configure:3332: result: /bin/grep
| configure:3337: checking for egrep
| configure:3407: result: /bin/grep -E
| configure:3414: checking for a sed that does not truncate output
| configure:3486: result: /bin/sed
| configure:3499: checking whether make is case sensitive
| configure:3516: result: yes
| configure:3647: checking that generated files are newer than configure
| configure:3653: result: done
| configure:3673: creating ./config.status
| 
| ## ---------------- ##
| ## Cache variables. ##
| ## ---------------- ##
| 
| ac_cv_build='powerpc64le-unknown-linux-gnu'
| ac_cv_dir_trailing_space='yes'
| ac_cv_env_EMACSLOADPATH_set=''
| ac_cv_env_EMACSLOADPATH_value=''
| ac_cv_env_EMACS_set=''
| ac_cv_env_EMACS_value=''
| ac_cv_env_M4_set=''
| ac_cv_env_M4_value=''
| ac_cv_env_build_alias_set=''
| ac_cv_env_build_alias_value=''
| ac_cv_env_host_alias_set=''
| ac_cv_env_host_alias_value=''
| ac_cv_env_target_alias_set=''
| ac_cv_env_target_alias_value=''
| ac_cv_host='powerpc64le-unknown-linux-gnu'
| ac_cv_path_EGREP='/bin/grep -E'
| ac_cv_path_EGREP_TRADITIONAL='/bin/grep -E'
| ac_cv_path_EXPR='/usr/bin/expr'
| ac_cv_path_GREP='/bin/grep'
| ac_cv_path_M4='/usr/bin/m4'
| ac_cv_path_PERL='/usr/bin/perl'
| ac_cv_path_SED='/bin/sed'
| ac_cv_path_install='/usr/bin/install -c'
| ac_cv_path_mkdir='/bin/mkdir'
| ac_cv_perl_flock_implemented='yes'
| ac_cv_prog_AWK='gawk'
| ac_cv_prog_EMACS='emacs'
| ac_cv_prog_TEST_EMACS='emacs'
| ac_cv_prog_emacs_ok='yes'
| ac_cv_prog_gnu_m4_debugfile='--debugfile'
| ac_cv_prog_gnu_m4_gnu='yes'
| ac_cv_prog_make_make_case='yes'
| ac_cv_prog_make_make_set='yes'
| ac_cv_sh_working_n='bash'
| ac_cv_unsupported_fs_chars=''
| am_cv_lispdir='${datadir}/emacs/site-lisp'
| am_cv_make_support_nested_variables='yes'
| 
| ## ----------------- ##
| ## Output variables. ##
| ## ----------------- ##
| 
| ACLOCAL='${SHELL} '\''/home/nbowler/misc/autoconf/build-aux/missing'\'' 
aclocal-1.16'
| AMTAR='$${TAR-tar}'
| AM_BACKSLASH='\'
| AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)'
| AM_DEFAULT_VERBOSITY='0'
| AM_V='$(V)'
| AUTOCONF='${SHELL} '\''/home/nbowler/misc/autoconf/build-aux/missing'\'' 
autoconf'
| AUTOHEADER='${SHELL} '\''/home/nbowler/misc/autoconf/build-aux/missing'\'' 
autoheader'
| AUTOMAKE='${SHELL} '\''/home/nbowler/misc/autoconf/build-aux/missing'\'' 
automake-1.16'
| AWK='gawk'
| CSCOPE='cscope'
| CTAGS='ctags'
| CYGPATH_W='echo'
| DEFS='-DPACKAGE_NAME=\"GNU\ Autoconf\" -DPACKAGE_TARNAME=\"autoconf\" 
-DPACKAGE_VERSION=\"2.72.100-c370\" -DPACKAGE_STRING=\"GNU\ Autoconf\ 
2.72.100-c370\" -DPACKAGE_BUGREPORT=\"[email protected]\" 
-DPACKAGE_URL=\"https://www.gnu.org/software/autoconf/\"; -DPACKAGE=\"autoconf\" 
-DVERSION=\"2.72.100-c370\"'
| ECHO_C=''
| ECHO_N='-n'
| ECHO_T=''
| EGREP='/bin/grep -E'
| EMACS='emacs'
| EMACSLOADPATH=''
| ETAGS='etags'
| EXPR='/usr/bin/expr'
| GREP='/bin/grep'
| HELP2MAN='${SHELL} '\''/home/nbowler/misc/autoconf/build-aux/missing'\'' 
help2man'
| INSTALL_DATA='${INSTALL} -m 644'
| INSTALL_PROGRAM='${INSTALL}'
| INSTALL_SCRIPT='${INSTALL}'
| INSTALL_STRIP_PROGRAM='$(install_sh) -c -s'
| LIBOBJS=''
| LIBS=''
| LTLIBOBJS=''
| M4='/usr/bin/m4'
| M4_DEBUGFILE='--debugfile'
| M4_GNU='--gnu'
| MAKEINFO='${SHELL} '\''/home/nbowler/misc/autoconf/build-aux/missing'\'' 
makeinfo'
| MAKE_CASE_SENSITIVE_FALSE='#'
| MAKE_CASE_SENSITIVE_TRUE=''
| MKDIR_P='/bin/mkdir -p'
| PACKAGE='autoconf'
| PACKAGE_BUGREPORT='[email protected]'
| PACKAGE_NAME='GNU Autoconf'
| PACKAGE_STRING='GNU Autoconf 2.72.100-c370'
| PACKAGE_TARNAME='autoconf'
| PACKAGE_URL='https://www.gnu.org/software/autoconf/'
| PACKAGE_VERSION='2.72.100-c370'
| PATH_SEPARATOR=':'
| PERL='/usr/bin/perl'
| PERL_FLOCK='yes'
| RELEASE_YEAR='2026'
| SED='/bin/sed'
| SET_MAKE=''
| SHELL='/bin/sh'
| SHELL_N='bash'
| STRIP=''
| TEST_EMACS='emacs'
| VERSION='2.72.100-c370'
| ac_cv_dir_trailing_space='yes'
| ac_cv_unsupported_fs_chars=''
| am__isrc=''
| am__leading_dot='.'
| am__tar='$${TAR-tar} chof - "$$tardir"'
| am__untar='$${TAR-tar} xf -'
| bindir='${exec_prefix}/bin'
| build='powerpc64le-unknown-linux-gnu'
| build_alias=''
| build_cpu='powerpc64le'
| build_os='linux-gnu'
| build_vendor='unknown'
| datadir='${datarootdir}'
| datarootdir='${prefix}/share'
| docdir='${datarootdir}/doc/${PACKAGE_TARNAME}'
| dvidir='${docdir}'
| exec_prefix='${prefix}'
| host='powerpc64le-unknown-linux-gnu'
| host_alias=''
| host_cpu='powerpc64le'
| host_os='linux-gnu'
| host_vendor='unknown'
| htmldir='${docdir}'
| includedir='${prefix}/include'
| infodir='${datarootdir}/info'
| install_sh='${SHELL} /home/nbowler/misc/autoconf/build-aux/install-sh'
| libdir='${exec_prefix}/lib'
| libexecdir='${exec_prefix}/libexec'
| lispdir='${datadir}/emacs/site-lisp'
| localedir='${datarootdir}/locale'
| localstatedir='${prefix}/var'
| mandir='${datarootdir}/man'
| mkdir_p='$(MKDIR_P)'
| oldincludedir='/usr/include'
| pdfdir='${docdir}'
| prefix='/home/nbowler/misc/autoconf/inst'
| program_transform_name='s,x,x,'
| psdir='${docdir}'
| runstatedir='${localstatedir}/run'
| sbindir='${exec_prefix}/sbin'
| sharedstatedir='${prefix}/com'
| sysconfdir='${prefix}/etc'
| target_alias=''
| 
| ## ----------- ##
| ## confdefs.h. ##
| ## ----------- ##
| 
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Autoconf"
| #define PACKAGE_TARNAME "autoconf"
| #define PACKAGE_VERSION "2.72.100-c370"
| #define PACKAGE_STRING "GNU Autoconf 2.72.100-c370"
| #define PACKAGE_BUGREPORT "[email protected]"
| #define PACKAGE_URL "https://www.gnu.org/software/autoconf/";
| #define PACKAGE "autoconf"
| #define VERSION "2.72.100-c370"
| 
| configure: exit 0
| 
| ## ---------------------- ##
| ## Running config.status. ##
| ## ---------------------- ##
| 
| This file was extended by GNU Autoconf config.status 2.72.100-c370, which was
| generated by GNU Autoconf 2.72.100-c370.  Invocation command line was
| 
|   CONFIG_FILES    = 
|   CONFIG_HEADERS  = 
|   CONFIG_LINKS    = 
|   CONFIG_COMMANDS = 
|   $ ./config.status 
| 
| on aion
| 
| config.status:773: creating tests/atlocal
| config.status:773: creating Makefile
| config.status:773: creating lib/version.m4
| config.status:976: executing tests/atconfig commands

Reply via email to