Changeset 1033e27 in rtems
- Timestamp:
- 11/15/00 21:56:52 (22 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- ee6d205
- Parents:
- 39cdc26
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
ChangeLog
r39cdc26 r1033e27 1 2000-11-13 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 3 * aclocal/canonical-host.m4: Abandon changequotes (autoconf-2.49b). 4 * aclocal/check-newlib.m4: Let check message refer to RTEMS newlib. 5 * aclocal/rtems-debug.m4: Fix formating and contents of the check's 6 help string. 7 * aclocal/rtems-top.m4: Remove AC_ARG_WITH(target-subdir). 8 1 9 2000-11-13 Jiri Gaisler <jgais@ws.estec.esa.nl> 2 10 -
aclocal/canonical-host.m4
r39cdc26 r1033e27 5 5 AC_REQUIRE([AC_CANONICAL_HOST]) 6 6 RTEMS_HOST=$host_os 7 changequote(,)dnl8 7 case "${target}" in 9 8 # hpux unix port should go here 10 i[ 34567]86-*linux*) # unix "simulator" port9 i[[34567]]86-*linux*) # unix "simulator" port 11 10 RTEMS_HOST=Linux 12 11 ;; 13 i[ 34567]86-*freebsd*) # unix "simulator" port12 i[[34567]]86-*freebsd*) # unix "simulator" port 14 13 RTEMS_HOST=FreeBSD 15 14 ;; 16 i[ 34567]86-pc-cygwin*) # Cygwin is just enough unix like :)15 i[[34567]]86-pc-cygwin*) # Cygwin is just enough unix like :) 17 16 RTEMS_HOST=Cygwin 18 17 ;; … … 23 22 ;; 24 23 esac 25 changequote([,])dnl26 24 AC_SUBST(RTEMS_HOST) 27 25 ])dnl -
aclocal/check-newlib.m4
r39cdc26 r1033e27 5 5 AC_REQUIRE([RTEMS_PROG_CC_FOR_TARGET])dnl 6 6 AC_REQUIRE([RTEMS_CANONICALIZE_TOOLS])dnl 7 AC_CACHE_CHECK([for newlib],7 AC_CACHE_CHECK([for RTEMS newlib], 8 8 rtems_cv_use_newlib, 9 9 [ -
aclocal/rtems-debug.m4
r39cdc26 r1033e27 4 4 [ 5 5 AC_ARG_ENABLE(rtems-debug, 6 [ -- disable-rtems-debug disable RTEMS_DEBUG],6 [ --enable-rtems-debug enable RTEMS_DEBUG], 7 7 [case "${enableval}" in 8 8 yes) RTEMS_DEBUG=yes ;; -
aclocal/rtems-top.m4
r39cdc26 r1033e27 16 16 AC_SUBST(ENDIF) 17 17 18 # with_target_subdir19 AC_ARG_WITH(target-subdir,20 [ --with-target-subdir=DIR],21 with_target_subdir="$withval",22 with_target_subdir=".")23 24 18 RTEMS_TOPdir="$1"; 25 19 AC_SUBST(RTEMS_TOPdir) 20 21 ## with_target_subdirs is handled implicitly by autoconf 22 test -n "$with_target_subdir" || with_target_subdir="." 26 23 27 24 if test "$with_target_subdir" = "." ; then … … 30 27 else 31 28 # Cross 32 changequote(, )dnl33 29 dots=`echo $with_target_subdir|\ 34 sed -e 's%^\./%%' -e 's%[^/]$%&/%' -e 's%[^/]*/%../%g'` 35 changequote([, ])dnl 30 sed -e 's%^\./%%' -e 's%[[^/]]$%&/%' -e 's%[[^/]]*/%../%g'` 36 31 PROJECT_TOPdir=${dots}${RTEMS_TOPdir}/'$(top_builddir)' 37 32 fi … … 51 46 AC_MSG_CHECKING([for RTEMS Version]) 52 47 if test -r "${srcdir}/${RTEMS_TOPdir}/VERSION"; then 53 changequote(,)dnl54 48 RTEMS_VERSION=`grep 'RTEMS Version' ${srcdir}/${RTEMS_TOPdir}/VERSION | \ 55 sed -e 's%RTEMS[ ]*Version[ ]*\(.*\)[ ]*%\1%g'` 56 changequote([,])dnl 49 sed -e 's%RTEMS[[ ]]*Version[[ ]]*\(.*\)[[ ]]*%\1%g'` 57 50 else 58 51 AC_MSG_ERROR(Unable to find ${RTEMS_TOPdir}/VERSION)
Note: See TracChangeset
for help on using the changeset viewer.