summaryrefslogtreecommitdiff
path: root/m4
diff options
context:
space:
mode:
authorAkim Demaille <akim@epita.fr>2001-08-27 07:18:39 +0000
committerAkim Demaille <akim@epita.fr>2001-08-27 07:18:39 +0000
commit1e3115ec74d09a4af223eaaa0905389b7e20bb44 (patch)
tree975d474b53bb23676195925ac9934c95a7528ba3 /m4
parentbec2fc5d4ea4eadb0d2d039ee0030b579c1285bb (diff)
downloadautoconf-1e3115ec74d09a4af223eaaa0905389b7e20bb44.tar.gz
* m4/atconfig.m4 (AT_CONFIG): Remove, replaced by...
* lib/autoconf/autotest.m4 (AC_CONFIG_TESTDIR): this. New file. * m4/Makefile.am (EXTRA_DIST): Oops, adjust...
Diffstat (limited to 'm4')
-rw-r--r--m4/Makefile.am16
-rw-r--r--m4/Makefile.in14
-rw-r--r--m4/atconfig.m474
3 files changed, 19 insertions, 85 deletions
diff --git a/m4/Makefile.am b/m4/Makefile.am
index ed9394d4..8fb55c61 100644
--- a/m4/Makefile.am
+++ b/m4/Makefile.am
@@ -18,9 +18,13 @@
## Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
## 02111-1307, USA.
-EXTRA_DIST = \
-atconfig.m4 \
-init.m4 \
-m4.m4 \
-missing.m4 \
-sanity.m4
+EXTRA_DIST = \
+auxdir.m4 \
+cond.m4 \
+depend.m4 \
+init.m4 \
+install-sh.m4 \
+m4.m4 \
+missing.m4 \
+sanity.m4 \
+strip.m4
diff --git a/m4/Makefile.in b/m4/Makefile.in
index 90a038b0..fd6e3d9b 100644
--- a/m4/Makefile.in
+++ b/m4/Makefile.in
@@ -65,11 +65,15 @@ PERL = @PERL@
VERSION = @VERSION@
EXTRA_DIST = \
-atconfig.m4 \
-init.m4 \
-m4.m4 \
-missing.m4 \
-sanity.m4
+auxdir.m4 \
+cond.m4 \
+depend.m4 \
+init.m4 \
+install-sh.m4 \
+m4.m4 \
+missing.m4 \
+sanity.m4 \
+strip.m4
subdir = m4
mkinstalldirs = $(SHELL) $(top_srcdir)/config/mkinstalldirs
diff --git a/m4/atconfig.m4 b/m4/atconfig.m4
deleted file mode 100644
index d516f652..00000000
--- a/m4/atconfig.m4
+++ /dev/null
@@ -1,74 +0,0 @@
-## ----------------------## -*- Autoconf -*-
-## Prepare for testing. ##
-## ----------------------##
-
-#serial 6
-
-# Copyright 2000, 2001 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 2, 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, write to the Free Software
-# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
-# 02111-1307, USA.
-
-
-# AT_CONFIG(TEST-DIRECTORY, [AUTOTEST-PATH = .])
-# ----------------------------------------------
-# Configure the test suite.
-#
-# AUTOTEST-PATH must help the test suite to find the executables,
-# i.e., if the executables are in `src/', pass `src'. If there are
-# also executables in the source tree, use `src:$top_srcdir/src'.
-
-AC_DEFUN([AT_CONFIG],
-[AC_CONFIG_COMMANDS([$1/atconfig],
-[cat >$1/atconfig <<ATEOF
-@%:@ Configurable variable values for building test suites.
-@%:@ Generated by $[0]
-@%:@ Copyright 2000, 2001 Free Software Foundation, Inc.
-
-at_package='$at_package'
-at_version='$at_version'
-at_bugreport='$at_bugreport'
-
-at_n='$at_n'
-at_c='$at_c'
-
-at_testdir='$1'
-at_topbuild_2_topsrc='$at_topbuild_2_topsrc'
-
-AUTOTEST_PATH='m4_default([$2], [.])'
-
-SHELL=\${CONFIG_SHELL-'$at_shell'}
-PATH_SEPARATOR='$at_path_separator'
-
-ATEOF
-],
-[at_package='$PACKAGE_NAME'
-at_version='$PACKAGE_VERSION'
-at_bugreport='$PACKAGE_BUGREPORT'
-
-at_n='$ECHO_N'
-at_c='$ECHO_C'
-
-# Path from top_build to top_src
-at_topbuild_2_topsrc=$srcdir
-
-at_shell='$SHELL'
-at_path_separator='$PATH_SEPARATOR'
-])
-
-if test -f $srcdir/$1/atlocal.in; then
- AC_CONFIG_FILES([$1/atlocal])
-fi
-])# AT_CONFIG