aboutsummaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2013-01-11 10:57:39 +0100
committerMax Kellermann <max@duempel.org>2013-01-11 11:09:27 +0100
commit7f0297dc4484eeef41f90a940d2a919941e648da (patch)
treee3a45d2ff2da5e76bc2201efc222a65b6c859a59 /configure.ac
parent49f3855407379e5adaac1bf3d948246c6d615f98 (diff)
configure.ac: require Windows Vista or newer
We're going to use Vista features soon. Sorry for those poor people still on XP (or Windows, anyway).
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index ad731142..25f901f0 100644
--- a/configure.ac
+++ b/configure.ac
@@ -67,7 +67,7 @@ mingw32* | windows*)
])
AC_CHECK_TOOL(WINDRES, windres)
AM_CPPFLAGS="$AM_CPPFLAGS -DWIN32_LEAN_AND_MEAN"
- AM_CPPFLAGS="$AM_CPPFLAGS -DWINVER=0x0501"
+ AM_CPPFLAGS="$AM_CPPFLAGS -DWINVER=0x0600 -D_WIN32_WINNT=0x0600"
LIBS="$LIBS -lws2_32"
HAVE_WINDOWS=1
;;