mirror of
https://github.com/t-crest/rtems.git
synced 2025-11-16 12:34:47 +00:00
* configure.ac: Reworked for multilibs, reflect changes to aclocal/*.m4. * aclocal/subdirs.m4: New file. * aclocal/multi.m4: New file, adopted from autoconf-2.52 w/ modifications. * aclocal/check-posix.m4: Apply AS_IF. * aclocal/config-subdirs.m4: Reflect changes to other m4-macros. * aclocal/env-rtemsbsp.m4: Add PROJECT_INCLUDE, PROJECT_RELEASE. Add AM_CONDITIONAL(MULTILIB). Adapt GCC_SPECS to multilibs. * aclocal/env-rtemscpu.m4: Remove RTEMS_BSP. Add support for MULTIBUILDTOP, MULTISUBDIR. Adapt GCC_SPECS to multilibs. Add PROJECT_INCLUDE, PROJECT_RELEASE, includedir, libdir. * aclocal/multilib.m4: Fix m4-quoting, adopt automake-1.5's OUTPUT_COMMANDS. * aclocal/project-root.m4: Remove PROJECT_INCLUDE, PROJECT_RELEASE. * aclocal/rtems-debug.m4: Minor cleanups. * aclocal/rtems-top.m4: Minor cleanups. * automake/compile.am: Further steps towards automake's rules.
20 lines
531 B
Plaintext
20 lines
531 B
Plaintext
## $Id$
|
|
|
|
AC_DEFUN(RTEMS_ENABLE_RTEMS_DEBUG,
|
|
[
|
|
AC_ARG_ENABLE(rtems-debug,
|
|
AC_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])
|
|
])
|
|
|
|
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])])
|
|
])
|
|
|