DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://issues.apache.org/bugzilla/show_bug.cgi?id=27696>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.
http://issues.apache.org/bugzilla/show_bug.cgi?id=27696 MINGW support Summary: MINGW support Product: Xerces-C++ Version: 2.5.0 Platform: PC OS/Version: All Status: NEW Severity: Enhancement Priority: Other Component: Utilities AssignedTo: [EMAIL PROTECTED] ReportedBy: [EMAIL PROTECTED] MingW support seems to be missing in the file <xercesc/util/compilers/GCCDefs.hpp> . While changing the section ----------------------------------- #ifndef __CYGWIN__ int stricmp(const char* const str1, const char* const str2); int strnicmp(const char* const str1, const char* const str2, const unsigned int count); #endif // ! __CYGWIN__ ----------------------------------- into ----------------------------------- #ifndef __CYGWIN__ #ifndef __MINGW32__ int stricmp(const char* const str1, const char* const str2); int strnicmp(const char* const str1, const char* const str2, const unsigned int count); #endif // ! __MINGW32__ #endif // ! __CYGWIN__ ----------------------------------- Xerces C becomes compilable using the MinGW compiler, too. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
