Closed
Bug 1222104
Opened 9 years ago
Closed 8 years ago
libvpx config for win32 incorrectly claims HAVE_STDINT_H == 0
Categories
(Core :: WebRTC: Audio/Video, defect, P2)
Core
WebRTC: Audio/Video
Tracking
()
RESOLVED
FIXED
People
(Reporter: froydnj, Unassigned)
References
Details
media/libvpx/vpx_config_x86-win32-vs12.h claims that HAVE_STDINT_H is 0 (i.e. Windows doesn't have <stdint.h>, but MSVC 2013 (our minimum version to build) most certainly does have <stdint.h>.
This redefinition of HAVE_STDINT_H causes conflicts with the definition we have in mozilla-config.h, and is picked up as a warning by clang-cl.
Updated•9 years ago
|
Component: Audio/Video → WebRTC: Audio/Video
Comment 1•9 years ago
|
||
Ralph - this should be easy to fix, I think.
Rank: 25
Flags: needinfo?(giles)
Priority: -- → P2
Comment 2•9 years ago
|
||
The configure script is fairly aggressive about not using it on visual studio. I've opened a bug upstream about it:
https://bugs.chromium.org/p/webm/issues/detail?id=1119
Comment 3•9 years ago
|
||
Nevermind, it's likely not related to HAVE_STDINT_H since that define is unused in libvpx. It is being removed:
https://chromium-review.googlesource.com/319250
(unless you just mean redefinition because mozilla-config.h uses HAVE_STDINT_H, which this will fix)
Updated•8 years ago
|
Status: NEW → RESOLVED
Closed: 8 years ago
Flags: needinfo?(giles)
Resolution: --- → FIXED
You need to log in
before you can comment on or make changes to this bug.
Description
•