summaryrefslogtreecommitdiffstats
path: root/cpukit/aclocal/enable-multiprocessing.m4
diff options
context:
space:
mode:
authorJoel Sherrill <joel@rtems.org>2021-11-24 12:03:57 -0600
committerJoel Sherrill <joel@rtems.org>2021-11-29 09:05:10 -0600
commite945e3fc4d6a6a74789c9a348120ec7d06e19231 (patch)
treeada9d52d13385f9b1adc561eadf0adf47f3a112b /cpukit/aclocal/enable-multiprocessing.m4
parentbsp_specs: Delete last remnants of these. (diff)
downloadrtems-e945e3fc4d6a6a74789c9a348120ec7d06e19231.tar.bz2
*/aclocal/*: Remove remnants of autoconf/automae build system
Updates #4081.
Diffstat (limited to '')
-rw-r--r--cpukit/aclocal/enable-multiprocessing.m413
1 files changed, 0 insertions, 13 deletions
diff --git a/cpukit/aclocal/enable-multiprocessing.m4 b/cpukit/aclocal/enable-multiprocessing.m4
deleted file mode 100644
index 53fa8ffe81..0000000000
--- a/cpukit/aclocal/enable-multiprocessing.m4
+++ /dev/null
@@ -1,13 +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) ;;
- no) ;;
- *) AC_MSG_ERROR(bad value ${enableval} for enable-multiprocessing option) ;;
-esac],[enable_multiprocessing=no])
-])