You are viewing a plain text version of this content. The canonical link for it is here.
Posted to c-dev@xerces.apache.org by bu...@apache.org on 2004/03/16 09:53:09 UTC

DO NOT REPLY [Bug 27696] New: - MINGW support

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: xerces-c-dev@xml.apache.org
        ReportedBy: Daniel.Kasmeroglu@DaimlerChrysler.com


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: xerces-c-dev-unsubscribe@xml.apache.org
For additional commands, e-mail: xerces-c-dev-help@xml.apache.org