summaryrefslogtreecommitdiffstats
path: root/aclocal/rtems-debug.m4
diff options
context:
space:
mode:
Diffstat (limited to 'aclocal/rtems-debug.m4')
-rw-r--r--aclocal/rtems-debug.m416
1 files changed, 7 insertions, 9 deletions
diff --git a/aclocal/rtems-debug.m4 b/aclocal/rtems-debug.m4
index e68e4b707f..9a9f15a33f 100644
--- a/aclocal/rtems-debug.m4
+++ b/aclocal/rtems-debug.m4
@@ -4,18 +4,16 @@ AC_DEFUN(RTEMS_ENABLE_RTEMS_DEBUG,
[
AC_ARG_ENABLE(rtems-debug,
AC_HELP_STRING([--enable-rtems-debug],[enable RTEMS_DEBUG]),
-[case "${enableval}" in
- yes) RTEMS_DEBUG=yes ;;
- no) RTEMS_DEBUG=no ;;
- *) AC_MSG_ERROR([bad value ${enableval} for RTEMS_DEBUG]) ;;
-esac],[RTEMS_DEBUG=no])
+[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])
])
AC_DEFUN(RTEMS_CHECK_RTEMS_DEBUG,
[AC_REQUIRE([RTEMS_ENABLE_RTEMS_DEBUG])
-if test x"${RTEMS_DEBUG}" = x"yes";
-then
- AC_DEFINE_UNQUOTED(RTEMS_DEBUG,1,[if RTEMS_DEBUG is enabled])
-fi
+AS_IF([test x"${enable_rtems_debug}" = x"yes"]
+ [AC_DEFINE_UNQUOTED(RTEMS_DEBUG,1,[if RTEMS_DEBUG is enabled])])
])