summaryrefslogtreecommitdiffstats
path: root/c
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2004-11-22 09:37:59 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2004-11-22 09:37:59 +0000
commit098a8709095e0918841241d8499e4e95cbc74af5 (patch)
treee06d3b10bfc124deb9c246f84705aed9385aff3c /c
parent2004-11-22 Ralf Corsepius <ralf.corsepius@rtems.org> (diff)
downloadrtems-098a8709095e0918841241d8499e4e95cbc74af5.tar.bz2
2004-11-22 Ralf Corsepius <ralf_corsepius@rtems.org>
* aclocal/enable-itron.m4: New (moved from ../aclocal).
Diffstat (limited to 'c')
-rw-r--r--c/src/make/ChangeLog4
-rw-r--r--c/src/make/aclocal/enable-itron.m416
2 files changed, 20 insertions, 0 deletions
diff --git a/c/src/make/ChangeLog b/c/src/make/ChangeLog
index f25cd72bfc..076fb0c370 100644
--- a/c/src/make/ChangeLog
+++ b/c/src/make/ChangeLog
@@ -1,3 +1,7 @@
+2004-11-22 Ralf Corsepius <ralf_corsepius@rtems.org>
+
+ * aclocal/enable-itron.m4: New (moved from ../aclocal).
+
2004-09-24 Ralf Corsepius <ralf_corsepius@rtems.org>
* configure.ac: Require automake > 1.9.
diff --git a/c/src/make/aclocal/enable-itron.m4 b/c/src/make/aclocal/enable-itron.m4
new file mode 100644
index 0000000000..14fefa9839
--- /dev/null
+++ b/c/src/make/aclocal/enable-itron.m4
@@ -0,0 +1,16 @@
+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])
+
+AC_SUBST(RTEMS_HAS_ITRON_API)
+])