source: rtems/aclocal/canonical-host.m4 @ 0e08a3c3

4.104.114.84.95
Last change on this file since 0e08a3c3 was 1033e27, checked in by Joel Sherrill <joel.sherrill@…>, on 11/15/00 at 21:56:52

2000-11-13 Ralf Corsepius <corsepiu@…>

  • aclocal/canonical-host.m4: Abandon changequotes (autoconf-2.49b).
  • aclocal/check-newlib.m4: Let check message refer to RTEMS newlib.
  • aclocal/rtems-debug.m4: Fix formating and contents of the check's help string.
  • aclocal/rtems-top.m4: Remove AC_ARG_WITH(target-subdir).
  • Property mode set to 100644
File size: 551 bytes
Line 
1dnl $Id$
2
3AC_DEFUN(RTEMS_CANONICAL_HOST,
4[dnl
5AC_REQUIRE([AC_CANONICAL_HOST])
6RTEMS_HOST=$host_os
7case "${target}" in
8  # hpux unix port should go here
9  i[[34567]]86-*linux*)          # unix "simulator" port
10        RTEMS_HOST=Linux
11        ;;
12  i[[34567]]86-*freebsd*)         # unix "simulator" port
13        RTEMS_HOST=FreeBSD
14        ;;
15  i[[34567]]86-pc-cygwin*)      # Cygwin is just enough unix like :)
16        RTEMS_HOST=Cygwin
17        ;;
18  sparc-sun-solaris*)           # unix "simulator" port
19        RTEMS_HOST=Solaris
20        ;;
21  *)
22        ;;
23esac
24AC_SUBST(RTEMS_HOST)
25])dnl
Note: See TracBrowser for help on using the repository browser.