From: Yang Tse Date: Fri, 13 Apr 2007 08:22:56 +0000 (+0000) Subject: Take in account that it can be built with compiler debug info and X-Git-Tag: curl-7_16_3~192 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=b3401ddbadaab60f76fb46823ed7bcb9494a5fc3;p=thirdparty%2Fcurl.git Take in account that it can be built with compiler debug info and without the curl memory debugging leak detection code enabled. --- diff --git a/lib/libcurl.rc b/lib/libcurl.rc index c3945e3717..eed602e76e 100644 --- a/lib/libcurl.rc +++ b/lib/libcurl.rc @@ -31,7 +31,7 @@ VS_VERSION_INFO VERSIONINFO FILEVERSION RC_VERSION PRODUCTVERSION RC_VERSION FILEFLAGSMASK 0x3fL -#if CURLDEBUG +#if defined(CURLDEBUG) || defined(_DEBUG) FILEFLAGS 1 #else FILEFLAGS 0 diff --git a/src/curl.rc b/src/curl.rc index 0bb35a4902..56d972991f 100644 --- a/src/curl.rc +++ b/src/curl.rc @@ -31,7 +31,7 @@ VS_VERSION_INFO VERSIONINFO FILEVERSION RC_VERSION PRODUCTVERSION RC_VERSION FILEFLAGSMASK 0x3fL -#if CURLDEBUG +#if defined(CURLDEBUG) || defined(_DEBUG) FILEFLAGS 1 #else FILEFLAGS 0