]> granicus.if.org Git - curl/commitdiff
winbuild: Add manifest to curl.exe for proper OS version detection
authorJoel Depooter <joel.depooter@gmail.com>
Sun, 22 Sep 2019 20:03:18 +0000 (13:03 -0700)
committerDaniel Stenberg <daniel@haxx.se>
Mon, 23 Sep 2019 07:15:00 +0000 (09:15 +0200)
This is a small fix to commit ebd213270a017a6830928ee2e1f4a9cabc799898
in pull request #1221. That commit added the CURL_EMBED_MANIFEST flag to
CURL_RC_FLAGS. However, later in the file CURL_RC_FLAGS is
overwritten. The fix is to append values to CURL_RC_FLAGS instead of
overwriting

Closes #4399

winbuild/MakefileBuild.vc

index 8d68b318443ad0e93ffdddc23bfd5b4a68673b51..5cc16501b6ddba85b34cdd1ca6606cd43c28b02c 100644 (file)
@@ -393,11 +393,11 @@ CFGSET = true
 !IF "$(DEBUG)"=="yes"\r
 RC_FLAGS = /dDEBUGBUILD=1 /Fo $@ $(LIBCURL_SRC_DIR)\libcurl.rc\r
 CURL_CC       = $(CC_DEBUG) $(RTLIB_DEBUG)\r
-CURL_RC_FLAGS = /i../include /dDEBUGBUILD=1 /Fo $@ $(CURL_SRC_DIR)\curl.rc\r
+CURL_RC_FLAGS = $(CURL_RC_FLAGS) /i../include /dDEBUGBUILD=1 /Fo $@ $(CURL_SRC_DIR)\curl.rc\r
 !ELSE\r
 RC_FLAGS = /dDEBUGBUILD=0 /Fo $@ $(LIBCURL_SRC_DIR)\libcurl.rc\r
 CURL_CC       = $(CC_NODEBUG) $(RTLIB)\r
-CURL_RC_FLAGS = /i../include /dDEBUGBUILD=0 /Fo $@ $(CURL_SRC_DIR)\curl.rc\r
+CURL_RC_FLAGS = $(CURL_RC_FLAGS) /i../include /dDEBUGBUILD=0 /Fo $@ $(CURL_SRC_DIR)\curl.rc\r
 !ENDIF\r
 \r
 !IF "$(AS_DLL)" == "true"\r