summaryrefslogtreecommitdiffstats
path: root/PCbuild/tix.vcxproj
diff options
context:
space:
mode:
authorSegev Finer <segev208@gmail.com>2017-07-26 22:17:57 (GMT)
committerSteve Dower <steve.dower@microsoft.com>2017-07-26 22:17:57 (GMT)
commit679b566622ec811c5e5d580f6a538f7a43006e05 (patch)
tree52be9b1a2d2e0e567d8fa44c72a71659647460de /PCbuild/tix.vcxproj
parentf0851910eb8e711bf8f22165cb0df33bb27b09d6 (diff)
downloadcpython-679b566622ec811c5e5d580f6a538f7a43006e05.zip
cpython-679b566622ec811c5e5d580f6a538f7a43006e05.tar.gz
cpython-679b566622ec811c5e5d580f6a538f7a43006e05.tar.bz2
bpo-9566: Fix some Windows x64 compiler warnings (#2492)
* bpo-9566: Silence liblzma warnings * bpo-9566: Silence tcl warnings * bpo-9566: Silence tk warnings * bpo-9566: Silence tix warnings * bpo-9566: Fix some library warnings * bpo-9566: Fix msvcrtmodule.c warnings * bpo-9566: Silence _bz2 warnings * bpo-9566: Fixed some _ssl warnings * bpo-9566: Fix _msi warnings * bpo-9566: Silence _ctypes warnings * Revert "bpo-9566: Fixed some _ssl warnings" This reverts commit a639001c949ba53338a9ee047d2ec1efd2505e6f. * bpo-9566: Also consider NULL as a possible error in HANDLE_return_converter * bpo-9566: whitespace fixes
Diffstat (limited to 'PCbuild/tix.vcxproj')
-rw-r--r--PCbuild/tix.vcxproj2
1 files changed, 1 insertions, 1 deletions
diff --git a/PCbuild/tix.vcxproj b/PCbuild/tix.vcxproj
index 525758c..5168209 100644
--- a/PCbuild/tix.vcxproj
+++ b/PCbuild/tix.vcxproj
@@ -56,7 +56,7 @@
<TixDirs>BUILDDIRTOP="$(BuildDirTop)" TCL_DIR="$(tclDir.TrimEnd(`\`))" TK_DIR="$(tkDir.TrimEnd(`\`))" INSTALL_DIR="$(OutDir.TrimEnd(`\`))"</TixDirs>
<DebugFlags Condition="'$(Configuration)' == 'Debug'">DEBUG=1 NODEBUG=0 TCL_DBGX=g TK_DBGX=g</DebugFlags>
<DebugFlags Condition="'$(Configuration)' != 'Debug'">DEBUG=0 NODEBUG=1</DebugFlags>
- <CFlags>-c -W3 -nologo -MD -wd4028 -wd4090</CFlags>
+ <CFlags>-c -W3 -nologo -MD -wd4028 -wd4090 -wd4244 -wd4267 -wd4312</CFlags>
<NMakeBuildCommandLine>setlocal
set VCINSTALLDIR=$(VCInstallDir)
cd /D "$(tixDir)win"