[Win32] Remove condition `!defined(_LIB)` for git_revision.h inclusion
authorGarrett Brown <garbearucla@gmail.com>
Mon, 8 Jul 2013 18:56:40 +0000 (11:56 -0700)
committerGarrett Brown <garbearucla@gmail.com>
Tue, 9 Jul 2013 03:00:30 +0000 (20:00 -0700)
XBMC seems to compile and display a git revision with or without this condition.

This reverts the change to PlatformInclude.h (now GitRevision.cpp) in b4952cf

xbmc/GitRevision.cpp

index 7042f3b..c6cc81f 100644 (file)
@@ -20,7 +20,7 @@
 
 #include "GitRevision.h"
 
-#if defined(TARGET_DARWIN) || (defined(TARGET_WINDOWS) && !defined(_DEBUG) && !defined(_LIB))
+#if defined(TARGET_DARWIN) || (defined(TARGET_WINDOWS) && !defined(_DEBUG))
 #include "../git_revision.h" // generated file
 #endif