summaryrefslogtreecommitdiffstats
path: root/c/src/tests
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2001-09-13 13:24:29 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2001-09-13 13:24:29 +0000
commita3ac20f7bba5237b69ee9521871767f8c007b290 (patch)
treec9bfcb2a4b30fc27a1568a3ce41e8000f9089588 /c/src/tests
parent2001-09-13 Joel Sherrill <joel@OARcorp.com> (diff)
downloadrtems-a3ac20f7bba5237b69ee9521871767f8c007b290.tar.bz2
2001-09-13 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* configure.in: autoupdate to autoconf-2.52, new CONFIG_SUBDIRS handling.
Diffstat (limited to 'c/src/tests')
-rw-r--r--c/src/tests/ChangeLog5
-rw-r--r--c/src/tests/configure.in32
2 files changed, 21 insertions, 16 deletions
diff --git a/c/src/tests/ChangeLog b/c/src/tests/ChangeLog
index 380fc3be32..a97c15faf6 100644
--- a/c/src/tests/ChangeLog
+++ b/c/src/tests/ChangeLog
@@ -1,3 +1,8 @@
+2001-09-13 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
+
+ * configure.in: autoupdate to autoconf-2.52, new CONFIG_SUBDIRS
+ handling.
+
2001-05-10 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* configure.in: Remove RTEMS_PROG_CC_FOR_TARGET,
diff --git a/c/src/tests/configure.in b/c/src/tests/configure.in
index 732ee0ea6c..4cb604ffce 100644
--- a/c/src/tests/configure.in
+++ b/c/src/tests/configure.in
@@ -2,8 +2,9 @@ dnl Process this file with autoconf to produce a configure script.
dnl
dnl $Id$
-AC_PREREQ(2.13)
-AC_INIT(samples)
+AC_PREREQ(2.52)
+AC_INIT
+AC_CONFIG_SRCDIR([samples])
RTEMS_TOP(../../..)
AC_CONFIG_AUX_DIR(../../..)
@@ -31,34 +32,33 @@ RTEMS_CHECK_MULTIPROCESSING(RTEMS_BSP)
RTEMS_CHECK_POSIX_API(RTEMS_BSP)
RTEMS_CHECK_ITRON_API(RTEMS_BSP)
+AC_CONFIG_SUBDIRS(tools)
+AC_CONFIG_SUBDIRS(support)
+AC_CONFIG_SUBDIRS(samples)
+
if test "$tests_enabled" = "yes"; then
# do functionality tests first, then performance tests
- cfg_subdirs="libtests sptests"
+ AC_CONFIG_SUBDIRS(libtests sptests)
if test "$HAS_MP" = "yes"; then
- cfg_subdirs="$cfg_subdirs mptests"
+ AC_CONFIG_SUBDIRS(mptests)
fi
if test "$HAS_POSIX_API" = "yes"; then
- cfg_subdirs="$cfg_subdirs psxtests"
+ AC_CONFIG_SUBDIRS(psxtests)
fi
if test "$HAS_ITRON_API" = "yes"; then
- cfg_subdirs="$cfg_subdirs itrontests"
+ AC_CONFIG_SUBDIRS(itrontests)
fi
# Now do performance tests
- cfg_subdirs="$cfg_subdirs tmtests"
+ AC_CONFIG_SUBDIRS(tmtests)
if test "$HAS_ITRON_API" = "yes"; then
- cfg_subdirs="$cfg_subdirs tmitrontests"
+ AC_CONFIG_SUBDIRS(tmitrontests)
fi
fi
AC_SUBST(BARE_CPU_CFLAGS)
AC_SUBST(BARE_CPU_MODEL)
-AC_CONFIG_SUBDIRS(tools)
-AC_CONFIG_SUBDIRS(support)
-AC_CONFIG_SUBDIRS(samples)
-AC_CONFIG_SUBDIRS($cfg_subdirs)
-
# Explicitly list all Makefiles here
-AC_OUTPUT(
-Makefile
-)
+AC_CONFIG_FILES([Makefile
+])
+AC_OUTPUT