summaryrefslogtreecommitdiffstats
path: root/c
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2004-11-22 09:39:12 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2004-11-22 09:39:12 +0000
commitf4857b21e7971c9c252beef494bec30615533061 (patch)
treee38cb215af31a1c7f9c99f5fd2b2885eb9d484ea /c
parent2004-11-22 Ralf Corsepius <ralf_corsepius@rtems.org> (diff)
downloadrtems-f4857b21e7971c9c252beef494bec30615533061.tar.bz2
2004-11-22 Ralf Corsepius <ralf_corsepius@rtems.org>
* aclocal/enable-itron.m4: Remove (unused).
Diffstat (limited to 'c')
-rw-r--r--c/src/ChangeLog4
-rw-r--r--c/src/aclocal/enable-itron.m433
2 files changed, 4 insertions, 33 deletions
diff --git a/c/src/ChangeLog b/c/src/ChangeLog
index acf283d6a5..026779011e 100644
--- a/c/src/ChangeLog
+++ b/c/src/ChangeLog
@@ -1,5 +1,9 @@
2004-11-22 Ralf Corsepius <ralf_corsepius@rtems.org>
+ * aclocal/enable-itron.m4: Remove (unused).
+
+2004-11-22 Ralf Corsepius <ralf_corsepius@rtems.org>
+
* configure.ac: Misc. quoting cleanups.
Enable ada-tests iff --enable-ada and --enable-tests.
diff --git a/c/src/aclocal/enable-itron.m4 b/c/src/aclocal/enable-itron.m4
deleted file mode 100644
index 890fc35e26..0000000000
--- a/c/src/aclocal/enable-itron.m4
+++ /dev/null
@@ -1,33 +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=yes])
-
-case "${host}" in
- # hpux unix port should go here
- i[[34567]]86-pc-linux*) # unix "simulator" port
- RTEMS_HAS_ITRON_API=no
- ;;
- i[[34567]]86-*freebsd*) # unix "simulator" port
- RTEMS_HAS_ITRON_API=no
- ;;
- no_cpu-*rtems*)
- RTEMS_HAS_ITRON_API=no
- ;;
- sparc-sun-solaris*) # unix "simulator" port
- RTEMS_HAS_ITRON_API=no
- ;;
- *)
- ;;
-esac
-AC_SUBST(RTEMS_HAS_ITRON_API)
-])