diff options
author | Martin Storsjö <martin@martin.st> | 2017-05-31 13:07:04 +0300 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2017-06-01 13:29:51 +0300 |
commit | 4d444d04c1e19cd02ac836d411433906a9f32613 (patch) | |
tree | f3bafd12fee5526ffb5c0607a36d4bf6619914dc | |
parent | 16cb06bb30390c3d74312fc6aead818e19bfd8e4 (diff) | |
download | ffmpeg-4d444d04c1e19cd02ac836d411433906a9f32613.tar.gz |
configure: Default to _WIN32_WINNT=0x0502 (XP) as minimum, for legacy mingw
This makes the getaddrinfo functions visible, which aren't normally
by default on legacy mingw.
We already force __MSVCRT_VERSION__ to an XP version.
Signed-off-by: Martin Storsjö <martin@martin.st>
-rwxr-xr-x | configure | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -4133,6 +4133,8 @@ probe_libc(){ add_${pfx}cppflags -U__STRICT_ANSI__ -D__USE_MINGW_ANSI_STDIO=1 check_${pfx}cpp_condition _mingw.h "__MSVCRT_VERSION__ < 0x0700" && add_${pfx}cppflags -D__MSVCRT_VERSION__=0x0700 + check_${pfx}cpp_condition windows.h "defined(_WIN32_WINNT) && _WIN32_WINNT < 0x0502" && + add_${pfx}cppflags -D_WIN32_WINNT=0x0502 eval test \$${pfx_no_}cc_type = "gcc" && add_${pfx}cppflags -D__printf__=__gnu_printf__ elif check_${pfx}cpp_condition crtversion.h "defined _VC_CRT_MAJOR_VERSION"; then |