2003-10-23 Ralf Corsepius <corsepiu@faw.uni-ulm.de>

* aclocal/canonical-host.m4: Remove.
	* Makefile.am: Reflect changes above.
This commit is contained in:
Ralf Corsepius
2003-10-23 08:05:58 +00:00
parent b8f4d194ef
commit fb2fc21a91
3 changed files with 5 additions and 26 deletions

View File

@@ -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

View File

@@ -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

View File

@@ -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