summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure7
1 files changed, 5 insertions, 2 deletions
diff --git a/configure b/configure
index f0913bc5ed..b9d6a42d37 100755
--- a/configure
+++ b/configure
@@ -2075,8 +2075,11 @@ case $target_os in
{ check_cflags -mdynamic-no-pic && add_asflags -mdynamic-no-pic; }
;;
mingw32*)
- # Only WinXP or greater are supported
- add_cflags -D_WIN32_WINNT=0x0501
+ # Adding _WIN32_WINNT=0x0501 makes functions that require
+ # XP visible and thus may make it binary incompatible with
+ # earlier versions. Set --target-os=mingw32-prexp if this
+ # isn't desired.
+ test $target_os = "mingw32" && add_cflags -D_WIN32_WINNT=0x0501
if test $target_os = "mingw32ce"; then
disable network
else