summaryrefslogtreecommitdiffstats
path: root/aclocal/enable-multiprocessing.m4
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2002-06-30 06:27:36 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2002-06-30 06:27:36 +0000
commit0f8ae13cac17677d26200fb61bc2a2ceaa4f1b73 (patch)
treed938b1df38c4994a9a1221f47908b31a9e9b64ac /aclocal/enable-multiprocessing.m4
parent2002-06-30 Ralf Corsepius <corsepiu@faw.uni-ulm.de> (diff)
downloadrtems-0f8ae13cac17677d26200fb61bc2a2ceaa4f1b73.tar.bz2
2002-06-30 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* aclocal/check-multiprocessing.m4: Reworked. * aclocal/enable-multiprocessing.m4: Remove RTEMS_HAS_MULTIPROCESSING.
Diffstat (limited to '')
-rw-r--r--aclocal/enable-multiprocessing.m49
1 files changed, 4 insertions, 5 deletions
diff --git a/aclocal/enable-multiprocessing.m4 b/aclocal/enable-multiprocessing.m4
index 6e9a87e04a..3a575713a5 100644
--- a/aclocal/enable-multiprocessing.m4
+++ b/aclocal/enable-multiprocessing.m4
@@ -4,10 +4,9 @@ AC_DEFUN(RTEMS_ENABLE_MULTIPROCESSING,
[
AC_ARG_ENABLE(multiprocessing,
AC_HELP_STRING([--enable-multiprocessing],[enable multiprocessing interface]),
-[case "${enableval}" in
- yes) RTEMS_HAS_MULTIPROCESSING=yes ;;
- no) RTEMS_HAS_MULTIPROCESSING=no ;;
+[case "${enable_multiprocessing}" in
+ yes) ;;
+ no) ;;
*) AC_MSG_ERROR(bad value ${enableval} for enable-multiprocessing option) ;;
-esac],[RTEMS_HAS_MULTIPROCESSING=no])
-AC_SUBST(RTEMS_HAS_MULTIPROCESSING)dnl
+esac],[enable_multiprocessing=no])
])