Integrate ITRON-type checks.

This commit is contained in:
Ralf Corsepius
2006-11-18 03:14:37 +00:00
parent 461d93f4a7
commit 943fe10fd3

View File

@@ -7,10 +7,16 @@ AC_REQUIRE([RTEMS_ENABLE_ITRON])dnl
AC_CACHE_CHECK([whether CPU supports libitron],
rtems_cv_HAS_ITRON_API,
[dnl
if test "${RTEMS_HAS_ITRON_API}" = "yes"; then
rtems_cv_HAS_ITRON_API="yes";
else
rtems_cv_HAS_ITRON_API="disabled";
fi
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"
])
])
])