2003-08-18 Ralf Corsepius <corsepiu@faw.uni-ulm.de>

* aclocal/rtems-debug.m4: Remove.
	* aclocal/enable-rtems-debug.m4: New (Split out from rtems-debug.m4).
	* aclocal/check-rtems-debug.m4: New (Split out from rtems-debug.m4).
This commit is contained in:
Ralf Corsepius
2003-08-18 09:45:40 +00:00
parent 34e0a9f6d5
commit 30d5640fff
3 changed files with 13 additions and 7 deletions

View File

@@ -1,3 +1,9 @@
2003-08-18 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* aclocal/rtems-debug.m4: Remove.
* aclocal/enable-rtems-debug.m4: New (Split out from rtems-debug.m4).
* aclocal/check-rtems-debug.m4: New (Split out from rtems-debug.m4).
2003-08-18 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2003-08-18 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* automake/local.am: Remove "debug". * automake/local.am: Remove "debug".

View File

@@ -0,0 +1,7 @@
## $Id$
AC_DEFUN(RTEMS_CHECK_RTEMS_DEBUG,
[AC_REQUIRE([RTEMS_ENABLE_RTEMS_DEBUG])
AS_IF([test x"${enable_rtems_debug}" = x"yes"]
[AC_DEFINE_UNQUOTED(RTEMS_DEBUG,1,[if RTEMS_DEBUG is enabled])])
])

View File

@@ -10,10 +10,3 @@ AC_HELP_STRING([--enable-rtems-debug],[enable RTEMS_DEBUG]),
*) AC_MSG_ERROR([bad value ${enable_rtems_debug} for RTEMS_DEBUG]) ;; *) AC_MSG_ERROR([bad value ${enable_rtems_debug} for RTEMS_DEBUG]) ;;
esac],[enable_rtems_debug=no]) esac],[enable_rtems_debug=no])
]) ])
AC_DEFUN(RTEMS_CHECK_RTEMS_DEBUG,
[AC_REQUIRE([RTEMS_ENABLE_RTEMS_DEBUG])
AS_IF([test x"${enable_rtems_debug}" = x"yes"]
[AC_DEFINE_UNQUOTED(RTEMS_DEBUG,1,[if RTEMS_DEBUG is enabled])])
])