From d878722346df898bee412408f0724dcc79429671 Mon Sep 17 00:00:00 2001 From: Alexandre Duret-Lutz Date: Fri, 19 Jul 2002 20:23:37 +0000 Subject: [PATCH] * tests/dirname.test: Delete. We don't define _AM_DIRNAME anymore. * tests/Makefile.am (TESTS): Remove dirname.test. --- ChangeLog | 3 +++ tests/Makefile.am | 1 - tests/Makefile.in | 2 +- tests/dirname.test | 38 -------------------------------------- 4 files changed, 4 insertions(+), 40 deletions(-) delete mode 100755 tests/dirname.test diff --git a/ChangeLog b/ChangeLog index ddd5eed5..83b3f855 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2002-07-19 Alexandre Duret-Lutz + * tests/dirname.test: Delete. We don't define _AM_DIRNAME anymore. + * tests/Makefile.am (TESTS): Remove dirname.test. + * m4/init.m4: Require Autoconf 2.53b. * m4/header.m4 (AM_CONFIG_HEADER): Redefine using AU_DEFUN. * m4/ccstdc.m4 (fp_PROG_CC_STDC): New AU_DEFUN. diff --git a/tests/Makefile.am b/tests/Makefile.am index d4bade7a..dbed2d19 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -132,7 +132,6 @@ depend3.test \ depend4.test \ destdir.test \ dirforbid.test \ -dirname.test \ discover.test \ distcommon.test \ distcommon2.test \ diff --git a/tests/Makefile.in b/tests/Makefile.in index 108732fd..1447a931 100644 --- a/tests/Makefile.in +++ b/tests/Makefile.in @@ -52,6 +52,7 @@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LIBS = @LIBS@ LN = @LN@ +LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ @@ -219,7 +220,6 @@ depend3.test \ depend4.test \ destdir.test \ dirforbid.test \ -dirname.test \ discover.test \ distcommon.test \ distcommon2.test \ diff --git a/tests/dirname.test b/tests/dirname.test deleted file mode 100755 index 40c44571..00000000 --- a/tests/dirname.test +++ /dev/null @@ -1,38 +0,0 @@ -#! /bin/sh - -# Test the operation of the _AM_DIRNAME macro from m4/header.m4 - -. $srcdir/defs || exit 1 - -cat > configure.in << 'END' -AC_INIT -echo "1 /a/path/to/a/file = _AM_DIRNAME([/a/path/to/a/file])" -echo "2 another/path/to/a/file = _AM_DIRNAME([another/path/to/a/file])" -echo "3 file = _AM_DIRNAME([file])" -echo "4 // = _AM_DIRNAME([//])" -echo "5 //file = _AM_DIRNAME([//file])" -echo "6 / = _AM_DIRNAME([/])" -echo "7 /file = _AM_DIRNAME([/file])" -END - -$ACLOCAL || exit 1 -# fail gracefully if autoconf didn't support support our regexps anyhow -$AUTOCONF || exit 77 - -# Use --quiet otherwise unwelcome messages like "loading site script" -# would cause a failure. -./configure --quiet >got || exit 1 - -cat >wanted <