Changeset ed4b894 in rtems


Ignore:
Timestamp:
10/21/03 15:17:21 (20 years ago)
Author:
Ralf Corsepius <ralf.corsepius@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
c6328bee
Parents:
9ca05b1
Message:

2003-10-21 Ralf Corsepius <corsepiu@…>

  • aclocal/check-posix.m4: Add m4-quotes. Require RTEMS_CANONICAL_TARGET_CPU instead of RTEMS_CHECK_CPU.
  • aclocal/canonical-host.m4: Remove.
  • configure.ac: Remove RTEMS_CANONICAL_HOST.
  • aclocal/sysv-ipc.m4: Remove reference to RTEMS_CANONICAL_HOST.
  • aclocal/canonical-target-name.m4: Use AC_CANONICAL_HOST instead of AC_CANONICAL_TARGET. Use $host instead of $target.
Location:
cpukit
Files:
1 deleted
5 edited

Legend:

Unmodified
Added
Removed
  • cpukit/ChangeLog

    r9ca05b1 red4b894  
     12003-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
    1112003-10-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
    212
  • cpukit/aclocal/canonical-target-name.m4

    r9ca05b1 red4b894  
    1111AC_DEFUN([RTEMS_CANONICAL_TARGET_CPU],
    1212[
    13 AC_CANONICAL_TARGET
     13AC_CANONICAL_HOST
    1414AC_MSG_CHECKING(rtems target cpu)
    15 case "${target}" in
     15case "${host}" in
    1616  # hpux unix port should go here
    1717  i[[34567]]86-*linux*)         # unix "simulator" port
     
    3434        ;;
    3535  *)
    36         RTEMS_CPU=`echo $target | sed 's%^\([[^-]]*\)-\(.*\)$%\1%'`
     36        RTEMS_CPU=`echo $host | sed 's%^\([[^-]]*\)-\(.*\)$%\1%'`
    3737        ;;
    3838esac
  • cpukit/aclocal/check-posix.m4

    r9ca05b1 red4b894  
    33AC_DEFUN(RTEMS_CHECK_POSIX_API,
    44[dnl
    5 AC_REQUIRE([RTEMS_CHECK_CPU])dnl
     5AC_REQUIRE([RTEMS_CANONICAL_TARGET_CPU])dnl
    66AC_REQUIRE([RTEMS_ENABLE_POSIX])dnl
    77
  • cpukit/aclocal/sysv-ipc.m4

    r9ca05b1 red4b894  
    3333AC_DEFUN(RTEMS_SYSV_SEM,
    3434[AC_REQUIRE([AC_PROG_CC])
    35 # AC_REQUIRE([RTEMS_CANONICAL_HOST])
    3635AC_CACHE_CHECK(whether $host supports System V semaphores,
    3736rtems_cv_sysv_sem,
  • cpukit/configure.ac

    r9ca05b1 red4b894  
    3131  AC_MSG_ERROR(no)
    3232fi
    33 
    34 RTEMS_CANONICAL_HOST
    3533
    3634RTEMS_PROG_CC_FOR_TARGET([-ansi -fasm])
Note: See TracChangeset for help on using the changeset viewer.