2011-03-16 Jennifer Averett <jennifer.averett@OARcorp.com>

PR 1729/cpukit
	* aclocal/enable-smp.m4: New file.
This commit is contained in:
Joel Sherrill
2011-03-16 20:06:55 +00:00
parent 7f32fa4643
commit 054b1c6fe9
2 changed files with 23 additions and 0 deletions

View File

@@ -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>
* Makefile.maint: Remove started_ada.

18
aclocal/enable-smp.m4 Normal file
View 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])
])