summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--aclocal/enable-hwapi.m415
2 files changed, 4 insertions, 15 deletions
diff --git a/ChangeLog b/ChangeLog
index e292d1c250..538d44ca9e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2000-09-14 Joel Sherrill <joel@OARcorp.com>
+
+ * aclocal/enable-hwapi.m4: Now longer used and removed.
+
2000-09-13 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* automake/lib.am: Remove leaf.cfg.
diff --git a/aclocal/enable-hwapi.m4 b/aclocal/enable-hwapi.m4
deleted file mode 100644
index ce6ef3f3a1..0000000000
--- a/aclocal/enable-hwapi.m4
+++ /dev/null
@@ -1,15 +0,0 @@
-dnl $Id$
-dnl
-dnl FIXME: this needs to be reworked
-
-AC_DEFUN(RTEMS_ENABLE_HWAPI,
-[dnl
-AC_ARG_ENABLE(hwapi, \
-[ --enable-hwapi enable hardware API library],
-[case "${enableval}" in
- yes) RTEMS_HAS_HWAPI=yes ;;
- no) RTEMS_HAS_HWAPI=no ;;
- *) AC_MSG_ERROR(bad value ${enableval} for hwapi option) ;;
- esac],[RTEMS_HAS_HWAPI=no])
-AC_SUBST(RTEMS_HAS_HWAPI)dnl
-])dnl