Hmmm... I'm not sure we want to start making magic order changes or
anything like that. We really should figure out what's going on and know
what we are changing before we commit to them.
----------------------------------------
Dean Roddey
Software Weenie
IBM Center for Java Technology - Silicon Valley
[EMAIL PROTECTED]
"Martin Slater" <[EMAIL PROTECTED]> on 03/10/2000 01:23:06 PM
Please respond to [EMAIL PROTECTED]
To: <[EMAIL PROTECTED]>
cc:
Subject: Xerces 1.1.0 and Borland Builder 5
There's a problem with compiling under builder 5. This is cured by
changing AutoSense.hpp
where it is checking for the compiler from
#if defined(_MSC_VER)
#define XML_VISUALCPP
#elif defined(__BORLANDC__)
#define XML_BORLAND
to
#if defined(__BORLANDC__)
#define XML_BORLAND
#elif defined(_MSC_VER)
#define XML_VISUALCPP
Something somewhere is setting _MSC_VER, but I haven't time to track down
what and this seems to work fine.
Martin Slater