[mdnsresponder] Change compile flag /Zi to /Z7 (#15340)

This commit is contained in:
Jack·Boos·Yu 2020-12-29 16:07:42 -08:00 committed by GitHub
parent 21872f70f5
commit d5b47fcc98
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 1 deletions

View File

@ -1,5 +1,6 @@
Source: mdnsresponder
Version: 765.30.11-2
Version: 765.30.11
Port-Version: 3
Description: The mDNSResponder project is a component of Bonjour, Apple's ease-of-use IP networking initiative.
Homepage: https://developer.apple.com/bonjour/
Supports: !arm

View File

@ -49,6 +49,11 @@ function(FIX_VCXPROJ VCXPROJ_PATH)
"<ConfigurationType>StaticLibrary</ConfigurationType>"
ORIG "${ORIG}")
endif()
string(REPLACE
"<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>"
"<DebugInformationFormat>OldStyle</DebugInformationFormat>"
ORIG "${ORIG}")
file(WRITE ${VCXPROJ_PATH} "${ORIG}")
endfunction()