Hi everyone!
After downloading the newest Xerces Source from xerces.apache.org,
extracting it and following the instructions at
http://xerces.apache.org/xerces-c/build-winunix.html#CygWin
I managed to do the steps:
$ XERCESCROOT = /home/lars/xerces-c-src_2_8_0/src/xercesc/
$ export XERCESCROOT
$ ./runConfigure -p cygwin -c gcc -x g++
successfully in my cygwin environment (no error messages from
runConfigure), but then failed on
$ make
at this point:
>>>
make -s -C parsers
(CP) /home/lars/xerces-c-src_2_8_0/src/xercesc//include/xercesc/parsers
(C++) AbstractDOMParser.o
AbstractDOMParser.cpp:46:44: xercesc/dom/impl/DOMAttrImpl.hpp: No such
file or directory
>>>
A lot of "No such file or directory" messages followed, causing the make
to fail. As you can see, the include path is not complete, so I suppose
it looks for the directory xercesc in /usr/include/ - now HOW do I
configure and make xercesc in a way that all the libraries and headers
are put in the correct locations (namely /usr/include/xercesc/)?
Or do I simply copy them there?
Any help appreciated!
Lars