Closed
Bug 1191816
Opened 10 years ago
Closed 10 years ago
don't check for sys/int_types.h in configure
Categories
(Firefox Build System :: General, defect)
Firefox Build System
General
Tracking
(firefox42 fixed)
RESOLVED
FIXED
mozilla42
Tracking | Status | |
---|---|---|
firefox42 | --- | fixed |
People
(Reporter: froydnj, Assigned: froydnj)
Details
Attachments
(1 file)
1.18 KB,
patch
|
mshal
:
review+
|
Details | Diff | Splinter Review |
<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>,
and all hidden behind HAVE_SYS_INT_TYPES_H, which we don't define.
In short, we don't care about this header, and we shouldn't check for it.
![]() |
Assignee | |
Comment 1•10 years ago
|
||
Attachment #8644331 -
Flags: review?(mshal)
Updated•10 years ago
|
Attachment #8644331 -
Flags: review?(mshal) → review+
Comment 2•10 years ago
|
||
(In reply to Nathan Froyd [:froydnj][:nfroyd] from comment #0)
> <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>,
> and all hidden behind HAVE_SYS_INT_TYPES_H, which we don't define.
You mean, which MOZ_CHECK_HEADERS(sys/int_types.h) defines. ;)
Comment 4•10 years ago
|
||
Status: NEW → RESOLVED
Closed: 10 years ago
status-firefox42:
--- → fixed
Resolution: --- → FIXED
Target Milestone: --- → mozilla42
Updated•7 years ago
|
Product: Core → Firefox Build System
You need to log in
before you can comment on or make changes to this bug.
Description
•