Changeset ff1eb4c0 in rtems


Ignore:
Timestamp:
03/04/05 16:20:05 (19 years ago)
Author:
Ralf Corsepius <ralf.corsepius@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
f28dcc91
Parents:
34793f31
Message:

2005-03-04 Ralf Corsepius <ralf.corsepius@…>

  • configure.ac: Check for newlib with stdint.h/inttypes.h.
  • Makefile.am: Conditionally use external stdint.h/inttypes.h for newlib.
Location:
cpukit
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • cpukit/ChangeLog

    r34793f31 rff1eb4c0  
     12005-03-04      Ralf Corsepius <ralf.corsepius@rtems.org>
     2
     3        * configure.ac: Check for newlib with stdint.h/inttypes.h.
     4        * Makefile.am: Conditionally use external stdint.h/inttypes.h for
     5        newlib.
     6
    172005-02-22      Ralf Corsepius <ralf.corsepius@rtems.org>
    28
  • cpukit/Makefile.am

    r34793f31 rff1eb4c0  
    6464include_sys_HEADERS =
    6565
     66if RTEMS_PROVIDES_STDINT_H
    6667include_HEADERS += libcsupport/include/stdint.h
     68endif
     69if RTEMS_PROVIDES_INTTYPES_H
    6770include_HEADERS += libcsupport/include/inttypes.h
     71endif
    6872include_HEADERS += libcsupport/include/tar.h
    6973
  • cpukit/configure.ac

    r34793f31 rff1eb4c0  
    9595
    9696## if using newlib, we provide stdint.h and inttypes.h
    97 AM_CONDITIONAL([RTEMS_PROVIDES_STDINT_H],[test x"${RTEMS_USE_NEWLIB}" = xyes])
    98 AM_CONDITIONAL([RTEMS_PROVIDES_INTTYPES_H],[test x"${RTEMS_USE_NEWLIB}" = xyes])
     97AM_CONDITIONAL([RTEMS_PROVIDES_STDINT_H],
     98  [test x"${RTEMS_USE_NEWLIB}" = xyes \
     99  && test x"${ac_cv_header_stdint_h}" = xno])
     100AM_CONDITIONAL([RTEMS_PROVIDES_INTTYPES_H],
     101  [test x"${RTEMS_USE_NEWLIB}" = xyes \
     102  && test x"${ac_cv_header_inttypes_h}" = xno])
    99103
    100104## if using newlib, force using stdint.h
Note: See TracChangeset for help on using the changeset viewer.