source: rtems/c/src/aclocal/enable-multiprocessing.m4 @ 4d3e70f4

4.115
Last change on this file since 4d3e70f4 was aec0e195, checked in by Sebastian Huber <sebastian.huber@…>, on 06/10/13 at 08:10:43

configure: Documentation

  • Property mode set to 100644
File size: 483 bytes
Line 
1AC_DEFUN([RTEMS_ENABLE_MULTIPROCESSING],
2[
3AC_ARG_ENABLE(multiprocessing,
4[AS_HELP_STRING([--enable-multiprocessing],
5[enable multiprocessing interface; the multiprocessing interface is a
6communication interface between different RTEMS instances and allows
7synchronization of objects via message passing])],
8[case "${enable_multiprocessing}" in
9  yes) ;;
10  no) ;;
11  *)  AC_MSG_ERROR(bad value ${enableval} for enable-multiprocessing option) ;;
12esac],[enable_multiprocessing=no])
13])
Note: See TracBrowser for help on using the repository browser.