mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
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:
parent
6d75cc7a06
commit
8b0a301346
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user