From 1eb5a77baa480010a0cefd148a95cfe0338ea6fc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20Sur=C3=BD?= Date: Wed, 8 Apr 2020 10:58:45 +0200 Subject: [PATCH] Set WarningLevel to Level1 for Release, treat warnings as errors MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Our vcxproj files set the WarningLevel to Level3, which is too verbose for a code that needs to be portable. That basically leads to ignoring all the errors that MSVC produces. This commits downgrades the WarningLevel to Level1 and enables treating warnings as errors for Release builds. For the Debug builds the WarningLevel got upgraded to Level4, and treating warnings as errors is explicitly disabled. We should eventually make the code clean of all MSVC warnings, but it's a long way to go for Level4, so it's more reasonable to start at Level1. For reference[1], these are the warning levels as described by MSVC documentation: * /W0 suppresses all warnings. It's equivalent to /w. * /W1 displays level 1 (severe) warnings. /W1 is the default setting in the command-line compiler. * /W2 displays level 1 and level 2 (significant) warnings. * /W3 displays level 1, level 2, and level 3 (production quality) warnings. /W3 is the default setting in the IDE. * /W4 displays level 1, level 2, and level 3 warnings, and all level 4 (informational) warnings that aren't off by default. We recommend that you use this option to provide lint-like warnings. For a new project, it may be best to use /W4 in all compilations. This option helps ensure the fewest possible hard-to-find code defects. * /Wall displays all warnings displayed by /W4 and all other warnings that /W4 doesn't include — for example, warnings that are off by default. * /WX treats all compiler warnings as errors. For a new project, it may be best to use /WX in all compilations; resolving all warnings ensures the fewest possible hard-to-find code defects. 1. https://docs.microsoft.com/en-us/cpp/build/reference/compiler-option-warning-level?view=vs-2019 (cherry picked from commit 789d253e3d0792c177476cb899933aa08415f20a) --- bin/check/win32/checkconf.vcxproj.in | 6 ++++-- bin/check/win32/checktool.vcxproj.in | 6 ++++-- bin/check/win32/checkzone.vcxproj.in | 6 ++++-- bin/confgen/win32/confgentool.vcxproj.in | 6 ++++-- bin/confgen/win32/ddnsconfgen.vcxproj.in | 6 ++++-- bin/confgen/win32/rndcconfgen.vcxproj.in | 6 ++++-- bin/delv/win32/delv.vcxproj.in | 6 ++++-- bin/dig/win32/dig.vcxproj.in | 6 ++++-- bin/dig/win32/dighost.vcxproj.in | 6 ++++-- bin/dig/win32/host.vcxproj.in | 6 ++++-- bin/dig/win32/nslookup.vcxproj.in | 6 ++++-- bin/dnssec/win32/dnssectool.vcxproj.in | 6 ++++-- bin/dnssec/win32/dsfromkey.vcxproj.in | 6 ++++-- bin/dnssec/win32/importkey.vcxproj.in | 6 ++++-- bin/dnssec/win32/keyfromlabel.vcxproj.in | 6 ++++-- bin/dnssec/win32/keygen.vcxproj.in | 6 ++++-- bin/dnssec/win32/revoke.vcxproj.in | 6 ++++-- bin/dnssec/win32/settime.vcxproj.in | 6 ++++-- bin/dnssec/win32/signzone.vcxproj.in | 6 ++++-- bin/dnssec/win32/verify.vcxproj.in | 6 ++++-- bin/named/win32/named.vcxproj.in | 6 ++++-- bin/nsupdate/win32/nsupdate.vcxproj.in | 6 ++++-- bin/pkcs11/win32/pk11destroy.vcxproj.in | 6 ++++-- bin/pkcs11/win32/pk11keygen.vcxproj.in | 6 ++++-- bin/pkcs11/win32/pk11list.vcxproj.in | 6 ++++-- bin/pkcs11/win32/pk11tokens.vcxproj.in | 6 ++++-- bin/rndc/win32/rndc.vcxproj.in | 6 ++++-- bin/rndc/win32/rndcutil.vcxproj.in | 6 ++++-- bin/tests/system/win32/bigkey.vcxproj.in | 6 ++++-- bin/tests/system/win32/feature-test.vcxproj.in | 6 ++++-- bin/tests/system/win32/gencheck.vcxproj.in | 6 ++++-- bin/tests/system/win32/keycreate.vcxproj.in | 6 ++++-- bin/tests/system/win32/keydelete.vcxproj.in | 6 ++++-- bin/tests/system/win32/lwtest.vcxproj.in | 6 ++++-- bin/tests/system/win32/pipequeries.vcxproj.in | 6 ++++-- bin/tests/win32/backtrace_test.vcxproj.in | 6 ++++-- bin/tests/win32/inter_test.vcxproj.in | 6 ++++-- bin/tests/win32/makejournal.vcxproj.in | 6 ++++-- bin/tests/win32/rwlock_test.vcxproj.in | 6 ++++-- bin/tests/win32/shutdown_test.vcxproj.in | 6 ++++-- bin/tests/win32/sock_test.vcxproj.in | 6 ++++-- bin/tests/win32/task_test.vcxproj.in | 6 ++++-- bin/tests/win32/timer_test.vcxproj.in | 6 ++++-- bin/tools/win32/arpaname.vcxproj.in | 6 ++++-- bin/tools/win32/genrandom.vcxproj.in | 6 ++++-- bin/tools/win32/ischmacfixup.vcxproj.in | 6 ++++-- bin/tools/win32/journalprint.vcxproj.in | 6 ++++-- bin/tools/win32/mdig.vcxproj.in | 6 ++++-- bin/tools/win32/nsec3hash.vcxproj.in | 6 ++++-- bin/tools/win32/rrchecker.vcxproj.in | 6 ++++-- bin/win32/BINDInstall/BINDInstall.vcxproj.in | 6 ++++-- doc/xsl/graphics/caution.eps | 4 ++-- doc/xsl/graphics/important.eps | 4 ++-- doc/xsl/graphics/note.eps | 4 ++-- doc/xsl/graphics/tip.eps | 4 ++-- doc/xsl/graphics/warning.eps | 4 ++-- lib/bind9/win32/libbind9.vcxproj.in | 6 ++++-- lib/dns/win32/gen.vcxproj.in | 6 ++++-- lib/dns/win32/libdns.vcxproj.in | 6 ++++-- lib/irs/win32/libirs.vcxproj.in | 6 ++++-- lib/isc/win32/libisc.vcxproj.in | 6 ++++-- lib/isccc/win32/libisccc.vcxproj.in | 6 ++++-- lib/isccfg/win32/libisccfg.vcxproj.in | 6 ++++-- lib/lwres/win32/liblwres.vcxproj.in | 6 ++++-- lib/samples/win32/async.vcxproj.in | 6 ++++-- lib/samples/win32/gai.vcxproj.in | 6 ++++-- lib/samples/win32/nsprobe.vcxproj.in | 6 ++++-- lib/samples/win32/request.vcxproj.in | 6 ++++-- lib/samples/win32/resolve.vcxproj.in | 6 ++++-- lib/samples/win32/update.vcxproj.in | 6 ++++-- lib/win32/bindevt/bindevt.vcxproj.in | 6 ++++-- 71 files changed, 274 insertions(+), 142 deletions(-) diff --git a/bin/check/win32/checkconf.vcxproj.in b/bin/check/win32/checkconf.vcxproj.in index fa16d8ee99..500d434881 100644 --- a/bin/check/win32/checkconf.vcxproj.in +++ b/bin/check/win32/checkconf.vcxproj.in @@ -56,7 +56,8 @@ - Level3 + Level4 + false Disabled WIN32;@CRYPTO@_DEBUG;_CONSOLE;%(PreprocessorDefinitions) true @@ -78,7 +79,8 @@ - Level3 + Level1 + true MaxSpeed diff --git a/bin/check/win32/checktool.vcxproj.in b/bin/check/win32/checktool.vcxproj.in index 8a9ad0f51f..7892a0099f 100644 --- a/bin/check/win32/checktool.vcxproj.in +++ b/bin/check/win32/checktool.vcxproj.in @@ -59,7 +59,8 @@ - Level3 + Level4 + false Disabled WIN32;@CRYPTO@_DEBUG;_LIB;%(PreprocessorDefinitions) true @@ -77,7 +78,8 @@ - Level3 + Level1 + true MaxSpeed diff --git a/bin/check/win32/checkzone.vcxproj.in b/bin/check/win32/checkzone.vcxproj.in index dbccb09b9d..3cf95d9deb 100644 --- a/bin/check/win32/checkzone.vcxproj.in +++ b/bin/check/win32/checkzone.vcxproj.in @@ -56,7 +56,8 @@ - Level3 + Level4 + false Disabled WIN32;@CRYPTO@_DEBUG;_CONSOLE;%(PreprocessorDefinitions) true @@ -84,7 +85,8 @@ copy /Y named-checkzone.ilk named-compilezone.ilk - Level3 + Level1 + true MaxSpeed diff --git a/bin/confgen/win32/confgentool.vcxproj.in b/bin/confgen/win32/confgentool.vcxproj.in index 20a0d3c249..c78533f975 100644 --- a/bin/confgen/win32/confgentool.vcxproj.in +++ b/bin/confgen/win32/confgentool.vcxproj.in @@ -54,7 +54,8 @@ - Level3 + Level4 + false Disabled WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) true @@ -73,7 +74,8 @@ - Level3 + Level1 + true MaxSpeed diff --git a/bin/confgen/win32/ddnsconfgen.vcxproj.in b/bin/confgen/win32/ddnsconfgen.vcxproj.in index 2754d748fb..eaf808d329 100644 --- a/bin/confgen/win32/ddnsconfgen.vcxproj.in +++ b/bin/confgen/win32/ddnsconfgen.vcxproj.in @@ -56,7 +56,8 @@ - Level3 + Level4 + false Disabled WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) true @@ -84,7 +85,8 @@ copy /Y ddns-confgen.ilk tsig-keygen.ilk - Level3 + Level1 + true MaxSpeed diff --git a/bin/confgen/win32/rndcconfgen.vcxproj.in b/bin/confgen/win32/rndcconfgen.vcxproj.in index 32d31cc28b..d446efefbd 100644 --- a/bin/confgen/win32/rndcconfgen.vcxproj.in +++ b/bin/confgen/win32/rndcconfgen.vcxproj.in @@ -56,7 +56,8 @@ - Level3 + Level4 + false Disabled WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) true @@ -78,7 +79,8 @@ - Level3 + Level1 + true MaxSpeed diff --git a/bin/delv/win32/delv.vcxproj.in b/bin/delv/win32/delv.vcxproj.in index d9985e5205..a7d82d0b93 100644 --- a/bin/delv/win32/delv.vcxproj.in +++ b/bin/delv/win32/delv.vcxproj.in @@ -54,7 +54,8 @@ - Level3 + Level4 + false Disabled WIN32;@CRYPTO@_DEBUG;_CONSOLE;%(PreprocessorDefinitions) true @@ -76,7 +77,8 @@ - Level3 + Level1 + true MaxSpeed diff --git a/bin/dig/win32/dig.vcxproj.in b/bin/dig/win32/dig.vcxproj.in index 3810dab20a..aae13da0a9 100644 --- a/bin/dig/win32/dig.vcxproj.in +++ b/bin/dig/win32/dig.vcxproj.in @@ -54,7 +54,8 @@ - Level3 + Level4 + false Disabled WIN32;@CRYPTO@_DEBUG;_CONSOLE;%(PreprocessorDefinitions) true @@ -76,7 +77,8 @@ - Level3 + Level1 + true MaxSpeed diff --git a/bin/dig/win32/dighost.vcxproj.in b/bin/dig/win32/dighost.vcxproj.in index 5a7df33e38..0d05e5e880 100644 --- a/bin/dig/win32/dighost.vcxproj.in +++ b/bin/dig/win32/dighost.vcxproj.in @@ -54,7 +54,8 @@ - Level3 + Level4 + false Disabled WIN32;@CRYPTO@_DEBUG;_CONSOLE;%(PreprocessorDefinitions) true @@ -74,7 +75,8 @@ - Level3 + Level1 + true MaxSpeed diff --git a/bin/dig/win32/host.vcxproj.in b/bin/dig/win32/host.vcxproj.in index 3fc8884049..f7bd4e6fce 100644 --- a/bin/dig/win32/host.vcxproj.in +++ b/bin/dig/win32/host.vcxproj.in @@ -54,7 +54,8 @@ - Level3 + Level4 + false Disabled WIN32;@CRYPTO@_DEBUG;_CONSOLE;%(PreprocessorDefinitions) true @@ -76,7 +77,8 @@ - Level3 + Level1 + true MaxSpeed diff --git a/bin/dig/win32/nslookup.vcxproj.in b/bin/dig/win32/nslookup.vcxproj.in index 6d841b0004..f946aaaa9f 100644 --- a/bin/dig/win32/nslookup.vcxproj.in +++ b/bin/dig/win32/nslookup.vcxproj.in @@ -54,7 +54,8 @@ - Level3 + Level4 + false Disabled WIN32;@CRYPTO@USE_READLINE_STATIC;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) true @@ -76,7 +77,8 @@ - Level3 + Level1 + true MaxSpeed diff --git a/bin/dnssec/win32/dnssectool.vcxproj.in b/bin/dnssec/win32/dnssectool.vcxproj.in index 1a222732fd..570b886a46 100644 --- a/bin/dnssec/win32/dnssectool.vcxproj.in +++ b/bin/dnssec/win32/dnssectool.vcxproj.in @@ -62,7 +62,8 @@ - Level3 + Level4 + false Disabled WIN32;@CRYPTO@_DEBUG;_LIB;%(PreprocessorDefinitions) true @@ -81,7 +82,8 @@ - Level3 + Level1 + true MaxSpeed diff --git a/bin/dnssec/win32/dsfromkey.vcxproj.in b/bin/dnssec/win32/dsfromkey.vcxproj.in index eb8ba4476b..74618ff5f7 100644 --- a/bin/dnssec/win32/dsfromkey.vcxproj.in +++ b/bin/dnssec/win32/dsfromkey.vcxproj.in @@ -56,7 +56,8 @@ - Level3 + Level4 + false Disabled WIN32;@CRYPTO@_DEBUG;_CONSOLE;%(PreprocessorDefinitions) true @@ -91,7 +92,8 @@ set PYTHONPATH=. - Level3 + Level1 + true MaxSpeed diff --git a/bin/dnssec/win32/importkey.vcxproj.in b/bin/dnssec/win32/importkey.vcxproj.in index beaf0d65ba..120bd3ebbd 100644 --- a/bin/dnssec/win32/importkey.vcxproj.in +++ b/bin/dnssec/win32/importkey.vcxproj.in @@ -56,7 +56,8 @@ - Level3 + Level4 + false Disabled WIN32;@CRYPTO@_DEBUG;_CONSOLE;%(PreprocessorDefinitions) true @@ -78,7 +79,8 @@ - Level3 + Level1 + true MaxSpeed diff --git a/bin/dnssec/win32/keyfromlabel.vcxproj.in b/bin/dnssec/win32/keyfromlabel.vcxproj.in index 45d16885df..8256c08c86 100644 --- a/bin/dnssec/win32/keyfromlabel.vcxproj.in +++ b/bin/dnssec/win32/keyfromlabel.vcxproj.in @@ -56,7 +56,8 @@ - Level3 + Level4 + false Disabled WIN32;@CRYPTO@_DEBUG;_CONSOLE;%(PreprocessorDefinitions) true @@ -78,7 +79,8 @@ - Level3 + Level1 + true MaxSpeed diff --git a/bin/dnssec/win32/keygen.vcxproj.in b/bin/dnssec/win32/keygen.vcxproj.in index c1347e290c..e9cc3fde49 100644 --- a/bin/dnssec/win32/keygen.vcxproj.in +++ b/bin/dnssec/win32/keygen.vcxproj.in @@ -56,7 +56,8 @@ - Level3 + Level4 + false Disabled WIN32;@CRYPTO@_DEBUG;_CONSOLE;%(PreprocessorDefinitions) true @@ -78,7 +79,8 @@ - Level3 + Level1 + true MaxSpeed diff --git a/bin/dnssec/win32/revoke.vcxproj.in b/bin/dnssec/win32/revoke.vcxproj.in index a649a95859..883daefcd3 100644 --- a/bin/dnssec/win32/revoke.vcxproj.in +++ b/bin/dnssec/win32/revoke.vcxproj.in @@ -56,7 +56,8 @@ - Level3 + Level4 + false Disabled WIN32;@CRYPTO@_DEBUG;_CONSOLE;%(PreprocessorDefinitions) true @@ -78,7 +79,8 @@ - Level3 + Level1 + true MaxSpeed diff --git a/bin/dnssec/win32/settime.vcxproj.in b/bin/dnssec/win32/settime.vcxproj.in index 19253dc038..8a59a69a38 100644 --- a/bin/dnssec/win32/settime.vcxproj.in +++ b/bin/dnssec/win32/settime.vcxproj.in @@ -56,7 +56,8 @@ - Level3 + Level4 + false Disabled WIN32;@CRYPTO@_DEBUG;_CONSOLE;%(PreprocessorDefinitions) true @@ -78,7 +79,8 @@ - Level3 + Level1 + true MaxSpeed diff --git a/bin/dnssec/win32/signzone.vcxproj.in b/bin/dnssec/win32/signzone.vcxproj.in index 2a57e16d74..ede0a64128 100644 --- a/bin/dnssec/win32/signzone.vcxproj.in +++ b/bin/dnssec/win32/signzone.vcxproj.in @@ -56,7 +56,8 @@ - Level3 + Level4 + false Disabled WIN32;@CRYPTO@_DEBUG;_CONSOLE;%(PreprocessorDefinitions) true @@ -78,7 +79,8 @@ - Level3 + Level1 + true MaxSpeed diff --git a/bin/dnssec/win32/verify.vcxproj.in b/bin/dnssec/win32/verify.vcxproj.in index 8cc36ae9d1..b5fe4cc07f 100644 --- a/bin/dnssec/win32/verify.vcxproj.in +++ b/bin/dnssec/win32/verify.vcxproj.in @@ -56,7 +56,8 @@ - Level3 + Level4 + false Disabled WIN32;@CRYPTO@_DEBUG;_CONSOLE;%(PreprocessorDefinitions) true @@ -78,7 +79,8 @@ - Level3 + Level1 + true MaxSpeed diff --git a/bin/named/win32/named.vcxproj.in b/bin/named/win32/named.vcxproj.in index eb44bf3542..2f4d707584 100644 --- a/bin/named/win32/named.vcxproj.in +++ b/bin/named/win32/named.vcxproj.in @@ -54,7 +54,8 @@ - Level3 + Level4 + false Disabled WIN32;@CRYPTO@@USE_GSSAPI@BUILDER="Visual Studio";_DEBUG;_CONSOLE;%(PreprocessorDefinitions) true @@ -76,7 +77,8 @@ - Level3 + Level1 + true MaxSpeed diff --git a/bin/nsupdate/win32/nsupdate.vcxproj.in b/bin/nsupdate/win32/nsupdate.vcxproj.in index 9bac652b5f..91e895a39f 100644 --- a/bin/nsupdate/win32/nsupdate.vcxproj.in +++ b/bin/nsupdate/win32/nsupdate.vcxproj.in @@ -54,7 +54,8 @@ - Level3 + Level4 + false Disabled WIN32;@CRYPTO@@USE_GSSAPI@USE_READLINE_STATIC;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) true @@ -76,7 +77,8 @@ - Level3 + Level1 + true MaxSpeed diff --git a/bin/pkcs11/win32/pk11destroy.vcxproj.in b/bin/pkcs11/win32/pk11destroy.vcxproj.in index b800978076..90f5f154e7 100644 --- a/bin/pkcs11/win32/pk11destroy.vcxproj.in +++ b/bin/pkcs11/win32/pk11destroy.vcxproj.in @@ -56,7 +56,8 @@ - Level3 + Level4 + false Disabled WIN32;@PK11_LIB_LOCATION@_DEBUG;_CONSOLE;%(PreprocessorDefinitions) true @@ -78,7 +79,8 @@ - Level3 + Level1 + true MaxSpeed diff --git a/bin/pkcs11/win32/pk11keygen.vcxproj.in b/bin/pkcs11/win32/pk11keygen.vcxproj.in index 767dae556d..468a74f50b 100644 --- a/bin/pkcs11/win32/pk11keygen.vcxproj.in +++ b/bin/pkcs11/win32/pk11keygen.vcxproj.in @@ -56,7 +56,8 @@ - Level3 + Level4 + false Disabled WIN32;@PK11_LIB_LOCATION@_DEBUG;_CONSOLE;%(PreprocessorDefinitions) true @@ -78,7 +79,8 @@ - Level3 + Level1 + true MaxSpeed diff --git a/bin/pkcs11/win32/pk11list.vcxproj.in b/bin/pkcs11/win32/pk11list.vcxproj.in index 10d05eafcd..51adf6c650 100644 --- a/bin/pkcs11/win32/pk11list.vcxproj.in +++ b/bin/pkcs11/win32/pk11list.vcxproj.in @@ -56,7 +56,8 @@ - Level3 + Level4 + false Disabled WIN32;@PK11_LIB_LOCATION@_DEBUG;_CONSOLE;%(PreprocessorDefinitions) true @@ -78,7 +79,8 @@ - Level3 + Level1 + true MaxSpeed diff --git a/bin/pkcs11/win32/pk11tokens.vcxproj.in b/bin/pkcs11/win32/pk11tokens.vcxproj.in index a5ee022898..bf334d86b9 100644 --- a/bin/pkcs11/win32/pk11tokens.vcxproj.in +++ b/bin/pkcs11/win32/pk11tokens.vcxproj.in @@ -56,7 +56,8 @@ - Level3 + Level4 + false Disabled WIN32;@PK11_LIB_LOCATION@_DEBUG;_CONSOLE;%(PreprocessorDefinitions) true @@ -78,7 +79,8 @@ - Level3 + Level1 + true MaxSpeed diff --git a/bin/rndc/win32/rndc.vcxproj.in b/bin/rndc/win32/rndc.vcxproj.in index f47d7844da..a10ac75ab4 100644 --- a/bin/rndc/win32/rndc.vcxproj.in +++ b/bin/rndc/win32/rndc.vcxproj.in @@ -54,7 +54,8 @@ - Level3 + Level4 + false Disabled WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) true @@ -76,7 +77,8 @@ - Level3 + Level1 + true MaxSpeed diff --git a/bin/rndc/win32/rndcutil.vcxproj.in b/bin/rndc/win32/rndcutil.vcxproj.in index f6afdf73dd..6264e75426 100644 --- a/bin/rndc/win32/rndcutil.vcxproj.in +++ b/bin/rndc/win32/rndcutil.vcxproj.in @@ -56,7 +56,8 @@ - Level3 + Level4 + false Disabled WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) true @@ -74,7 +75,8 @@ - Level3 + Level1 + true MaxSpeed diff --git a/bin/tests/system/win32/bigkey.vcxproj.in b/bin/tests/system/win32/bigkey.vcxproj.in index 0ad231acb0..5e6a2c37f4 100644 --- a/bin/tests/system/win32/bigkey.vcxproj.in +++ b/bin/tests/system/win32/bigkey.vcxproj.in @@ -54,7 +54,8 @@ - Level3 + Level4 + false Disabled WIN32;@CRYPTO@_DEBUG;_CONSOLE;%(PreprocessorDefinitions) true @@ -76,7 +77,8 @@ - Level3 + Level1 + true MaxSpeed diff --git a/bin/tests/system/win32/feature-test.vcxproj.in b/bin/tests/system/win32/feature-test.vcxproj.in index 7e6fe37978..e638199e28 100644 --- a/bin/tests/system/win32/feature-test.vcxproj.in +++ b/bin/tests/system/win32/feature-test.vcxproj.in @@ -54,7 +54,8 @@ - Level3 + Level4 + false Disabled WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) true @@ -76,7 +77,8 @@ - Level3 + Level1 + true MaxSpeed diff --git a/bin/tests/system/win32/gencheck.vcxproj.in b/bin/tests/system/win32/gencheck.vcxproj.in index 33e1bd77d0..f0ad63f920 100644 --- a/bin/tests/system/win32/gencheck.vcxproj.in +++ b/bin/tests/system/win32/gencheck.vcxproj.in @@ -54,7 +54,8 @@ - Level3 + Level4 + false Disabled WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) true @@ -76,7 +77,8 @@ - Level3 + Level1 + true MaxSpeed diff --git a/bin/tests/system/win32/keycreate.vcxproj.in b/bin/tests/system/win32/keycreate.vcxproj.in index b1982d6007..2393f98338 100644 --- a/bin/tests/system/win32/keycreate.vcxproj.in +++ b/bin/tests/system/win32/keycreate.vcxproj.in @@ -54,7 +54,8 @@ - Level3 + Level4 + false Disabled WIN32;@CRYPTO@_DEBUG;_CONSOLE;%(PreprocessorDefinitions) true @@ -76,7 +77,8 @@ - Level3 + Level1 + true MaxSpeed diff --git a/bin/tests/system/win32/keydelete.vcxproj.in b/bin/tests/system/win32/keydelete.vcxproj.in index 9eabef327d..163392d73f 100644 --- a/bin/tests/system/win32/keydelete.vcxproj.in +++ b/bin/tests/system/win32/keydelete.vcxproj.in @@ -54,7 +54,8 @@ - Level3 + Level4 + false Disabled WIN32;@CRYPTO@_DEBUG;_CONSOLE;%(PreprocessorDefinitions) true @@ -76,7 +77,8 @@ - Level3 + Level1 + true MaxSpeed diff --git a/bin/tests/system/win32/lwtest.vcxproj.in b/bin/tests/system/win32/lwtest.vcxproj.in index d0621c0d5a..2447662605 100644 --- a/bin/tests/system/win32/lwtest.vcxproj.in +++ b/bin/tests/system/win32/lwtest.vcxproj.in @@ -54,7 +54,8 @@ - Level3 + Level4 + false Disabled WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) true @@ -76,7 +77,8 @@ - Level3 + Level1 + true MaxSpeed diff --git a/bin/tests/system/win32/pipequeries.vcxproj.in b/bin/tests/system/win32/pipequeries.vcxproj.in index b260121207..cff4ac755f 100644 --- a/bin/tests/system/win32/pipequeries.vcxproj.in +++ b/bin/tests/system/win32/pipequeries.vcxproj.in @@ -54,7 +54,8 @@ - Level3 + Level4 + false Disabled WIN32;@CRYPTO@_DEBUG;_CONSOLE;%(PreprocessorDefinitions) true @@ -76,7 +77,8 @@ - Level3 + Level1 + true MaxSpeed diff --git a/bin/tests/win32/backtrace_test.vcxproj.in b/bin/tests/win32/backtrace_test.vcxproj.in index 9cb684f380..7d66cf75b8 100644 --- a/bin/tests/win32/backtrace_test.vcxproj.in +++ b/bin/tests/win32/backtrace_test.vcxproj.in @@ -54,7 +54,8 @@ - Level3 + Level4 + false Disabled WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) true @@ -76,7 +77,8 @@ - Level3 + Level1 + true MaxSpeed diff --git a/bin/tests/win32/inter_test.vcxproj.in b/bin/tests/win32/inter_test.vcxproj.in index 749c04470e..ca5d5c1cb3 100644 --- a/bin/tests/win32/inter_test.vcxproj.in +++ b/bin/tests/win32/inter_test.vcxproj.in @@ -54,7 +54,8 @@ - Level3 + Level4 + false Disabled WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) true @@ -76,7 +77,8 @@ - Level3 + Level1 + true MaxSpeed diff --git a/bin/tests/win32/makejournal.vcxproj.in b/bin/tests/win32/makejournal.vcxproj.in index 55c836ae81..f5f197e4c2 100644 --- a/bin/tests/win32/makejournal.vcxproj.in +++ b/bin/tests/win32/makejournal.vcxproj.in @@ -54,7 +54,8 @@ - Level3 + Level4 + false Disabled WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) true @@ -76,7 +77,8 @@ - Level3 + Level1 + true MaxSpeed diff --git a/bin/tests/win32/rwlock_test.vcxproj.in b/bin/tests/win32/rwlock_test.vcxproj.in index df89ed3daa..f5950c94c0 100644 --- a/bin/tests/win32/rwlock_test.vcxproj.in +++ b/bin/tests/win32/rwlock_test.vcxproj.in @@ -54,7 +54,8 @@ - Level3 + Level4 + false Disabled WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) true @@ -76,7 +77,8 @@ - Level3 + Level1 + true MaxSpeed diff --git a/bin/tests/win32/shutdown_test.vcxproj.in b/bin/tests/win32/shutdown_test.vcxproj.in index 4c670ba919..78601faefe 100644 --- a/bin/tests/win32/shutdown_test.vcxproj.in +++ b/bin/tests/win32/shutdown_test.vcxproj.in @@ -54,7 +54,8 @@ - Level3 + Level4 + false Disabled WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) true @@ -76,7 +77,8 @@ - Level3 + Level1 + true MaxSpeed diff --git a/bin/tests/win32/sock_test.vcxproj.in b/bin/tests/win32/sock_test.vcxproj.in index 786c07f8c8..da26fd1039 100644 --- a/bin/tests/win32/sock_test.vcxproj.in +++ b/bin/tests/win32/sock_test.vcxproj.in @@ -54,7 +54,8 @@ - Level3 + Level4 + false Disabled WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) true @@ -76,7 +77,8 @@ - Level3 + Level1 + true MaxSpeed diff --git a/bin/tests/win32/task_test.vcxproj.in b/bin/tests/win32/task_test.vcxproj.in index 87adb81954..3a69771bbd 100644 --- a/bin/tests/win32/task_test.vcxproj.in +++ b/bin/tests/win32/task_test.vcxproj.in @@ -54,7 +54,8 @@ - Level3 + Level4 + false Disabled WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) true @@ -76,7 +77,8 @@ - Level3 + Level1 + true MaxSpeed diff --git a/bin/tests/win32/timer_test.vcxproj.in b/bin/tests/win32/timer_test.vcxproj.in index 0ea6b343cc..7f41b0f82e 100644 --- a/bin/tests/win32/timer_test.vcxproj.in +++ b/bin/tests/win32/timer_test.vcxproj.in @@ -54,7 +54,8 @@ - Level3 + Level4 + false Disabled WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) true @@ -76,7 +77,8 @@ - Level3 + Level1 + true MaxSpeed diff --git a/bin/tools/win32/arpaname.vcxproj.in b/bin/tools/win32/arpaname.vcxproj.in index 38af238feb..abe84dfb75 100644 --- a/bin/tools/win32/arpaname.vcxproj.in +++ b/bin/tools/win32/arpaname.vcxproj.in @@ -54,7 +54,8 @@ - Level3 + Level4 + false Disabled WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) .\;..\..\..\;@LIBXML2_INC@..\..\..\lib\isc\win32;..\..\..\lib\isc\win32\include;..\..\..\lib\isc\include;%(AdditionalIncludeDirectories) @@ -76,7 +77,8 @@ - Level3 + Level1 + true MaxSpeed diff --git a/bin/tools/win32/genrandom.vcxproj.in b/bin/tools/win32/genrandom.vcxproj.in index dd93728ce0..6ff8224340 100644 --- a/bin/tools/win32/genrandom.vcxproj.in +++ b/bin/tools/win32/genrandom.vcxproj.in @@ -54,7 +54,8 @@ - Level3 + Level4 + false Disabled WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) true @@ -76,7 +77,8 @@ - Level3 + Level1 + true MaxSpeed diff --git a/bin/tools/win32/ischmacfixup.vcxproj.in b/bin/tools/win32/ischmacfixup.vcxproj.in index 5e4e61b6a0..a4664b482e 100644 --- a/bin/tools/win32/ischmacfixup.vcxproj.in +++ b/bin/tools/win32/ischmacfixup.vcxproj.in @@ -56,7 +56,8 @@ - Level3 + Level4 + false Disabled WIN32;@CRYPTO@_DEBUG;_CONSOLE;%(PreprocessorDefinitions) true @@ -78,7 +79,8 @@ - Level3 + Level1 + true MaxSpeed diff --git a/bin/tools/win32/journalprint.vcxproj.in b/bin/tools/win32/journalprint.vcxproj.in index 1de3a827d8..b2c66fea94 100644 --- a/bin/tools/win32/journalprint.vcxproj.in +++ b/bin/tools/win32/journalprint.vcxproj.in @@ -56,7 +56,8 @@ - Level3 + Level4 + false Disabled WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) true @@ -78,7 +79,8 @@ - Level3 + Level1 + true MaxSpeed diff --git a/bin/tools/win32/mdig.vcxproj.in b/bin/tools/win32/mdig.vcxproj.in index 60add35f58..4bf7019cc0 100644 --- a/bin/tools/win32/mdig.vcxproj.in +++ b/bin/tools/win32/mdig.vcxproj.in @@ -54,7 +54,8 @@ - Level3 + Level4 + false Disabled WIN32;@CRYPTO@_DEBUG;_CONSOLE;%(PreprocessorDefinitions) true @@ -76,7 +77,8 @@ - Level3 + Level1 + true MaxSpeed diff --git a/bin/tools/win32/nsec3hash.vcxproj.in b/bin/tools/win32/nsec3hash.vcxproj.in index 763b356a1d..cb532cbb2d 100644 --- a/bin/tools/win32/nsec3hash.vcxproj.in +++ b/bin/tools/win32/nsec3hash.vcxproj.in @@ -54,7 +54,8 @@ - Level3 + Level4 + false Disabled WIN32;@CRYPTO@_DEBUG;_CONSOLE;%(PreprocessorDefinitions) true @@ -76,7 +77,8 @@ - Level3 + Level1 + true MaxSpeed diff --git a/bin/tools/win32/rrchecker.vcxproj.in b/bin/tools/win32/rrchecker.vcxproj.in index 2060d01aa0..b272aed5e5 100644 --- a/bin/tools/win32/rrchecker.vcxproj.in +++ b/bin/tools/win32/rrchecker.vcxproj.in @@ -56,7 +56,8 @@ - Level3 + Level4 + false Disabled WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) true @@ -78,7 +79,8 @@ - Level3 + Level1 + true MaxSpeed diff --git a/bin/win32/BINDInstall/BINDInstall.vcxproj.in b/bin/win32/BINDInstall/BINDInstall.vcxproj.in index 7bc608fae7..18a65aefdc 100644 --- a/bin/win32/BINDInstall/BINDInstall.vcxproj.in +++ b/bin/win32/BINDInstall/BINDInstall.vcxproj.in @@ -56,7 +56,8 @@ MultiThreadedDebug Use - Level3 + Level4 + false Disabled WIN32;@CRYPTO@@USE_GSSAPI@@USE_PYTHON@_DEBUG;_WINDOWS;%(PreprocessorDefinitions) ..\..\..;..\include;..\..\..\include;..\..\named\win32\include;..\..\..\lib\isc\win32\include;..\..\..\lib\isc\include;%(AdditionalIncludeDirectories) @@ -83,7 +84,8 @@ MultiThreaded - Level3 + Level1 + true Use MaxSpeed true diff --git a/doc/xsl/graphics/caution.eps b/doc/xsl/graphics/caution.eps index c9473b7272..ff3c2c4c4c 100644 --- a/doc/xsl/graphics/caution.eps +++ b/doc/xsl/graphics/caution.eps @@ -82,8 +82,8 @@ readbinarystring } if pop exch pop } bdf -/_NXLevel2 defed { -_NXLevel2 not { +/_NXLevel1 defed { +_NXLevel1 not { /colorimage where { userdict eq { /_rci false def diff --git a/doc/xsl/graphics/important.eps b/doc/xsl/graphics/important.eps index c9473b7272..ff3c2c4c4c 100644 --- a/doc/xsl/graphics/important.eps +++ b/doc/xsl/graphics/important.eps @@ -82,8 +82,8 @@ readbinarystring } if pop exch pop } bdf -/_NXLevel2 defed { -_NXLevel2 not { +/_NXLevel1 defed { +_NXLevel1 not { /colorimage where { userdict eq { /_rci false def diff --git a/doc/xsl/graphics/note.eps b/doc/xsl/graphics/note.eps index 39be23fa77..f5df521781 100644 --- a/doc/xsl/graphics/note.eps +++ b/doc/xsl/graphics/note.eps @@ -82,8 +82,8 @@ readbinarystring } if pop exch pop } bdf -/_NXLevel2 defed { -_NXLevel2 not { +/_NXLevel1 defed { +_NXLevel1 not { /colorimage where { userdict eq { /_rci false def diff --git a/doc/xsl/graphics/tip.eps b/doc/xsl/graphics/tip.eps index a28ad883eb..0edd2ef792 100644 --- a/doc/xsl/graphics/tip.eps +++ b/doc/xsl/graphics/tip.eps @@ -82,8 +82,8 @@ readbinarystring } if pop exch pop } bdf -/_NXLevel2 defed { -_NXLevel2 not { +/_NXLevel1 defed { +_NXLevel1 not { /colorimage where { userdict eq { /_rci false def diff --git a/doc/xsl/graphics/warning.eps b/doc/xsl/graphics/warning.eps index c9473b7272..ff3c2c4c4c 100644 --- a/doc/xsl/graphics/warning.eps +++ b/doc/xsl/graphics/warning.eps @@ -82,8 +82,8 @@ readbinarystring } if pop exch pop } bdf -/_NXLevel2 defed { -_NXLevel2 not { +/_NXLevel1 defed { +_NXLevel1 not { /colorimage where { userdict eq { /_rci false def diff --git a/lib/bind9/win32/libbind9.vcxproj.in b/lib/bind9/win32/libbind9.vcxproj.in index 4449df0b87..409acaccf4 100644 --- a/lib/bind9/win32/libbind9.vcxproj.in +++ b/lib/bind9/win32/libbind9.vcxproj.in @@ -54,7 +54,8 @@ - Level3 + Level4 + false Disabled WIN32;USE_MD5;@CRYPTO@_DEBUG;_WINDOWS;_USRDLL;LIBBIND9_EXPORTS;%(PreprocessorDefinitions);%(PreprocessorDefinitions) ./;../../../;include;../include;../../isc/win32;../../isc/win32/include;../../isc/include;../../isccfg/include;../../dns/include;@LIBXML2_INC@@OPENSSL_INC@@GEOIP_INC@%(AdditionalIncludeDirectories) @@ -78,7 +79,8 @@ - Level3 + Level1 + true MaxSpeed diff --git a/lib/dns/win32/gen.vcxproj.in b/lib/dns/win32/gen.vcxproj.in index 67c06d0ef5..33a8a1e6f7 100644 --- a/lib/dns/win32/gen.vcxproj.in +++ b/lib/dns/win32/gen.vcxproj.in @@ -54,7 +54,8 @@ - Level3 + Level4 + false Disabled WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) .\;..\..\..\;..\..\isc\win32;..\..\isc\win32\include;..\..\isc\include;%(AdditionalIncludeDirectories) @@ -83,7 +84,8 @@ gen -s . > code.h - Level3 + Level1 + true MaxSpeed diff --git a/lib/dns/win32/libdns.vcxproj.in b/lib/dns/win32/libdns.vcxproj.in index 2aec65c284..d568471061 100644 --- a/lib/dns/win32/libdns.vcxproj.in +++ b/lib/dns/win32/libdns.vcxproj.in @@ -54,7 +54,8 @@ - Level3 + Level4 + false Disabled BIND9;WIN32;USE_MD5;@CRYPTO@@USE_GSSAPI@@USE_ISC_SPNEGO@_DEBUG;_WINDOWS;_USRDLL;LIBDNS_EXPORTS;%(PreprocessorDefinitions);%(PreprocessorDefinitions);%(PreprocessorDefinitions) .\;..\..\..\;include;..\include;..\..\isc;..\..\isc\win32;..\..\isc\win32\include;..\..\isc\include;@LIBXML2_INC@@OPENSSL_INC@@GSSAPI_INC@@GEOIP_INC@%(AdditionalIncludeDirectories) @@ -78,7 +79,8 @@ - Level3 + Level1 + true MaxSpeed diff --git a/lib/irs/win32/libirs.vcxproj.in b/lib/irs/win32/libirs.vcxproj.in index 88051eb265..3f13d33250 100644 --- a/lib/irs/win32/libirs.vcxproj.in +++ b/lib/irs/win32/libirs.vcxproj.in @@ -54,7 +54,8 @@ - Level3 + Level4 + false Disabled WIN32;USE_MD5;@CRYPTO@_DEBUG;_WINDOWS;_USRDLL;LIBIRS_EXPORTS;%(PreprocessorDefinitions);%(PreprocessorDefinitions) .\;..\..\..\;include;..\include;..\..\isc\win32;..\..\isc\win32\include;..\..\isc\include;..\..\isccfg\include;..\..\dns\include;@LIBXML2_INC@@OPENSSL_INC@@GEOIP_INC@%(AdditionalIncludeDirectories) @@ -78,7 +79,8 @@ - Level3 + Level1 + true MaxSpeed diff --git a/lib/isc/win32/libisc.vcxproj.in b/lib/isc/win32/libisc.vcxproj.in index 36fcefe5ab..383ce11ec0 100644 --- a/lib/isc/win32/libisc.vcxproj.in +++ b/lib/isc/win32/libisc.vcxproj.in @@ -54,7 +54,8 @@ - Level3 + Level4 + false Disabled @IF PKCS11 BIND9;@CRYPTO@@PK11_LIB_LOCATION@WIN32;_DEBUG;_WINDOWS;_USRDLL;LIBISC_EXPORTS;%(PreprocessorDefinitions);%(PreprocessorDefinitions) @@ -145,7 +146,8 @@ copy InstallFiles ..\Build\Debug\ - Level3 + Level1 + true MaxSpeed diff --git a/lib/isccc/win32/libisccc.vcxproj.in b/lib/isccc/win32/libisccc.vcxproj.in index 86925effb5..f3be2d91ff 100644 --- a/lib/isccc/win32/libisccc.vcxproj.in +++ b/lib/isccc/win32/libisccc.vcxproj.in @@ -54,7 +54,8 @@ - Level3 + Level4 + false Disabled WIN32;USE_MD5;@CRYPTO@_DEBUG;_WINDOWS;_USRDLL;LIBISCCC_EXPORTS;%(PreprocessorDefinitions);%(PreprocessorDefinitions) .\;..\..\..\;@LIBXML2_INC@@OPENSSL_INC@include;..\include;..\..\isc\win32;..\..\isc\win32\include;..\..\isc\include;..\..\dns\include;%(AdditionalIncludeDirectories) @@ -78,7 +79,8 @@ - Level3 + Level1 + true MaxSpeed diff --git a/lib/isccfg/win32/libisccfg.vcxproj.in b/lib/isccfg/win32/libisccfg.vcxproj.in index bb1f8fc15a..f721837fb4 100644 --- a/lib/isccfg/win32/libisccfg.vcxproj.in +++ b/lib/isccfg/win32/libisccfg.vcxproj.in @@ -54,7 +54,8 @@ - Level3 + Level4 + false Disabled WIN32;USE_MD5;@CRYPTO@_DEBUG;_WINDOWS;_USRDLL;LIBISCCFG_EXPORTS;%(PreprocessorDefinitions);%(PreprocessorDefinitions) .\;..\..\..\;include;..\include;..\..\isc\win32;..\..\isc\win32\include;..\..\isc\include;..\..\dns\include;@LIBXML2_INC@@GEOIP_INC@%(AdditionalIncludeDirectories) @@ -78,7 +79,8 @@ - Level3 + Level1 + true MaxSpeed diff --git a/lib/lwres/win32/liblwres.vcxproj.in b/lib/lwres/win32/liblwres.vcxproj.in index ee91c46ff2..e22355d6f2 100644 --- a/lib/lwres/win32/liblwres.vcxproj.in +++ b/lib/lwres/win32/liblwres.vcxproj.in @@ -54,7 +54,8 @@ - Level3 + Level4 + false Disabled WIN32;USE_MD5;@CRYPTO@_DEBUG;_WINDOWS;_USRDLL;LIBLWRES_EXPORTS;%(PreprocessorDefinitions);%(PreprocessorDefinitions) .\;..\..\lwres\win32\include;..\..\..\;include;..\include;..\..\isc\win32;..\..\isc\win32\include;..\..\isc\include;..\..\dns\include;%(AdditionalIncludeDirectories) @@ -77,7 +78,8 @@ - Level3 + Level1 + true MaxSpeed diff --git a/lib/samples/win32/async.vcxproj.in b/lib/samples/win32/async.vcxproj.in index 8d88df73e9..a3ed66ace5 100644 --- a/lib/samples/win32/async.vcxproj.in +++ b/lib/samples/win32/async.vcxproj.in @@ -54,7 +54,8 @@ - Level3 + Level4 + false Disabled WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) true @@ -76,7 +77,8 @@ - Level3 + Level1 + true MaxSpeed diff --git a/lib/samples/win32/gai.vcxproj.in b/lib/samples/win32/gai.vcxproj.in index efdae41556..0a10d35eb0 100644 --- a/lib/samples/win32/gai.vcxproj.in +++ b/lib/samples/win32/gai.vcxproj.in @@ -54,7 +54,8 @@ - Level3 + Level4 + false Disabled WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) true @@ -76,7 +77,8 @@ - Level3 + Level1 + true MaxSpeed diff --git a/lib/samples/win32/nsprobe.vcxproj.in b/lib/samples/win32/nsprobe.vcxproj.in index 8769fac906..c1ac9b68f3 100644 --- a/lib/samples/win32/nsprobe.vcxproj.in +++ b/lib/samples/win32/nsprobe.vcxproj.in @@ -54,7 +54,8 @@ - Level3 + Level4 + false Disabled WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) true @@ -76,7 +77,8 @@ - Level3 + Level1 + true MaxSpeed diff --git a/lib/samples/win32/request.vcxproj.in b/lib/samples/win32/request.vcxproj.in index df4f000f7e..56381ee56d 100644 --- a/lib/samples/win32/request.vcxproj.in +++ b/lib/samples/win32/request.vcxproj.in @@ -54,7 +54,8 @@ - Level3 + Level4 + false Disabled WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) true @@ -76,7 +77,8 @@ - Level3 + Level1 + true MaxSpeed diff --git a/lib/samples/win32/resolve.vcxproj.in b/lib/samples/win32/resolve.vcxproj.in index ab37757098..9325d5672c 100644 --- a/lib/samples/win32/resolve.vcxproj.in +++ b/lib/samples/win32/resolve.vcxproj.in @@ -54,7 +54,8 @@ - Level3 + Level4 + false Disabled WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) true @@ -76,7 +77,8 @@ - Level3 + Level1 + true MaxSpeed diff --git a/lib/samples/win32/update.vcxproj.in b/lib/samples/win32/update.vcxproj.in index a7dd0a905a..4093350113 100644 --- a/lib/samples/win32/update.vcxproj.in +++ b/lib/samples/win32/update.vcxproj.in @@ -54,7 +54,8 @@ - Level3 + Level4 + false Disabled WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) true @@ -76,7 +77,8 @@ - Level3 + Level1 + true MaxSpeed diff --git a/lib/win32/bindevt/bindevt.vcxproj.in b/lib/win32/bindevt/bindevt.vcxproj.in index e1dedada92..12df7797d4 100644 --- a/lib/win32/bindevt/bindevt.vcxproj.in +++ b/lib/win32/bindevt/bindevt.vcxproj.in @@ -58,7 +58,8 @@ - Level3 + Level4 + false Disabled WIN32;_DEBUG;_WINDOWS;_USRDLL;BINDEVT_EXPORTS;%(PreprocessorDefinitions) ..\include;..\..\..\include;%(AdditionalIncludeDirectories) @@ -85,7 +86,8 @@ - Level3 + Level1 + true MaxSpeed