Hi Mike, mps <[EMAIL PROTECTED]> writes:
> When I use the Visual C++ 8 xerces-all Solution debug configuration, building > the xerces-lib configuation gives me the following error, repeated many > times: > > c:\xerces-c-3.0.0\src\xercesc/util/Xerces_autoconf_config.hpp(83) : fatal > error C1083: Cannot open include file: 'inttypes.h': No such file or > directory > > Interestingly, the "Static Debug" configuration builds just fine. I think you had autoconf-generated Xerces_autoconf_config.hpp laying around. Maybe you built a Cygwin version of Xerces-C++ before that? Because this file if newer than Xerces_autoconf_config.msvc.hpp, VC++ didn't overwrite it. Before you tried to build Static Debug, you probably cleaned up the solution which also deleted the bad Xerces_autoconf_config.hpp file and on the next try VC++ copied the correct one over. Can you try to build Debug DLL using a freshly unpacked source code tree from xerces-c-3.0.0.zip? Boris -- Boris Kolpackov, Code Synthesis Tools http://codesynthesis.com/~boris/blog Open source XML data binding for C++: http://codesynthesis.com/products/xsd Mobile/embedded validating XML parsing: http://codesynthesis.com/products/xsde --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
