From: Uwe Hermann Date: Tue, 5 Aug 2014 16:34:16 +0000 (+0200) Subject: configure.ac: We no longer need to set WINVER explicitly. X-Git-Tag: libserialport-0.1.1~114 X-Git-Url: https://sigrok.org/gitaction?a=commitdiff_plain;h=900904638b0fd241d99bece8befb7ec1ff56d38b;p=libserialport.git 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). --- diff --git a/configure.ac b/configure.ac index 1c5ef4f..d8f8148 100644 --- a/configure.ac +++ b/configure.ac @@ -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" ;; *)