source: rtems/aclocal/enable-rtems-debug.m4 @ d2c6e4c1

4.104.114.84.95
Last change on this file since d2c6e4c1 was d2c6e4c1, checked in by Ralf Corsepius <ralf.corsepius@…>, on 08/22/03 at 04:21:16

2003-08-22 Ralf Corsepius <corsepiu@…>

  • aclocal/enable-rtems-debug.m4: New (Missed in yesterday's patches).
  • aclocal/enable-tests.m4: Change to support --enable-tests=no|yes|samples, default is samples.
  • Property mode set to 100644
File size: 338 bytes
Line 
1## $Id$
2
3AC_DEFUN(RTEMS_ENABLE_RTEMS_DEBUG,
4[
5AC_ARG_ENABLE(rtems-debug,
6AC_HELP_STRING([--enable-rtems-debug],[enable RTEMS_DEBUG]),
7[case "${enable_rtems_debug}" in
8  yes) enable_rtems_debug=yes ;;
9  no)  enable_rtems_debug=no ;;
10  *) AC_MSG_ERROR([bad value ${enable_rtems_debug} for RTEMS_DEBUG]) ;;
11esac],[enable_rtems_debug=no])
12])
Note: See TracBrowser for help on using the repository browser.