2003-11-26 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* aclocal/bsp-alias.m4, aclocal/canonical-target-name.m4,
aclocal/check-bsps.m4, aclocal/check-custom-bsp.m4,
aclocal/enable-bare.m4, aclocal/enable-cxx.m4,
aclocal/enable-inlines.m4, aclocal/enable-itron.m4,
aclocal/enable-multiprocessing.m4, aclocal/enable-networking.m4,
aclocal/enable-posix.m4, aclocal/enable-rdbg.m4,
aclocal/enable-rtems-debug.m4, aclocal/enable-rtemsbsp.m4,
aclocal/enable-tests.m4, aclocal/multilib.m4,
aclocal/path-ksh.m4, aclocal/project-root.m4,
aclocal/rtems-top.m4, aclocal/tool-paths.m4,
acinclude.m4:
Fix underquoting to silence automake-1.8.
2003-11-26 05:32:03 +00:00
|
|
|
AC_DEFUN([RTEMS_ENABLE_MULTIPROCESSING],
|
1999-03-19 21:54:36 +00:00
|
|
|
[
|
|
|
|
|
AC_ARG_ENABLE(multiprocessing,
|
2008-02-20 13:09:29 +00:00
|
|
|
[AS_HELP_STRING([--enable-multiprocessing],
|
2013-06-10 10:10:43 +02:00
|
|
|
[enable multiprocessing interface; the multiprocessing interface is a
|
|
|
|
|
communication interface between different RTEMS instances and allows
|
|
|
|
|
synchronization of objects via message passing])],
|
2018-04-09 16:36:12 +10:00
|
|
|
[case "${enable_multiprocessing}" in
|
|
|
|
|
yes) test -z $enable_rtemsbsp && AC_MSG_ERROR([Multiprocessing requires BSPs to be provided, none have, see --enable-rtemsbsp])
|
|
|
|
|
;;
|
2002-06-30 06:27:36 +00:00
|
|
|
no) ;;
|
1999-03-19 21:54:36 +00:00
|
|
|
*) AC_MSG_ERROR(bad value ${enableval} for enable-multiprocessing option) ;;
|
2002-06-30 06:27:36 +00:00
|
|
|
esac],[enable_multiprocessing=no])
|
1999-03-19 21:54:36 +00:00
|
|
|
])
|