summaryrefslogtreecommitdiffstats
path: root/aclocal/enable-multiprocessing.m4
blob: 53fa8ffe8141d27ba97f7ccb3d2142343bebf362 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
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])
])