2005-11-09 Ralf Corsepius <ralf.corsepius@rtems.org>

* configure.ac: Fix config-variables of conditionally built subdirs.
This commit is contained in:
Ralf Corsepius
2005-11-09 12:11:32 +00:00
parent 3f74676065
commit fbe6a00c09
2 changed files with 8 additions and 4 deletions

View File

@@ -1,3 +1,7 @@
2005-11-09 Ralf Corsepius <ralf.corsepius@rtems.org>
* configure.ac: Fix config-variables of conditionally built subdirs.
2005-11-09 Ralf Corsepius <ralf.corsepius@rtems.org> 2005-11-09 Ralf Corsepius <ralf.corsepius@rtems.org>
* aclocal/check-itron.m4, aclocal/check-multiprocessing.m4, * aclocal/check-itron.m4, aclocal/check-multiprocessing.m4,

View File

@@ -36,18 +36,18 @@ esac
if test "$enable_tests" = "yes"; then if test "$enable_tests" = "yes"; then
# do functionality tests first, then performance tests # do functionality tests first, then performance tests
AC_CONFIG_SUBDIRS(libtests sptests) AC_CONFIG_SUBDIRS(libtests sptests)
if test "$rtems_cv_HAS_MULTIPROCESSING" = "yes"; then if test "$rtems_cv_RTEMS_MULTIPROCESSING" = "yes"; then
AC_CONFIG_SUBDIRS(mptests) AC_CONFIG_SUBDIRS(mptests)
fi fi
if test "$rtems_cv_HAS_POSIX_API" = "yes"; then if test "$rtems_cv_RTEMS_POSIX_API" = "yes"; then
AC_CONFIG_SUBDIRS(psxtests) AC_CONFIG_SUBDIRS(psxtests)
fi fi
if test "$rtems_cv_HAS_ITRON_API" = "yes"; then if test "$rtems_cv_RTEMS_ITRON_API" = "yes"; then
AC_CONFIG_SUBDIRS(itrontests) AC_CONFIG_SUBDIRS(itrontests)
fi fi
# Now do performance tests # Now do performance tests
AC_CONFIG_SUBDIRS(tmtests) AC_CONFIG_SUBDIRS(tmtests)
if test "$rtems_cv_HAS_ITRON_API" = "yes"; then if test "$rtems_cv_RTEMS_ITRON_API" = "yes"; then
AC_CONFIG_SUBDIRS(tmitrontests) AC_CONFIG_SUBDIRS(tmitrontests)
fi fi
fi fi