Changeset 5913d94 in rtems
- Timestamp:
- 11/09/00 17:01:25 (22 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 2dbd07f8
- Parents:
- bd914b46
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
ChangeLog
rbd914b46 r5913d94 1 2000-11-09 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 3 * aclocal/enable-itron.m4: Remove changequotes (autoconf-2.49b). 4 * aclocal/enable-posix.m4: Remove changequotes (autoconf-2.49b), use 5 $host instead of $target (BUG-FIX). 6 * configure.in: Use $target and $host instead of $target_alias and 7 $host_alias (autoconf-2.49b). 8 * aclocal/check-newlib.m4: Remove CC_FOR_TARGET (BUG-FIX) 9 * aclocal/sysv-ipc.m4: Move AC_DEFINE outside of AC_CACHE (BUG-FIX) 10 11 NOTES: 12 * autoconf-2.49b depredicates using changequotes. 13 * The changes to configure.in are due to cleanups in 14 autoconf-2.49b's implemention of canonicalization. With 15 autoconf-2.1x it wasn't always clear, when to use $xxx or 16 $xxx_alias. Now this is clear. 17 1 18 2000-11-09 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 19 -
aclocal/check-newlib.m4
rbd914b46 r5913d94 8 8 rtems_cv_use_newlib, 9 9 [ 10 rtems_save_CC=$CC11 12 10 dnl some versions of newlib provide not_required_by_rtems 13 11 AC_TRY_LINK( … … 24 22 rtems_cv_use_newlib="no") 25 23 fi 26 CC=$rtems_save_CC])24 ]) 27 25 RTEMS_USE_NEWLIB="$rtems_cv_use_newlib" 28 26 AC_SUBST(RTEMS_USE_NEWLIB) … … 34 32 fi 35 33 ]) 36 -
aclocal/enable-itron.m4
rbd914b46 r5913d94 13 13 esac],[RTEMS_HAS_ITRON_API=yes]) 14 14 15 changequote(,)dnl 16 case "${target}" in 15 case "${host}" in 17 16 # hpux unix port should go here 18 i[ 34567]86-pc-linux*) # unix "simulator" port17 i[[34567]]86-pc-linux*) # unix "simulator" port 19 18 RTEMS_HAS_ITRON_API=no 20 19 ;; 21 i[ 34567]86-*freebsd*) # unix "simulator" port20 i[[34567]]86-*freebsd*) # unix "simulator" port 22 21 RTEMS_HAS_ITRON_API=no 23 22 ;; … … 31 30 ;; 32 31 esac 33 changequote([,])dnl34 32 AC_SUBST(RTEMS_HAS_ITRON_API) 35 33 ]) -
aclocal/enable-posix.m4
rbd914b46 r5913d94 13 13 esac],[RTEMS_HAS_POSIX_API=yes]) 14 14 15 changequote(,)dnl 16 case "${target}" in 15 case "${host}" in 17 16 # hpux unix port should go here 18 i[ 34567]86-pc-linux*) # unix "simulator" port17 i[[34567]]86-pc-linux*) # unix "simulator" port 19 18 RTEMS_HAS_POSIX_API=no 20 19 ;; 21 i[ 34567]86-*freebsd*) # unix "simulator" port20 i[[34567]]86-*freebsd*) # unix "simulator" port 22 21 RTEMS_HAS_POSIX_API=no 23 22 ;; … … 31 30 ;; 32 31 esac 33 changequote([,])dnl34 32 AC_SUBST(RTEMS_HAS_POSIX_API) 35 33 ]) -
aclocal/sysv-ipc.m4
rbd914b46 r5913d94 28 28 [rtems_cv_HAS_UNION_SEMUN="yes"], 29 29 [rtems_cv_HAS_UNION_SEMUN="no"]) 30 30 ]) 31 31 if test "$rtems_cv_HAS_UNION_SEMUN" = "yes"; then 32 32 AC_DEFINE(HAS_UNION_SEMUN) 33 fi ])33 fi 34 34 ]) 35 35 -
configure.in
rbd914b46 r5913d94 75 75 -e 's/--ta[a-z-]*=[^ ]*//'`; 76 76 77 targargs="--host=${target_alias} --build=${build _alias} ${targargs}"77 targargs="--host=${target_alias} --build=${build} ${targargs}" 78 78 AC_SUBST(targargs) 79 79 … … 81 81 82 82 changequote(,)dnl 83 if test $target _alias = $host_alias;83 if test $target = $host; 84 84 then 85 85 HOST_SUBDIRS="$configdirs $target_configdirs" … … 92 92 changequote([,])dnl 93 93 94 if test $host _alias = $build_alias;94 if test $host = $build; 95 95 then 96 96 HOST_SUBDIRS="$build_tools $HOST_SUBDIRS" … … 114 114 if test "$no_recursion" != yes; then 115 115 116 if test $target _alias != $host_alias; then116 if test $target != $host; then 117 117 # Remove --srcdir arguments so they do not pile up. 118 118 ac_sub_configure_args= … … 208 208 fi 209 209 210 if test $build _alias != $host_alias; then210 if test $build != $host; then 211 211 # Remove --srcdir arguments so they do not pile up. 212 212 ac_sub_configure_args= … … 263 263 esac 264 264 265 # Check for guested configure; otherwise get Cygnus style configure.265 # Check for configure 266 266 if test -f $ac_sub_srcdir/configure; then 267 267 ac_sub_configure=$ac_sub_srcdir/configure … … 290 290 $ac_sub_configure_args --srcdir=$ac_sub_srcdir \ 291 291 --cache-file=$ac_sub_cache_file \ 292 --build=$build _alias --host=$build_alias292 --build=$build --host=$build 293 293 then : 294 294 else
Note: See TracChangeset
for help on using the changeset viewer.