summaryrefslogtreecommitdiffstats
path: root/macros
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2000-10-25 16:57:27 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2000-10-25 16:57:27 +0000
commitb7ed82fc6cb93ba28f3a41f96c66924cb1fc63a7 (patch)
tree207bea1df1dcb0b5c0755782e7862d682de0ab78 /macros
parent2000-10-24 Joel Sherrill <joel@OARcorp.com> (diff)
downloadrtems-b7ed82fc6cb93ba28f3a41f96c66924cb1fc63a7.tar.bz2
2000-10-24 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* macros/enable-hwapi.m4: Removed. * aclocal/rtems-top.m4, automake/compile.am, automake/lib.am: A small cleanup step towards gnu-canonicalization.
Diffstat (limited to 'macros')
-rw-r--r--macros/enable-hwapi.m415
1 files changed, 0 insertions, 15 deletions
diff --git a/macros/enable-hwapi.m4 b/macros/enable-hwapi.m4
deleted file mode 100644
index ce6ef3f3a1..0000000000
--- a/macros/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