source: rtems/cpukit/aclocal/enable-smp.m4 @ bbed1866

4.115
Last change on this file since bbed1866 was 9b4422a2, checked in by Joel Sherrill <joel.sherrill@…>, on 05/03/12 at 15:09:24

Remove All CVS Id Strings Possible Using a Script

Script does what is expected and tries to do it as
smartly as possible.

+ remove occurrences of two blank comment lines

next to each other after Id string line removed.

+ remove entire comment blocks which only exited to

contain CVS Ids

+ If the processing left a blank line at the top of

a file, it was removed.

  • Property mode set to 100644
File size: 433 bytes
RevLine 
[06dcaf0]1AC_DEFUN([RTEMS_ENABLE_SMP],
2[
3## AC_BEFORE([$0], [RTEMS_CHECK_SMP])dnl
4
5AC_ARG_ENABLE(smp,
6[AS_HELP_STRING([--enable-smp],[enable smp interface])],
7[case "${enableval}" in
8  yes) case "${RTEMS_CPU}" in
9         sparc|i386) RTEMS_HAS_SMP=yes ;;
10         *)          RTEMS_HAS_SMP=no ;;
11       esac
12       ;;
13  no) RTEMS_HAS_SMP=no ;;
14  *)  AC_MSG_ERROR(bad value ${enableval} for enable-smp option) ;;
15esac],[RTEMS_HAS_SMP=no])
16])
Note: See TracBrowser for help on using the repository browser.