summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--Makefile.am1
-rw-r--r--aclocal/canonical-host.m425
3 files changed, 5 insertions, 26 deletions
diff --git a/ChangeLog b/ChangeLog
index bafcaf82d7..573da1a23b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2003-10-23 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
+
+ * aclocal/canonical-host.m4: Remove.
+ * Makefile.am: Reflect changes above.
+
2003-10-20 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* bootstrap: Use $RTEMS_BSP_FAMILY instead of RTEMS_BSP_ALIAS in
diff --git a/Makefile.am b/Makefile.am
index c869feed5c..1f5955e504 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -18,7 +18,6 @@ AUTOMAKE_FILES += automake/subdirs.am
ACLOCAL_FILES =
ACLOCAL_FILES += aclocal/bsp-alias.m4
-ACLOCAL_FILES += aclocal/canonical-host.m4
ACLOCAL_FILES += aclocal/canonical-target-name.m4
ACLOCAL_FILES += aclocal/check-bsps.m4
ACLOCAL_FILES += aclocal/check-custom-bsp.m4
diff --git a/aclocal/canonical-host.m4 b/aclocal/canonical-host.m4
deleted file mode 100644
index 7077ab31c5..0000000000
--- a/aclocal/canonical-host.m4
+++ /dev/null
@@ -1,25 +0,0 @@
-dnl $Id$
-
-AC_DEFUN(RTEMS_CANONICAL_HOST,
-[dnl
-AC_REQUIRE([AC_CANONICAL_HOST])
-RTEMS_HOST=$host_os
-case "${target}" in
- # hpux unix port should go here
- i[[34567]]86-*linux*) # unix "simulator" port
- RTEMS_HOST=Linux
- ;;
- i[[34567]]86-*freebsd*) # unix "simulator" port
- RTEMS_HOST=FreeBSD
- ;;
- i[[34567]]86-pc-cygwin*) # Cygwin is just enough unix like :)
- RTEMS_HOST=Cygwin
- ;;
- sparc-sun-solaris*) # unix "simulator" port
- RTEMS_HOST=Solaris
- ;;
- *)
- ;;
-esac
-AC_SUBST(RTEMS_HOST)
-])dnl