Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
VideoLAN
medialibrary
Commits
d66838ee
Commit
d66838ee
authored
Aug 31, 2016
by
Hugo Beauzée-Luyssen
Browse files
configure.ac: Fix _WIN32_WINNT check
We are only interested in a value provided through the CPPFLAGS
parent
35209934
Changes
1
Hide whitespace changes
Inline
Side-by-side
configure.ac
View file @
d66838ee
...
...
@@ -267,7 +267,8 @@ AM_CONDITIONAL(HAVE_ANDROID, test "${HAVE_ANDROID}" = "1")
AS_IF([test "$SYS" = mingw32],[
AC_CHECK_DECL(_WIN32_WINNT,,
AC_DEFINE([_WIN32_WINNT], 0x600, [Enforce a specific windows SDK version])
AC_DEFINE([_WIN32_WINNT], 0x600, [Enforce a specific windows SDK version]),
[] # Don't check default includes, only CFLAGS provided macros
)
])
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment