mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2025-12-29 16:00:17 +00:00
23 lines
603 B
Plaintext
23 lines
603 B
Plaintext
dnl $Id$
|
|
dnl
|
|
AC_DEFUN([RTEMS_CHECK_ITRON_API],
|
|
[dnl
|
|
AC_REQUIRE([RTEMS_ENABLE_ITRON])dnl
|
|
|
|
AC_CACHE_CHECK([whether CPU supports libitron],
|
|
rtems_cv_HAS_ITRON_API,
|
|
[dnl
|
|
AS_IF([test "${RTEMS_HAS_ITRON_API}" = "yes"],[
|
|
# suppress itron if one these types is not available
|
|
AS_IF([test x"$ac_cv_type_int8_t" = xyes \
|
|
&& test x"$ac_cv_type_uint8_t" = xyes \
|
|
&& test x"$ac_cv_type_int16_t" = xyes \
|
|
&& test x"$ac_cv_type_uint16_t" = xyes],
|
|
[rtems_cv_HAS_ITRON_API=yes],
|
|
[rtems_cv_HAS_ITRON_API=no])
|
|
],[
|
|
rtems_cv_HAS_ITRON_API="disabled"
|
|
])
|
|
])
|
|
])
|