source: rtems/aclocal/canonical-host.m4 @ 92ba0476

Last change on this file since 92ba0476 was 92ba0476, checked in by Joel Sherrill <joel.sherrill@…>, on 04/18/00 at 13:18:34

Patches rtems-rc-4.5.0-16-cvs.diff and rtems-rc-4.5.0-17-cvs.diff
from Ralf Corsepius <corsepiu@…> that address the following:

  • NoSource?: 0, 1 in rpm-specs does not work anymore under SuSE-6.4 (rpm-3.0.4), putting each NoSource?: onto a separate line however seems to work. Unfortunately, I don't know the actual cause for this, esp. if SuSE broke it or if rpm-specs specification has changed (i.e. Redhat broke it up).
  • Add *.spec to several .cvsignores (Prevents cvs from complaining about <target>*.spec within the source-tree).
  • Property mode set to 100644
File size: 584 bytes
Line 
1dnl $Id$
2
3AC_DEFUN(RTEMS_CANONICAL_HOST,
4[dnl
5AC_REQUIRE([AC_CANONICAL_HOST])
6RTEMS_HOST=$host_os
7changequote(,)dnl
8case "${target}" in
9  # hpux unix port should go here
10  i[34567]86-*linux*)          # unix "simulator" port
11        RTEMS_HOST=Linux
12        ;;
13  i[34567]86-*freebsd2*)         # unix "simulator" port
14        RTEMS_HOST=FreeBSD
15        ;;
16  i[34567]86-pc-cygwin*)        # Cygwin is just enough unix like :)
17        RTEMS_HOST=Cygwin
18        ;;
19  sparc-sun-solaris*)           # unix "simulator" port
20        RTEMS_HOST=Solaris
21        ;;
22  *)
23        ;;
24esac
25changequote([,])dnl
26AC_SUBST(RTEMS_HOST)
27])dnl
Note: See TracBrowser for help on using the repository browser.