source: rtems/cpukit/aclocal/check-multiprocessing.m4 @ 5b2e199

4.104.114.84.95
Last change on this file since 5b2e199 was 5b2e199, checked in by Ralf Corsepius <ralf.corsepius@…>, on 10/21/03 at 14:51:01

2003-10-21 Ralf Corsepius <corsepiu@…>

  • aclocal/check-multiprocessing.m4: Add m4-quotes. Remove RTEMS_CHECK_CPU.
  • aclocal/check-itron.m4: Add m4-quotes. Require RTEMS_CANONICAL_TARGET_CPU instead of RTEMS_CHECK_CPU.
  • aclocal/check-networking.m4: Add m4-quotes. Require RTEMS_CANONICAL_TARGET_CPU instead of RTEMS_CHECK_CPU.
  • aclocal/check-cpu.m4: Remove.
  • aclocal/canonical-target-name.m4: Add m4-quotes.
  • configure.ac: Merge-in former aclocal/check-cpu.m4.
  • Property mode set to 100644
File size: 438 bytes
Line 
1dnl
2dnl $Id$
3dnl
4
5AC_DEFUN([RTEMS_CHECK_MULTIPROCESSING],
6[dnl
7AC_REQUIRE([RTEMS_ENV_RTEMSCPU])dnl
8AC_REQUIRE([RTEMS_ENABLE_MULTIPROCESSING])dnl
9
10AS_IF([test "$enable_multiprocessing" = "yes"],
11  [HAS_MP="yes"],
12  [HAS_MP="no"])
13])
14
15AC_DEFUN(RTEMS_DEFINE_MULTIPROCESSING,
16[AC_REQUIRE([RTEMS_CHECK_MULTIPROCESSING])dnl
17if test x"${HAS_MP}" = x"yes";
18then
19  AC_DEFINE_UNQUOTED(RTEMS_MULTIPROCESSING,1,[if multiprocessing is enabled])
20fi
21])
Note: See TracBrowser for help on using the repository browser.