summaryrefslogtreecommitdiffstats
path: root/c/src/aclocal/enable-multiprocessing.m4
blob: 035292f7de45f3dd5cb3a44b1f671ecf215b0724 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
AC_DEFUN([RTEMS_ENABLE_MULTIPROCESSING],
[
AC_ARG_ENABLE(multiprocessing,
[AS_HELP_STRING(--enable-multiprocessing,enable multiprocessing interface)],
[case "${enable_multiprocessing}" in 
  yes) ;;
  no) ;;
  *)  AC_MSG_ERROR(bad value ${enableval} for enable-multiprocessing option) ;;
esac],[enable_multiprocessing=no])
])