forked from Imagelibrary/rtems
* configure.ac, aclocal/enable-bare.m4, aclocal/enable-inlines.m4, aclocal/enable-itron.m4, aclocal/enable-multiprocessing.m4, aclocal/enable-networking.m4, aclocal/enable-posix.m4, aclocal/enable-rtems-debug.m4, aclocal/multi.m4, aclocal/multilib.m4: Use AS_HELP_STRING instead of AC_HELP_STRING (deprecated in autoconf-2.59) * automake/local.am: Remove clean-local, depend-gcc.
13 lines
336 B
Plaintext
13 lines
336 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])
|
|
])
|