source: rtems/cpukit/aclocal/canonical-host.m4 @ d8befba2

4.104.114.84.95
Last change on this file since d8befba2 was ed8ec1c, checked in by Ralf Corsepius <ralf.corsepius@…>, on 06/17/02 at 08:52:47

2002-06-17 Ralf Corsepius <corsepiu@…>

  • copied over from aclocal/.
  • 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.