Commit 34643c02 authored by Christian Heimes's avatar Christian Heimes

Issue #16632: Enable DEP and ASLR on Windows.

parent 6cf8980d
...@@ -307,6 +307,8 @@ Tests ...@@ -307,6 +307,8 @@ Tests
Build Build
----- -----
- Issue #16632: Enable DEP and ASLR on Windows.
- Issue #17791: Drop PREFIX and EXEC_PREFIX definitions from PC/pyconfig.h - Issue #17791: Drop PREFIX and EXEC_PREFIX definitions from PC/pyconfig.h
- Add workaround for VS 2010 nmake clean issue. VS 2010 doesn't set up PATH - Add workaround for VS 2010 nmake clean issue. VS 2010 doesn't set up PATH
......
...@@ -49,9 +49,8 @@ ...@@ -49,9 +49,8 @@
<GenerateDebugInformation>true</GenerateDebugInformation> <GenerateDebugInformation>true</GenerateDebugInformation>
<ProgramDatabaseFile>$(OutDir)$(TargetName).pdb</ProgramDatabaseFile> <ProgramDatabaseFile>$(OutDir)$(TargetName).pdb</ProgramDatabaseFile>
<SubSystem>Windows</SubSystem> <SubSystem>Windows</SubSystem>
<RandomizedBaseAddress>false</RandomizedBaseAddress> <RandomizedBaseAddress>true</RandomizedBaseAddress>
<DataExecutionPrevention> <DataExecutionPrevention>true</DataExecutionPrevention>
</DataExecutionPrevention>
<TargetMachine>MachineX86</TargetMachine> <TargetMachine>MachineX86</TargetMachine>
</Link> </Link>
<ResourceCompile> <ResourceCompile>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment