summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--aclocal/enable-itron.m46
-rw-r--r--c/src/make/ChangeLog4
-rw-r--r--c/src/make/aclocal/enable-itron.m42
-rw-r--r--cpukit/ChangeLog4
-rw-r--r--cpukit/aclocal/enable-itron.m42
6 files changed, 16 insertions, 6 deletions
diff --git a/ChangeLog b/ChangeLog
index 488e7a3ce0..0d3b3a0e73 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2009-07-23 Ralf Corsepius <ralf.corsepius@rtems.org>
+
+ * aclocal/enable-itron.m4: Default to not building itron.
+
2009-05-28 Joel Sherrill <joel.sherrill@OARcorp.com>
* aclocal/bsp-alias.m4: Add csb637 as variant of csb337.
diff --git a/aclocal/enable-itron.m4 b/aclocal/enable-itron.m4
index ec8ec38534..2cbdc77cf7 100644
--- a/aclocal/enable-itron.m4
+++ b/aclocal/enable-itron.m4
@@ -2,13 +2,11 @@ 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])],
+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])
+esac],[RTEMS_HAS_ITRON_API=no])
])
diff --git a/c/src/make/ChangeLog b/c/src/make/ChangeLog
index 82851de6e5..910bda5489 100644
--- a/c/src/make/ChangeLog
+++ b/c/src/make/ChangeLog
@@ -1,3 +1,7 @@
+2009-07-23 Ralf Corsepius <ralf.corsepius@rtems.org>
+
+ * aclocal/enable-itron.m4: Default to not building itron.
+
2009-04-15 Ralf Corsépius <ralf.corsepius@rtems.org>
* leaf.cfg: Remove hard-coded .exe.
diff --git a/c/src/make/aclocal/enable-itron.m4 b/c/src/make/aclocal/enable-itron.m4
index 14fefa9839..4cb9c681d6 100644
--- a/c/src/make/aclocal/enable-itron.m4
+++ b/c/src/make/aclocal/enable-itron.m4
@@ -10,7 +10,7 @@ AC_ARG_ENABLE(itron,
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])
+esac],[RTEMS_HAS_ITRON_API=no])
AC_SUBST(RTEMS_HAS_ITRON_API)
])
diff --git a/cpukit/ChangeLog b/cpukit/ChangeLog
index fec8c4afc2..bcade6ca14 100644
--- a/cpukit/ChangeLog
+++ b/cpukit/ChangeLog
@@ -1,3 +1,7 @@
+2009-07-23 Ralf Corsepius <ralf.corsepius@rtems.org>
+
+ * aclocal/enable-itron.m4: Default to not building itron.
+
2009-07-23 Joel Sherrill <joel.sherrill@OARcorp.com>
* rtems/src/timerreset.c: Mark an unreachable path that is a sanity
diff --git a/cpukit/aclocal/enable-itron.m4 b/cpukit/aclocal/enable-itron.m4
index 701d161ed7..2cbdc77cf7 100644
--- a/cpukit/aclocal/enable-itron.m4
+++ b/cpukit/aclocal/enable-itron.m4
@@ -8,5 +8,5 @@ AS_HELP_STRING(--enable-itron,enable itron interface),
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])
+esac],[RTEMS_HAS_ITRON_API=no])
])