Changeset 3959276e in rtems
- Timestamp:
- 11/26/03 05:32:03 (20 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- dfc099fd
- Parents:
- de691e68
- Files:
-
- 22 edited
Legend:
- Unmodified
- Added
- Removed
-
ChangeLog
rde691e68 r3959276e 1 2003-11-26 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 3 * aclocal/bsp-alias.m4, aclocal/canonical-target-name.m4, 4 aclocal/check-bsps.m4, aclocal/check-custom-bsp.m4, 5 aclocal/enable-bare.m4, aclocal/enable-cxx.m4, 6 aclocal/enable-inlines.m4, aclocal/enable-itron.m4, 7 aclocal/enable-multiprocessing.m4, aclocal/enable-networking.m4, 8 aclocal/enable-posix.m4, aclocal/enable-rdbg.m4, 9 aclocal/enable-rtems-debug.m4, aclocal/enable-rtemsbsp.m4, 10 aclocal/enable-tests.m4, aclocal/multilib.m4, 11 aclocal/path-ksh.m4, aclocal/project-root.m4, 12 aclocal/rtems-top.m4, aclocal/tool-paths.m4, 13 acinclude.m4: 14 Fix underquoting to silence automake-1.8. 15 1 16 2003-10-23 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 17 -
acinclude.m4
rde691e68 r3959276e 333 333 ]) 334 334 335 AC_DEFUN( _RTEMS_BUILD_CONFIG_PREPARE,[335 AC_DEFUN([_RTEMS_BUILD_CONFIG_PREPARE],[ 336 336 ## # Record the configure arguments in Makefile. 337 337 m4_ifdef([_RTEMS_BUILD_CONFIGDIRS_LIST], … … 359 359 ]) 360 360 361 AC_DEFUN( _RTEMS_HOST_CONFIG_PREPARE,[361 AC_DEFUN([_RTEMS_HOST_CONFIG_PREPARE],[ 362 362 m4_ifdef([_RTEMS_HOST_CONFIGDIRS_LIST], 363 363 [ … … 385 385 ]) 386 386 387 AC_DEFUN( _RTEMS_TARGET_CONFIG_PREPARE,[387 AC_DEFUN([_RTEMS_TARGET_CONFIG_PREPARE],[ 388 388 m4_ifdef([_RTEMS_TARGET_CONFIGDIRS_LIST], 389 389 [ -
aclocal/bsp-alias.m4
rde691e68 r3959276e 5 5 dnl _RTEMS_BSP_ALIAS(BSP_ALIAS,RTEMS_BSP_FAMILY) 6 6 dnl Internal subroutine to RTEMS_BSP_ALIAS 7 AC_DEFUN( _RTEMS_BSP_ALIAS,7 AC_DEFUN([_RTEMS_BSP_ALIAS], 8 8 [# account for "aliased" bsps which share source code 9 9 case $1 in … … 35 35 dnl RTEMS_BSP_ALIAS(BSP_ALIAS,RTEMS_BSP_FAMILY) 36 36 dnl convert a bsp alias $1 into its bsp directory RTEMS_BSP_FAMILY 37 AC_DEFUN( RTEMS_BSP_ALIAS,37 AC_DEFUN([RTEMS_BSP_ALIAS], 38 38 [_RTEMS_BSP_ALIAS(m4_if([$1],,[$RTEMS_BSP],[$1]), 39 39 m4_if([$2],,[RTEMS_BSP_FAMILY],[$2]))] -
aclocal/canonical-target-name.m4
rde691e68 r3959276e 9 9 dnl and we have to fix it for rtems ourselves 10 10 11 AC_DEFUN( RTEMS_CANONICAL_TARGET_CPU,11 AC_DEFUN([RTEMS_CANONICAL_TARGET_CPU], 12 12 [ 13 13 AC_CANONICAL_TARGET -
aclocal/check-bsps.m4
rde691e68 r3959276e 5 5 dnl 6 6 dnl RTEMS_CHECK_BSPS(bsp_list) 7 AC_DEFUN( RTEMS_CHECK_BSPS,7 AC_DEFUN([RTEMS_CHECK_BSPS], 8 8 [ 9 9 AC_REQUIRE([RTEMS_CHECK_CPU])dnl sets RTEMS_CPU, target -
aclocal/check-custom-bsp.m4
rde691e68 r3959276e 1 1 dnl $Id$ 2 2 3 AC_DEFUN(RTEMS_CHECK_CUSTOM_BSP,[ 3 AC_DEFUN([RTEMS_CHECK_CUSTOM_BSP], 4 [ 4 5 AC_REQUIRE([RTEMS_TOP]) 5 6 -
aclocal/enable-bare.m4
rde691e68 r3959276e 1 AC_DEFUN( RTEMS_ENABLE_BARE,1 AC_DEFUN([RTEMS_ENABLE_BARE], 2 2 [ 3 3 AC_ARG_ENABLE(bare-cpu-cflags, -
aclocal/enable-cxx.m4
rde691e68 r3959276e 1 1 dnl $Id$ 2 2 3 AC_DEFUN( RTEMS_ENABLE_CXX,3 AC_DEFUN([RTEMS_ENABLE_CXX], 4 4 [ 5 5 AC_ARG_ENABLE(cxx, -
aclocal/enable-inlines.m4
rde691e68 r3959276e 1 1 dnl $Id$ 2 2 3 AC_DEFUN( RTEMS_ENABLE_INLINES,3 AC_DEFUN([RTEMS_ENABLE_INLINES], 4 4 [AC_ARG_ENABLE(rtems-inlines, 5 [AC_HELP_STRING([--enable-rtems-inlines], 6 [enable RTEMS inline functions (default:enabled, disable to use macros)])], 5 AC_HELP_STRING([--enable-rtems-inlines],[enable RTEMS inline functions (default:enabled, disable to use macros)]), 7 6 [case "${enableval}" in 8 yes) RTEMS_USE_MACROS=no ;; 9 no) RTEMS_USE_MACROS=yes ;; 10 *) AC_MSG_ERROR(bad value ${enableval} for disable-rtems-inlines option) ;; 11 esac],[RTEMS_USE_MACROS=no]) 12 AC_SUBST(RTEMS_USE_MACROS)dnl 13 14 AS_IF([test x"${RTEMS_USE_MACROS}" = x"yes"], 15 [AC_DEFINE_UNQUOTED(USE_MACROS,1,[if using macros])], 16 [AC_DEFINE_UNQUOTED(USE_INLINES,1,[if using inlines])]) 7 yes) enable_rtems_inlines=yes ;; 8 no) enable_rtems_inlines=no ;; 9 *) AC_MSG_ERROR(bad value ${enableval} for enable-rtems-inlines option) ;; 10 esac],[enable_rtems_inlines=yes]) 17 11 ]) -
aclocal/enable-itron.m4
rde691e68 r3959276e 1 1 dnl $Id$ 2 2 3 AC_DEFUN( RTEMS_ENABLE_ITRON,3 AC_DEFUN([RTEMS_ENABLE_ITRON], 4 4 [ 5 5 ## AC_BEFORE([$0], [RTEMS_CHECK_ITRON_API])dnl -
aclocal/enable-multiprocessing.m4
rde691e68 r3959276e 1 1 dnl $Id$ 2 2 3 AC_DEFUN( RTEMS_ENABLE_MULTIPROCESSING,3 AC_DEFUN([RTEMS_ENABLE_MULTIPROCESSING], 4 4 [ 5 5 AC_ARG_ENABLE(multiprocessing, -
aclocal/enable-networking.m4
rde691e68 r3959276e 1 1 dnl $Id$ 2 2 3 AC_DEFUN( RTEMS_ENABLE_NETWORKING,3 AC_DEFUN([RTEMS_ENABLE_NETWORKING], 4 4 [ 5 5 ## AC_BEFORE([$0], [RTEMS_CHECK_NETWORKING])dnl -
aclocal/enable-posix.m4
rde691e68 r3959276e 1 1 dnl $Id$ 2 2 3 AC_DEFUN( RTEMS_ENABLE_POSIX,3 AC_DEFUN([RTEMS_ENABLE_POSIX], 4 4 [ 5 5 ## AC_BEFORE([$0], [RTEMS_CHECK_POSIX_API])dnl -
aclocal/enable-rdbg.m4
rde691e68 r3959276e 1 1 dnl $Id$ 2 2 3 AC_DEFUN( RTEMS_ENABLE_RDBG,3 AC_DEFUN([RTEMS_ENABLE_RDBG], 4 4 [ 5 5 AC_BEFORE([$0], [RTEMS_CHECK_RDBG])dnl -
aclocal/enable-rtems-debug.m4
rde691e68 r3959276e 1 1 ## $Id$ 2 2 3 AC_DEFUN( RTEMS_ENABLE_RTEMS_DEBUG,3 AC_DEFUN([RTEMS_ENABLE_RTEMS_DEBUG], 4 4 [ 5 5 AC_ARG_ENABLE(rtems-debug, -
aclocal/enable-rtemsbsp.m4
rde691e68 r3959276e 4 4 dnl used by the toplevel configure script 5 5 dnl RTEMS_ENABLE_RTEMSBSP(rtems_bsp_list) 6 AC_DEFUN( RTEMS_ENABLE_RTEMSBSP,6 AC_DEFUN([RTEMS_ENABLE_RTEMSBSP], 7 7 [ 8 8 AC_BEFORE([$0], [RTEMS_ENV_RTEMSBSP]) -
aclocal/enable-tests.m4
rde691e68 r3959276e 1 1 dnl $Id$ 2 2 3 AC_DEFUN( RTEMS_ENABLE_TESTS,3 AC_DEFUN([RTEMS_ENABLE_TESTS], 4 4 [ 5 5 AC_ARG_ENABLE(tests, -
aclocal/multilib.m4
rde691e68 r3959276e 3 3 dnl parts of these macros are derived from newlib-1.8.2's multilib support 4 4 5 AC_DEFUN( RTEMS_ENABLE_MULTILIB,5 AC_DEFUN([RTEMS_ENABLE_MULTILIB], 6 6 [ 7 7 AC_ARG_ENABLE(multilib, -
aclocal/path-ksh.m4
rde691e68 r3959276e 1 1 dnl $Id$ 2 2 3 AC_DEFUN( RTEMS_PATH_KSH,3 AC_DEFUN([RTEMS_PATH_KSH], 4 4 [ 5 5 dnl NOTE: prefer bash over ksh over sh -
aclocal/project-root.m4
rde691e68 r3959276e 13 13 dnl 14 14 15 AC_DEFUN( RTEMS_PROJECT_ROOT,15 AC_DEFUN([RTEMS_PROJECT_ROOT], 16 16 [dnl 17 17 AC_REQUIRE([RTEMS_TOP]) -
aclocal/rtems-top.m4
rde691e68 r3959276e 8 8 dnl $1 .. relative path from this configure.in to the toplevel configure.in 9 9 dnl 10 AC_DEFUN( RTEMS_TOP,10 AC_DEFUN([RTEMS_TOP], 11 11 [dnl 12 12 AC_REQUIRE([RTEMS_VERSIONING]) -
aclocal/tool-paths.m4
rde691e68 r3959276e 1 AC_DEFUN( RTEMS_TOOLPATHS,1 AC_DEFUN([RTEMS_TOOLPATHS], 2 2 [ 3 3 # tooldir='$(exec_prefix)/'$target_alias
Note: See TracChangeset
for help on using the changeset viewer.