diff options
author | Clément Bœsch <u@pkh.me> | 2017-04-17 10:27:18 +0200 |
---|---|---|
committer | Clément Bœsch <u@pkh.me> | 2017-04-17 10:27:18 +0200 |
commit | 15bca8c67dfe2182cadeb08959d085a1a0716715 (patch) | |
tree | f91abbb83808d3f37f8d85a9dcf65af399386c23 /configure | |
parent | 806f5b0b0ba0b0007187a20266f4f1806bab826c (diff) | |
parent | f8a1ead0ae4402df0503c83f213f57b785a5f20f (diff) | |
download | ffmpeg-15bca8c67dfe2182cadeb08959d085a1a0716715.tar.gz |
Merge commit 'f8a1ead0ae4402df0503c83f213f57b785a5f20f'
* commit 'f8a1ead0ae4402df0503c83f213f57b785a5f20f':
build: Add -D_XOPEN_SOURCE=600 to CPPFLAGS on Cygwin
Merged-by: Clément Bœsch <u@pkh.me>
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -5023,7 +5023,7 @@ probe_libc(){ # MinGW headers can be installed on Cygwin, so check for newlib first. elif check_${pfx}cpp_condition newlib.h "defined _NEWLIB_VERSION"; then eval ${pfx}libc_type=newlib - add_${pfx}cppflags -U__STRICT_ANSI__ + add_${pfx}cppflags -U__STRICT_ANSI__ -D_XOPEN_SOURCE=600 # MinGW64 is backwards compatible with MinGW32, so check for it first. elif check_${pfx}cpp_condition _mingw.h "defined __MINGW64_VERSION_MAJOR"; then eval ${pfx}libc_type=mingw64 |