Changeset ed4b894 in rtems
- Timestamp:
- 10/21/03 15:17:21 (20 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- c6328bee
- Parents:
- 9ca05b1
- Location:
- cpukit
- Files:
-
- 1 deleted
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
cpukit/ChangeLog
r9ca05b1 red4b894 1 2003-10-21 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 3 * aclocal/check-posix.m4: Add m4-quotes. 4 Require RTEMS_CANONICAL_TARGET_CPU instead of RTEMS_CHECK_CPU. 5 * aclocal/canonical-host.m4: Remove. 6 * configure.ac: Remove RTEMS_CANONICAL_HOST. 7 * aclocal/sysv-ipc.m4: Remove reference to RTEMS_CANONICAL_HOST. 8 * aclocal/canonical-target-name.m4: Use AC_CANONICAL_HOST instead of 9 AC_CANONICAL_TARGET. Use $host instead of $target. 10 1 11 2003-10-21 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 12 -
cpukit/aclocal/canonical-target-name.m4
r9ca05b1 red4b894 11 11 AC_DEFUN([RTEMS_CANONICAL_TARGET_CPU], 12 12 [ 13 AC_CANONICAL_ TARGET13 AC_CANONICAL_HOST 14 14 AC_MSG_CHECKING(rtems target cpu) 15 case "${ target}" in15 case "${host}" in 16 16 # hpux unix port should go here 17 17 i[[34567]]86-*linux*) # unix "simulator" port … … 34 34 ;; 35 35 *) 36 RTEMS_CPU=`echo $ target | sed 's%^\([[^-]]*\)-\(.*\)$%\1%'`36 RTEMS_CPU=`echo $host | sed 's%^\([[^-]]*\)-\(.*\)$%\1%'` 37 37 ;; 38 38 esac -
cpukit/aclocal/check-posix.m4
r9ca05b1 red4b894 3 3 AC_DEFUN(RTEMS_CHECK_POSIX_API, 4 4 [dnl 5 AC_REQUIRE([RTEMS_C HECK_CPU])dnl5 AC_REQUIRE([RTEMS_CANONICAL_TARGET_CPU])dnl 6 6 AC_REQUIRE([RTEMS_ENABLE_POSIX])dnl 7 7 -
cpukit/aclocal/sysv-ipc.m4
r9ca05b1 red4b894 33 33 AC_DEFUN(RTEMS_SYSV_SEM, 34 34 [AC_REQUIRE([AC_PROG_CC]) 35 # AC_REQUIRE([RTEMS_CANONICAL_HOST])36 35 AC_CACHE_CHECK(whether $host supports System V semaphores, 37 36 rtems_cv_sysv_sem, -
cpukit/configure.ac
r9ca05b1 red4b894 31 31 AC_MSG_ERROR(no) 32 32 fi 33 34 RTEMS_CANONICAL_HOST35 33 36 34 RTEMS_PROG_CC_FOR_TARGET([-ansi -fasm])
Note: See TracChangeset
for help on using the changeset viewer.