source: rtems/cpukit/aclocal/check-smp.m4 @ c130387

5
Last change on this file since c130387 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: 333 bytes
Line 
1dnl
2AC_DEFUN([RTEMS_CHECK_SMP],
3[dnl
4AC_REQUIRE([RTEMS_ENABLE_SMP])dnl
5
6AC_CACHE_CHECK([whether CPU supports SMP],
7  rtems_cv_HAS_SMP,
8  [dnl
9    case "$RTEMS_CPU" in
10    *)
11      if test "${RTEMS_HAS_SMP}" = "yes"; then
12        rtems_cv_HAS_SMP="yes";
13      else
14        rtems_cv_HAS_SMP="disabled";
15      fi
16      ;;
17    esac])
18])
Note: See TracBrowser for help on using the repository browser.