mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2025-11-16 12:34:45 +00:00
13 lines
340 B
Plaintext
13 lines
340 B
Plaintext
## $Id$
|
|
|
|
AC_DEFUN([RTEMS_ENABLE_RTEMS_DEBUG],
|
|
[
|
|
AC_ARG_ENABLE(rtems-debug,
|
|
AS_HELP_STRING([--enable-rtems-debug],[enable RTEMS_DEBUG]),
|
|
[case "${enable_rtems_debug}" in
|
|
yes) enable_rtems_debug=yes ;;
|
|
no) enable_rtems_debug=no ;;
|
|
*) AC_MSG_ERROR([bad value ${enable_rtems_debug} for RTEMS_DEBUG]) ;;
|
|
esac],[enable_rtems_debug=no])
|
|
])
|