|
From: <pat...@us...> - 2007-08-01 15:22:09
|
Revision: 623
http://xml-cppdom.svn.sourceforge.net/xml-cppdom/?rev=623&view=rev
Author: patrickh
Date: 2007-08-01 08:22:12 -0700 (Wed, 01 Aug 2007)
Log Message:
-----------
There is no longer an "_h" variant on Windows.
Modified Paths:
--------------
trunk/cppdom/config.h
Modified: trunk/cppdom/config.h
===================================================================
--- trunk/cppdom/config.h 2007-08-01 15:06:44 UTC (rev 622)
+++ trunk/cppdom/config.h 2007-08-01 15:22:12 UTC (rev 623)
@@ -88,12 +88,8 @@
# define CPPDOM_DEBUG
# endif
-# if defined(CPPDOM_DEBUG)
-# if defined(_DEBUG)
-# define CPPDOM_LIB_RT_OPT "_d"
-# else
-# define CPPDOM_LIB_RT_OPT "_h"
-# endif
+# if defined(CPPDOM_DEBUG) && defined(_DEBUG)
+# define CPPDOM_LIB_RT_OPT "_d"
# else
# define CPPDOM_LIB_RT_OPT ""
# endif
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|