+2014-03-04 Kevin Cernekee <cernekee@gmail.com>
+
+ stdint, read-file: fix missing SIZE_MAX on Android
+ * lib/sys_types.in.h (_GL_INCLUDING_UNISTD_H): New macro, to work
+ around potential circular dependencies when stdint.h is included
+ by the system's sys/types.h.
+ * lib/stdint.in.h: Use _GL_INCLUDING_UNISTD_H to figure out if
+ we're being included from sys/types.h, as merely checking
+ _SYS_TYPES_H_ could return true if sys/types.h had been previously
+ included.
+ * modules/stdint (Depends-on): Add sys_types.
+
2014-02-26 Pádraig Brady <P@draigBrady.com>
parse-datetime: fix crash or infloop in TZ="" parsing
other system header files; just include the system's <stdint.h>.
Ideally we should test __BIONIC__ here, but it is only defined after
<sys/cdefs.h> has been included; hence test __ANDROID__ instead. */
-#if defined __ANDROID__ \
- && defined _SYS_TYPES_H_ && !defined __need_size_t
+#if defined __ANDROID__ && defined _GL_INCLUDING_SYS_TYPES_H
# @INCLUDE_NEXT@ @NEXT_STDINT_H@
#else
#ifndef _@GUARD_PREFIX@_SYS_TYPES_H
/* The include_next requires a split double-inclusion guard. */
+# define _GL_INCLUDING_SYS_TYPES_H
#@INCLUDE_NEXT@ @NEXT_SYS_TYPES_H@
+# undef _GL_INCLUDING_SYS_TYPES_H
#ifndef _@GUARD_PREFIX@_SYS_TYPES_H
#define _@GUARD_PREFIX@_SYS_TYPES_H
Depends-on:
include_next
multiarch
+sys_types
configure.ac:
gl_STDINT_H