forked from Imagelibrary/rtems
* aclocal/enable-multiprocessing.m4: enable_multiprocessing=no. * aclocal/prog-cc.m4: Remove obsolete comments. Comment out GCCSED.
13 lines
336 B
Plaintext
13 lines
336 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])
|
|
])
|