diff options
author | Yang Tse <yangsita@gmail.com> | 2007-04-13 08:22:56 +0000 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2007-04-13 08:22:56 +0000 |
commit | b3401ddbadaab60f76fb46823ed7bcb9494a5fc3 (patch) | |
tree | 422a8bb767519320ccfa341b1dfc2d39a0c3adca | |
parent | 038fe54e2133119e7836d79ea4aaa5ca705159fc (diff) |
Take in account that it can be built with compiler debug info and
without the curl memory debugging leak detection code enabled.
-rw-r--r-- | lib/libcurl.rc | 2 | ||||
-rw-r--r-- | src/curl.rc | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/libcurl.rc b/lib/libcurl.rc index c3945e371..eed602e76 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 0bb35a490..56d972991 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 |