mirror of
https://github.com/t-crest/rtems.git
synced 2025-11-16 12:34:47 +00:00
15 lines
371 B
Plaintext
15 lines
371 B
Plaintext
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])
|
|
])
|