summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--cpukit/ChangeLog1
-rw-r--r--cpukit/configure.ac7
2 files changed, 8 insertions, 0 deletions
diff --git a/cpukit/ChangeLog b/cpukit/ChangeLog
index 1cdca68178..358576a2be 100644
--- a/cpukit/ChangeLog
+++ b/cpukit/ChangeLog
@@ -5,6 +5,7 @@
* libcsupport/include/sys/_inttypes.h: New.
* libcsupport/include/sys/_stdint.h: New.
* libcsupport/Makefile.am: Reflect changes above.
+ * configure.ac: Reflect changes above.
2004-10-28 Ralf Corsepius <ralf_corsepius@rtems.org>
diff --git a/cpukit/configure.ac b/cpukit/configure.ac
index 70b58dff8b..66cc319eb7 100644
--- a/cpukit/configure.ac
+++ b/cpukit/configure.ac
@@ -99,6 +99,13 @@ AS_IF([test x"${RTEMS_USE_NEWLIB}" = x"yes"],[
RTEMS_USES_INTTYPES_H=$ac_cv_header_inttypes_h
])
+AM_CONDITIONAL(RTEMS_PROVIDES_STDINT_H,
+[test x"${RTEMS_USE_NEWLIB}" = x"yes" \
+&& test x"$ac_cv_header_stdint_h" = xno])
+AM_CONDITIONAL(RTEMS_PROVIDES_INTTYPES_H,
+[test x"${RTEMS_USE_NEWLIB}" = x"yes" \
+&& test x"$ac_cv_header_inttypes_h" = xno])
+
AS_IF([test x"${RTEMS_CPU}" = x"unix"],[
## FIXME: This check is doubtful
AS_IF([test "$HAS_MP" = "yes"],