summaryrefslogtreecommitdiffstats
path: root/aclocal
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2000-04-05 13:10:57 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2000-04-05 13:10:57 +0000
commitcbbc442efcefd1eca06e077cd5b1660c3b33dc7f (patch)
tree6617e817136167ae25ea6cbbe7f83425080e7d6a /aclocal
parentPatch from Charles-Antoine Gauthier <charles.gauthier@nrc.ca> to go (diff)
downloadrtems-cbbc442efcefd1eca06e077cd5b1660c3b33dc7f.tar.bz2
Added cygwin as simulator port.
Diffstat (limited to 'aclocal')
-rw-r--r--aclocal/canonical-host.m49
1 files changed, 6 insertions, 3 deletions
diff --git a/aclocal/canonical-host.m4 b/aclocal/canonical-host.m4
index 3f92cfa5bb..8efddbb7c8 100644
--- a/aclocal/canonical-host.m4
+++ b/aclocal/canonical-host.m4
@@ -7,13 +7,16 @@ RTEMS_HOST=$host_os
changequote(,)dnl
case "${target}" in
# hpux unix port should go here
- i[3456]86-pc-linux*) # unix "simulator" port
+ i[3456]86-pc-linux*) # unix "simulator" port
RTEMS_HOST=Linux
;;
- i[3456]86-*freebsd2*) # unix "simulator" port
+ i[3456]86-*freebsd2*) # unix "simulator" port
RTEMS_HOST=FreeBSD
;;
- sparc-sun-solaris*) # unix "simulator" port
+ i[3456]86-pc-cygwin*) # Cygwin is just enough unix like :)
+ RTEMS_HOST=Cygwin
+ ;;
+ sparc-sun-solaris*) # unix "simulator" port
RTEMS_HOST=Solaris
;;
*)