]> sigrok.org Git - libserialport.git/commitdiff
configure.ac: We no longer need to set WINVER explicitly.
authorUwe Hermann <redacted>
Tue, 5 Aug 2014 16:34:16 +0000 (18:34 +0200)
committerUwe Hermann <redacted>
Tue, 5 Aug 2014 19:22:59 +0000 (21:22 +0200)
Since we now require MinGW-w64, we no longer have to set WINVER manually,
since MinGW-w64 defaults to WINVER=0x0502 (which corresponds to
Windows Server 2003 SP1 / Windows XP SP2 apparently, which is fine for us).

configure.ac

index 1c5ef4f8ff9dea80dc944ae2263158934b434d45..d8f81482572c52fdb686551f6d3420e15c6f0060 100644 (file)
@@ -95,9 +95,6 @@ mingw* | cygwin*)
        AM_CONDITIONAL([LINUX], false)
        AM_CONDITIONAL([WIN32], true)
        AM_CONDITIONAL([MACOSX], false)
-       # Set WINVER to 0x0501 (corresponds to Windows XP), needed for some
-       # defineŃ• such as WC_NO_BEST_FIT_CHARS.
-       CFLAGS="$CFLAGS -DWINVER=0x0501"
        SP_LIBS="-lsetupapi -luuid"
        ;;
 *)