summaryrefslogtreecommitdiffstats
path: root/testsuites/aclocal/enable-multiprocessing.m4
blob: 129de0a735803a10781316bd36d9884c558e9c5c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
dnl $Id$

AC_DEFUN(RTEMS_ENABLE_MULTIPROCESSING,
[
AC_ARG_ENABLE(multiprocessing,
[AC_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])
])