Author: jberry
Date: Fri May 27 09:49:30 2005
New Revision: 178797

URL: http://svn.apache.org/viewcvs?rev=178797&view=rev
Log:
Protect uses of config.h

Modified:
    
xerces/c/branches/jberry/3.0-unstable/src/xercesc/util/Transcoders/Iconv/IconvTransService.cpp
    xerces/c/branches/jberry/3.0-unstable/src/xercesc/util/XMLString.cpp

Modified: 
xerces/c/branches/jberry/3.0-unstable/src/xercesc/util/Transcoders/Iconv/IconvTransService.cpp
URL: 
http://svn.apache.org/viewcvs/xerces/c/branches/jberry/3.0-unstable/src/xercesc/util/Transcoders/Iconv/IconvTransService.cpp?rev=178797&r1=178796&r2=178797&view=diff
==============================================================================
--- 
xerces/c/branches/jberry/3.0-unstable/src/xercesc/util/Transcoders/Iconv/IconvTransService.cpp
 (original)
+++ 
xerces/c/branches/jberry/3.0-unstable/src/xercesc/util/Transcoders/Iconv/IconvTransService.cpp
 Fri May 27 09:49:30 2005
@@ -23,7 +23,9 @@
 //  Includes
 // ---------------------------------------------------------------------------
 
-#include <config.h>
+#if HAVE_CONFIG_H
+#      include <config.h>
+#endif
 
 #if HAVE_WCHAR_H
 #      include <wchar.h>

Modified: xerces/c/branches/jberry/3.0-unstable/src/xercesc/util/XMLString.cpp
URL: 
http://svn.apache.org/viewcvs/xerces/c/branches/jberry/3.0-unstable/src/xercesc/util/XMLString.cpp?rev=178797&r1=178796&r2=178797&view=diff
==============================================================================
--- xerces/c/branches/jberry/3.0-unstable/src/xercesc/util/XMLString.cpp 
(original)
+++ xerces/c/branches/jberry/3.0-unstable/src/xercesc/util/XMLString.cpp Fri 
May 27 09:49:30 2005
@@ -22,7 +22,9 @@
 // ---------------------------------------------------------------------------
 //  Includes
 // ---------------------------------------------------------------------------
-#include <config.h>
+#if HAVE_CONFIG_H
+#      include <config.h>
+#endif
 
 #if !HAVE_STRICMP
 #      include <lib/stricmp.h>



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to