summaryrefslogtreecommitdiffstats
path: root/cpukit
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2006-11-12 11:18:21 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2006-11-12 11:18:21 +0000
commitd8f653495b44e1af3171273f76bae47bfd9eecfa (patch)
tree1bcdb47e58707dd46795b820f0554f95ce88e45b /cpukit
parent2006-11-12 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-d8f653495b44e1af3171273f76bae47bfd9eecfa.tar.bz2
Remove RTEMS_PROVIDES_STDINT_H, RTEMS_PROVIDES_INTTYPES_H.
Diffstat (limited to 'cpukit')
-rw-r--r--cpukit/Makefile.am6
-rw-r--r--cpukit/configure.ac8
2 files changed, 0 insertions, 14 deletions
diff --git a/cpukit/Makefile.am b/cpukit/Makefile.am
index 868d4c4b36..4fceb84e56 100644
--- a/cpukit/Makefile.am
+++ b/cpukit/Makefile.am
@@ -75,12 +75,6 @@ include_sys_HEADERS =
include_HEADERS += libnetworking/memory.h
-if RTEMS_PROVIDES_STDINT_H
-include_HEADERS += libcsupport/include/stdint.h
-endif
-if RTEMS_PROVIDES_INTTYPES_H
-include_HEADERS += libcsupport/include/inttypes.h
-endif
include_HEADERS += libcsupport/include/tar.h
include_sys_HEADERS += libcsupport/include/sys/ioccom.h \
diff --git a/cpukit/configure.ac b/cpukit/configure.ac
index f2dbfdba8c..f6385bf83b 100644
--- a/cpukit/configure.ac
+++ b/cpukit/configure.ac
@@ -88,14 +88,6 @@ AC_CHECK_HEADER([tar.h])
AC_CHECK_HEADER([sys/errno.h],[],
[AC_MSG_ERROR([Missing required header sys/errno.h])])
-## if using newlib, we provide stdint.h and inttypes.h
-AM_CONDITIONAL([RTEMS_PROVIDES_STDINT_H],
- [test x"${RTEMS_USE_NEWLIB}" = xyes \
- && test x"${ac_cv_header_stdint_h}" = xno])
-AM_CONDITIONAL([RTEMS_PROVIDES_INTTYPES_H],
- [test x"${RTEMS_USE_NEWLIB}" = xyes \
- && test x"${ac_cv_header_inttypes_h}" = xno])
-
## if using newlib, force using stdint.h
AS_IF([test x"${RTEMS_USE_NEWLIB}" = xyes],
[RTEMS_USES_STDINT_H=yes],