forked from Imagelibrary/rtems
* configure.ac: Remove references to RTEMS_BSP. * aclocal/check-multiprocessing.m4: Remove references to RTEMS_BSP. Allow building w/ --enable-multiprocessing --enable-multilib. * aclocal/enable-multiprocessing.m4: Eliminate RTEMS_HAS_MULTIPROCESSING.
13 lines
337 B
Plaintext
13 lines
337 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])
|
|
])
|