summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2004-10-29 10:15:31 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2004-10-29 10:15:31 +0000
commitec75ddc070e4de85370d0e8e5dbd174ef5bfef94 (patch)
tree3b24d328c2e0280bcdc41c5d4ed78a9c38e25069
parent2004-10-28 Ralf Corsepius <ralf_corsepius@rtems.org> (diff)
downloadrtems-ec75ddc070e4de85370d0e8e5dbd174ef5bfef94.tar.bz2
2004-10-28 Ralf Corsepius <ralf_corsepius@rtems.org>
* configure.ac: Reflect changes above.
-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"],