summaryrefslogtreecommitdiffstats
path: root/aclocal
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2009-07-23 21:23:13 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2009-07-23 21:23:13 +0000
commit18e23e9100c0ee63ec5630fc1785449601695249 (patch)
treeb147854bb54d536580f168836e65b564c02c5dfa /aclocal
parent2009-07-23 Joel Sherrill <joel.sherrill@OARcorp.com> (diff)
downloadrtems-18e23e9100c0ee63ec5630fc1785449601695249.tar.bz2
2009-07-23 Ralf Corsepius <ralf.corsepius@rtems.org>
* aclocal/enable-itron.m4: Default to not building itron.
Diffstat (limited to 'aclocal')
-rw-r--r--aclocal/enable-itron.m46
1 files changed, 2 insertions, 4 deletions
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])
])