summaryrefslogtreecommitdiffstats
path: root/aclocal/enable-multiprocessing.m4
diff options
context:
space:
mode:
Diffstat (limited to 'aclocal/enable-multiprocessing.m4')
-rw-r--r--aclocal/enable-multiprocessing.m414
1 files changed, 0 insertions, 14 deletions
diff --git a/aclocal/enable-multiprocessing.m4 b/aclocal/enable-multiprocessing.m4
deleted file mode 100644
index 6f8843d1f6..0000000000
--- a/aclocal/enable-multiprocessing.m4
+++ /dev/null
@@ -1,14 +0,0 @@
-AC_DEFUN([RTEMS_ENABLE_MULTIPROCESSING],
-[
-AC_ARG_ENABLE(multiprocessing,
-[AS_HELP_STRING([--enable-multiprocessing],
-[enable multiprocessing interface; the multiprocessing interface is a
-communication interface between different RTEMS instances and allows
-synchronization of objects via message passing])],
-[case "${enable_multiprocessing}" in
- yes) test -z $enable_rtemsbsp && AC_MSG_ERROR([Multiprocessing requires BSPs to be provided, none have, see --enable-rtemsbsp])
- ;;
- no) ;;
- *) AC_MSG_ERROR(bad value ${enableval} for enable-multiprocessing option) ;;
-esac],[enable_multiprocessing=no])
-])