source: rtems-schedsim/aclocal/enable-smp.m4 @ 23f57af

Last change on this file since 23f57af was 23f57af, checked in by Joel Sherrill <joel.sherrill@…>, on 05/17/11 at 19:31:33

2011-05-17 Joel Sherrill <joel.sherrill@…>

  • configure.ac, aclocal/enable-smp.m4: Merge and update code. Simulators for Deterministic Priority and SMP Simple Schedulers now work.
  • .cvsignore: New file.
  • Property mode set to 100644
File size: 336 bytes
Line 
1dnl $Id$
2
3AC_DEFUN([RTEMS_ENABLE_SMP],
4[
5## AC_BEFORE([$0], [RTEMS_CHECK_SMP])dnl
6
7AC_ARG_ENABLE(smp,
8[AS_HELP_STRING([--enable-smp],[enable smp interface])],
9[case "${enableval}" in
10  yes) RTEMS_HAS_SMP=yes ;;
11  no) RTEMS_HAS_SMP=no ;;
12  *)  AC_MSG_ERROR(bad value ${enableval} for enable-smp option) ;;
13esac],[RTEMS_HAS_SMP=no])
14])
Note: See TracBrowser for help on using the repository browser.