1
0
mirror of https://github.com/nmap/nmap.git synced 2025-12-31 03:49:01 +00:00

o The Nmap Windows self-installer now automatically installs the MS

Visual C++ 2008 runtime components if they aren't already installed
  on a system.  These are some reasonably small DLLs that are
  generally necessary for applications compiled with Visual C++ (with
  dynamic linking).  Many or most systems already have these installed
  from other software packages.  The lack of these components led to
  the error message "The Application failed to intialize properly
  (0xc0150002)." with Nmap 4.65.  A related change is that Nmap on
  Windows is now compiled with /MD rather than /MT so that it
  consistently uses these runtime libraries.  The patch was created by
  Rob Nicholls.
This commit is contained in:
fyodor
2008-06-29 04:52:00 +00:00
parent 22fac0e3e5
commit 2c4f8d1a67
8 changed files with 24 additions and 6 deletions

View File

@@ -106,7 +106,7 @@
<Tool
Name="VCCLCompilerTool"
PreprocessorDefinitions="WIN32;_LIB"
RuntimeLibrary="0"
RuntimeLibrary="2"
UsePrecompiledHeader="0"
WarningLevel="3"
Detect64BitPortabilityProblems="false"