summaryrefslogtreecommitdiffstats
path: root/cpukit/aclocal
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2010-06-17 15:29:01 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2010-06-17 15:29:01 +0000
commitb77d6e115acc20b55be63fe197a46b6345785167 (patch)
tree1cfa401437c70d5962ceaf8a00ef97bfcc909bfc /cpukit/aclocal
parent2010-06-17 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-b77d6e115acc20b55be63fe197a46b6345785167.tar.bz2
Remove.
Diffstat (limited to 'cpukit/aclocal')
-rw-r--r--cpukit/aclocal/check-itron.m422
-rw-r--r--cpukit/aclocal/enable-itron.m412
2 files changed, 0 insertions, 34 deletions
diff --git a/cpukit/aclocal/check-itron.m4 b/cpukit/aclocal/check-itron.m4
deleted file mode 100644
index 0abccd27c4..0000000000
--- a/cpukit/aclocal/check-itron.m4
+++ /dev/null
@@ -1,22 +0,0 @@
-dnl $Id$
-dnl
-AC_DEFUN([RTEMS_CHECK_ITRON_API],
-[dnl
-AC_REQUIRE([RTEMS_ENABLE_ITRON])dnl
-
-AC_CACHE_CHECK([whether CPU supports libitron],
- rtems_cv_HAS_ITRON_API,
- [dnl
- AS_IF([test "${enable_itron}" = "yes"],[
-# suppress itron if one these types is not available
- AS_IF([test x"$ac_cv_type_int8_t" = xyes \
- && test x"$ac_cv_type_uint8_t" = xyes \
- && test x"$ac_cv_type_int16_t" = xyes \
- && test x"$ac_cv_type_uint16_t" = xyes],
- [rtems_cv_HAS_ITRON_API=yes],
- [rtems_cv_HAS_ITRON_API=no])
- ],[
- rtems_cv_HAS_ITRON_API="disabled"
- ])
- ])
-])
diff --git a/cpukit/aclocal/enable-itron.m4 b/cpukit/aclocal/enable-itron.m4
deleted file mode 100644
index 2f2c652922..0000000000
--- a/cpukit/aclocal/enable-itron.m4
+++ /dev/null
@@ -1,12 +0,0 @@
-dnl $Id$
-
-AC_DEFUN([RTEMS_ENABLE_ITRON],
-[
-AC_ARG_ENABLE([itron],
-AS_HELP_STRING([--enable-itron],[enable itron interface (DEPRECATED)]),
-[case "${enableval}" in
- yes) enable_itron=yes ;;
- no) enable_itron=no ;;
- *) AC_MSG_ERROR(bad value ${enableval} for enable-itron option) ;;
-esac],[enable_itron=no])
-])