Remove RTEMS_PROVIDES_STDINT_H, RTEMS_PROVIDES_INTTYPES_H.

This commit is contained in:
Ralf Corsepius
2006-11-12 11:18:21 +00:00
parent 43912af4a4
commit d8f653495b
2 changed files with 0 additions and 14 deletions

View File

@@ -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 \

View File

@@ -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],