diff options
author | Vicent Martà <vicent@github.com> | 2013-02-27 11:01:16 -0800 |
---|---|---|
committer | Vicent Martà <vicent@github.com> | 2013-02-27 11:01:16 -0800 |
commit | c493f8211fd48fd1fabcb80465d63ecf095d062e (patch) | |
tree | 0f533fe41841ea12b5ca80215465f396c1c2e2a5 | |
parent | 69903777862bfdb03855ec13b0b63d65e0ed5410 (diff) | |
parent | 82ac1f7678d30cbb3ff8da8921131582da691567 (diff) | |
download | libgit2-c493f8211fd48fd1fabcb80465d63ecf095d062e.tar.gz |
Merge pull request #1371 from csware/version-constants
Win32: Use constants in version resource definitions where possible
-rw-r--r-- | src/win32/git2.rc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/win32/git2.rc b/src/win32/git2.rc index 892008b77..436913228 100644 --- a/src/win32/git2.rc +++ b/src/win32/git2.rc @@ -12,13 +12,13 @@ VS_VERSION_INFO VERSIONINFO MOVEABLE IMPURE LOADONCALL DISCARDABLE PRODUCTVERSION LIBGIT2_VER_MAJOR,LIBGIT2_VER_MINOR,LIBGIT2_VER_REVISION,0 FILEFLAGSMASK VS_FFI_FILEFLAGSMASK #ifdef _DEBUG - FILEFLAGS 1 + FILEFLAGS VS_FF_DEBUG #else FILEFLAGS 0 #endif FILEOS VOS_NT_WINDOWS32 FILETYPE VFT_DLL - FILESUBTYPE 0 // not used + FILESUBTYPE VFT2_UNKNOWN BEGIN BLOCK "StringFileInfo" BEGIN |