summaryrefslogtreecommitdiffstats
path: root/cpukit/aclocal/enable-itron.m4
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2010-04-29 07:45:01 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2010-04-29 07:45:01 +0000
commit292b0c38134348ece2153d1dd92db3ed9780ed1d (patch)
treef615e9029789118856d32ee71ea8081a77193311 /cpukit/aclocal/enable-itron.m4
parent2010-04-29 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-292b0c38134348ece2153d1dd92db3ed9780ed1d.tar.bz2
2010-04-29 Ralf Corsépius <ralf.corsepius@rtems.org>
* aclocal/enable-itron.m4, aclocal/check-itron.m4: Replace RTEMS_HAS_ITRON_API with enable_itron.
Diffstat (limited to 'cpukit/aclocal/enable-itron.m4')
-rw-r--r--cpukit/aclocal/enable-itron.m46
1 files changed, 3 insertions, 3 deletions
diff --git a/cpukit/aclocal/enable-itron.m4 b/cpukit/aclocal/enable-itron.m4
index f187b4b6c3..2f2c652922 100644
--- a/cpukit/aclocal/enable-itron.m4
+++ b/cpukit/aclocal/enable-itron.m4
@@ -5,8 +5,8 @@ AC_DEFUN([RTEMS_ENABLE_ITRON],
AC_ARG_ENABLE([itron],
AS_HELP_STRING([--enable-itron],[enable itron interface (DEPRECATED)]),
[case "${enableval}" in
- yes) RTEMS_HAS_ITRON_API=yes ;;
- no) RTEMS_HAS_ITRON_API=no ;;
+ yes) enable_itron=yes ;;
+ no) enable_itron=no ;;
*) AC_MSG_ERROR(bad value ${enableval} for enable-itron option) ;;
-esac],[RTEMS_HAS_ITRON_API=no])
+esac],[enable_itron=no])
])