summaryrefslogtreecommitdiffstats
path: root/c/src/make/aclocal
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2010-06-17 16:30:05 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2010-06-17 16:30:05 +0000
commit6b005b54ffab005a69752120787cd8b051ca7caf (patch)
treefc2b31dc3152ea04cd6301e0fab31f4c910a6b24 /c/src/make/aclocal
parent2010-06-17 Joel Sherrill <joel.sherrill@oarcorp.com> (diff)
downloadrtems-6b005b54ffab005a69752120787cd8b051ca7caf.tar.bz2
2010-06-17 Ralf Corsépius <ralf.corsepius@rtems.org>
* Makefile.inc.in, bsp.cfg.in, configure.ac, target.cfg.in: Remove itron. * aclocal/check-itron.m4, aclocal/enable-itron.m4: Remove.
Diffstat (limited to 'c/src/make/aclocal')
-rw-r--r--c/src/make/aclocal/check-itron.m434
-rw-r--r--c/src/make/aclocal/enable-itron.m416
2 files changed, 0 insertions, 50 deletions
diff --git a/c/src/make/aclocal/check-itron.m4 b/c/src/make/aclocal/check-itron.m4
deleted file mode 100644
index b3ee9f2156..0000000000
--- a/c/src/make/aclocal/check-itron.m4
+++ /dev/null
@@ -1,34 +0,0 @@
-dnl $Id$
-dnl
-AC_DEFUN([RTEMS_CHECK_ITRON_API],
-[dnl
-AC_REQUIRE([RTEMS_CANONICAL_TARGET_CPU])dnl
-AC_REQUIRE([RTEMS_ENABLE_ITRON])dnl
-
-AC_CACHE_CHECK([whether CPU supports libitron],
- rtems_cv_HAS_ITRON_API,
- [dnl
- case "$RTEMS_CPU" in
- *)
- if test "${RTEMS_HAS_ITRON_API}" = "yes"; then
- rtems_cv_HAS_ITRON_API="yes";
- else
- rtems_cv_HAS_ITRON_API="disabled";
- fi
- ;;
- esac])
-if test "$rtems_cv_HAS_ITRON_API" = "yes"; then
- HAS_ITRON_API="yes";
-else
- HAS_ITRON_API="no";
-fi
-AC_SUBST(HAS_ITRON_API)dnl
-])
-
-AC_DEFUN([RTEMS_DEFINE_ITRON_API],
-[AC_REQUIRE([RTEMS_CHECK_ITRON_API])dnl
-if test x"${HAS_ITRON_API}" = x"yes";
-then
- AC_DEFINE_UNQUOTED(RTEMS_ITRON_API,1,[if itron api is supported])
-fi
-])
diff --git a/c/src/make/aclocal/enable-itron.m4 b/c/src/make/aclocal/enable-itron.m4
deleted file mode 100644
index 4cb9c681d6..0000000000
--- a/c/src/make/aclocal/enable-itron.m4
+++ /dev/null
@@ -1,16 +0,0 @@
-dnl $Id$
-
-AC_DEFUN([RTEMS_ENABLE_ITRON],
-[
-## AC_BEFORE([$0], [RTEMS_CHECK_ITRON_API])dnl
-
-AC_ARG_ENABLE(itron,
-[AS_HELP_STRING(--enable-itron,enable itron interface)],
-[case "${enableval}" in
- yes) RTEMS_HAS_ITRON_API=yes ;;
- no) RTEMS_HAS_ITRON_API=no ;;
- *) AC_MSG_ERROR(bad value ${enableval} for enable-itron option) ;;
-esac],[RTEMS_HAS_ITRON_API=no])
-
-AC_SUBST(RTEMS_HAS_ITRON_API)
-])