[Mobies-commit] [commit] r4074 - GReAT/trunk/include

ksmyth at redhat1.isis.vanderbilt.edu ksmyth at redhat1.isis.vanderbilt.edu
Tue Jul 31 18:07:39 CDT 2012


Author: ksmyth
Date: Tue Jul 31 18:07:38 2012
New Revision: 4074

Log:
Fix check for _MSC_VER: only VC9 is compatible with the libs we compiled

Modified:
   GReAT/trunk/include/GReATUtils.h
   GReAT/trunk/include/RTTGenerator.h

Modified: GReAT/trunk/include/GReATUtils.h
==============================================================================
--- GReAT/trunk/include/GReATUtils.h	Tue Jul 24 17:01:20 2012	(r4073)
+++ GReAT/trunk/include/GReATUtils.h	Tue Jul 31 18:07:38 2012	(r4074)
@@ -19,7 +19,7 @@
 #endif
 #if (_MSC_VER == 1600) /* VS2010 */
 #pragma comment(lib, "GReATUtilsVC10" GREAT_UTILS_DEBUG_D ".lib")
-#else
+#elif (_MSC_VER == 1500) /* VS2008 */
 #pragma comment(lib, "GReATUtils" GREAT_UTILS_DEBUG_D ".lib")
 #endif /* _MSC_VER == 1600 */
 

Modified: GReAT/trunk/include/RTTGenerator.h
==============================================================================
--- GReAT/trunk/include/RTTGenerator.h	Tue Jul 24 17:01:20 2012	(r4073)
+++ GReAT/trunk/include/RTTGenerator.h	Tue Jul 31 18:07:38 2012	(r4074)
@@ -23,7 +23,7 @@
 #endif
 #if (_MSC_VER == 1600) /* VS2010 */
 #pragma comment(lib, "RTTGeneratorVC10" GREAT_RTT_DEBUG_D ".lib")
-#else
+#elif (_MSC_VER == 1500) /* VS2008 */
 #pragma comment(lib, "RTTGenerator" GREAT_RTT_DEBUG_D ".lib")
 #endif /* _MSC_VER == 1600 */
 


More information about the Mobies-commit mailing list