Bug 1191816 - don't check for sys/int_types.h in configure; r=mshal

<sys/int_types.h> appears to be a pre-standardization header that was
common on SunOS systems (which apparently also provided <inttypes.h>?).
Searching also turns up references in the NetBSD source tree for
less-common architectures (e.g. sh3).  There are a few includes for
<sys/int_types.h> in the tree, but only as a fallback for <inttypes.h>.

In short, we don't care about this header, and we shouldn't check for it.
This commit is contained in:
Nathan Froyd 2015-08-06 17:54:57 -04:00
parent 6d75cc7a06
commit 8b0a301346

View File

@ -8190,7 +8190,7 @@ AC_SUBST_LIST(MOZ_PIXMAN_LIBS)
# Check for headers defining standard int types.
if test -n "$COMPILE_ENVIRONMENT"; then
MOZ_CHECK_HEADERS(stdint.h inttypes.h sys/int_types.h)
MOZ_CHECK_HEADERS(stdint.h inttypes.h)
if test "${ac_cv_header_inttypes_h}" = "yes"; then
HAVE_INTTYPES_H=1