mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2025-11-16 12:34:45 +00:00
14 lines
341 B
Plaintext
14 lines
341 B
Plaintext
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])
|
|
])
|