forked from Imagelibrary/rtems
2011-03-16 Jennifer Averett <jennifer.averett@OARcorp.com>
PR 1729/cpukit * aclocal/enable-smp.m4: New file.
This commit is contained in:
@@ -1,3 +1,8 @@
|
|||||||
|
2011-03-16 Jennifer Averett <jennifer.averett@OARcorp.com>
|
||||||
|
|
||||||
|
PR 1729/cpukit
|
||||||
|
* aclocal/enable-smp.m4: New file.
|
||||||
|
|
||||||
2011-03-14 Joel Sherrill <joel.sherrilL@OARcorp.com>
|
2011-03-14 Joel Sherrill <joel.sherrilL@OARcorp.com>
|
||||||
|
|
||||||
* Makefile.maint: Remove started_ada.
|
* Makefile.maint: Remove started_ada.
|
||||||
|
|||||||
18
aclocal/enable-smp.m4
Normal file
18
aclocal/enable-smp.m4
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
dnl $Id$
|
||||||
|
|
||||||
|
AC_DEFUN([RTEMS_ENABLE_SMP],
|
||||||
|
[
|
||||||
|
## AC_BEFORE([$0], [RTEMS_CHECK_SMP])dnl
|
||||||
|
|
||||||
|
AC_ARG_ENABLE(smp,
|
||||||
|
[AS_HELP_STRING([--enable-smp],[enable smp interface])],
|
||||||
|
[case "${enableval}" in
|
||||||
|
yes) case "${RTEMS_CPU}" in
|
||||||
|
sparc|i386) RTEMS_HAS_SMP=no ;;
|
||||||
|
*) RTEMS_HAS_SMP=no ;;
|
||||||
|
esac
|
||||||
|
;;
|
||||||
|
no) RTEMS_HAS_SMP=no ;;
|
||||||
|
*) AC_MSG_ERROR(bad value ${enableval} for enable-smp option) ;;
|
||||||
|
esac],[RTEMS_HAS_SMP=no])
|
||||||
|
])
|
||||||
Reference in New Issue
Block a user