source: rtems/c/src/make/aclocal/enable-itron.m4 @ 18e23e91

4.104.115
Last change on this file since 18e23e91 was 18e23e91, checked in by Ralf Corsepius <ralf.corsepius@…>, on 07/23/09 at 21:23:13

2009-07-23 Ralf Corsepius <ralf.corsepius@…>

  • aclocal/enable-itron.m4: Default to not building itron.
  • Property mode set to 100644
File size: 397 bytes
Line 
1dnl $Id$
2
3AC_DEFUN([RTEMS_ENABLE_ITRON],
4[
5## AC_BEFORE([$0], [RTEMS_CHECK_ITRON_API])dnl
6
7AC_ARG_ENABLE(itron,
8[AS_HELP_STRING(--enable-itron,enable itron interface)],
9[case "${enableval}" in
10  yes) RTEMS_HAS_ITRON_API=yes ;;
11  no) RTEMS_HAS_ITRON_API=no ;;
12  *)  AC_MSG_ERROR(bad value ${enableval} for enable-itron option) ;;
13esac],[RTEMS_HAS_ITRON_API=no])
14
15AC_SUBST(RTEMS_HAS_ITRON_API)
16])
Note: See TracBrowser for help on using the repository browser.