* tests/foreign.at (Libtool): Don't skip 1.3.5.

Invoke AC_CANONICAL_SYSTEM ---for some reason AC_CANONICAL_HOST is
not enough for 1.3.5.
From Lars J. Aas.
This commit is contained in:
Akim Demaille 2001-03-20 14:15:59 +00:00
parent 125764c93d
commit c65009836b
2 changed files with 10 additions and 2 deletions

View File

@ -1,3 +1,10 @@
2001-03-20 Akim Demaille <akim@epita.fr>
* tests/foreign.at (Libtool): Don't skip 1.3.5.
Invoke AC_CANONICAL_SYSTEM ---for some reason AC_CANONICAL_HOST is
not enough for 1.3.5.
From Lars J. Aas.
2001-03-20 Akim Demaille <akim@epita.fr>
* tests/atgeneral.m4: s/Testing suite/Test suite/g.

View File

@ -11,8 +11,8 @@ AT_SETUP([[Libtool]])
# Skip this test if there is no libtoolize.
AT_CHECK([libtoolize --version || exit 77],
ignore, ignore, ignore)
# CVS Autoconf does not work with Libtool 1.3.5.
AT_CHECK([[libtoolize --version | egrep '1\.3(\.[0-5])?$' && exit 77]],
# CVS Autoconf probably does not work with too old Libtools.
AT_CHECK([[libtoolize --version | egrep '1\.3(\.[0-4])?$' && exit 77]],
ignore, ignore, ignore)
# FIXME: Once Libtool `configure.ac' aware, change this.
@ -36,6 +36,7 @@ cp `cat stdout` configure.in
cat >>configure.in <<_EOF
AC_INIT
AC_CONFIG_AUX_DIR(.)
AC_CANONICAL_SYSTEM
AC_PROG_LIBTOOL
_EOF