mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2026-09-22 14:07:25 +08:00
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.
19 lines
333 B
Plaintext
19 lines
333 B
Plaintext
dnl
|
|
AC_DEFUN([RTEMS_CHECK_SMP],
|
|
[dnl
|
|
AC_REQUIRE([RTEMS_ENABLE_SMP])dnl
|
|
|
|
AC_CACHE_CHECK([whether CPU supports SMP],
|
|
rtems_cv_HAS_SMP,
|
|
[dnl
|
|
case "$RTEMS_CPU" in
|
|
*)
|
|
if test "${RTEMS_HAS_SMP}" = "yes"; then
|
|
rtems_cv_HAS_SMP="yes";
|
|
else
|
|
rtems_cv_HAS_SMP="disabled";
|
|
fi
|
|
;;
|
|
esac])
|
|
])
|