1
0
mirror of git://sigrok.org/libserialport synced 2023-08-10 21:13:24 +03:00

configure.ac: We no longer need to set WINVER explicitly.

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).
This commit is contained in:
Uwe Hermann 2014-08-05 18:34:16 +02:00
parent 34906a229b
commit 900904638b

View 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"
;;
*)