2011-09-30 Ralf Corsépius <ralf.corsepius@rtems.org>

* configure.ac: Check for size of time_t.
This commit is contained in:
Ralf Corsepius
2011-09-30 13:08:45 +00:00
parent 951df57f82
commit ad9eaf26d2
2 changed files with 7 additions and 0 deletions

View File

@@ -1,3 +1,7 @@
2011-09-30 Ralf Corsépius <ralf.corsepius@rtems.org>
* configure.ac: Check for size of time_t.
2011-09-29 Sebastian Huber <sebastian.huber@embedded-brains.de> 2011-09-29 Sebastian Huber <sebastian.huber@embedded-brains.de>
* score/include/rtems/score/tod.h: Declare _TOD_Set_with_timestamp() * score/include/rtems/score/tod.h: Declare _TOD_Set_with_timestamp()

View File

@@ -284,6 +284,9 @@ AC_CHECK_DECLS([CHAR_BIT],,,[#include <limits.h>])
AC_CHECK_SIZEOF([mode_t]) AC_CHECK_SIZEOF([mode_t])
AC_CHECK_SIZEOF([off_t]) AC_CHECK_SIZEOF([off_t])
# FIXME: We should get rid of this. It's a cludge.
AC_CHECK_SIZEOF([time_t])
# FIXME: Mandatory in SUSv4, optional in SUSv3. # FIXME: Mandatory in SUSv4, optional in SUSv3.
# Not implemented in GCC/newlib, so far. # Not implemented in GCC/newlib, so far.
AC_CHECK_DECLS([WORD_BIT],,,[#include <limits.h>]) AC_CHECK_DECLS([WORD_BIT],,,[#include <limits.h>])