Hey All,
To those who encountered the problem in 1.4.1 that SWIG was required,
here is the fix. I had a typo in Makefile.PL and the fix is in
CVS. I'll release a new version that fixes that but if you don't want
to dowload, you can just edit the Makefile.PL:
$OBJS .= join(' ', map {s/\.swig\.hpp/\.o/;$_} @handler_headers);
^^^^^^^^
should be:
$OBJS .= join(' ', map {s/\.swig\.hpp/\.o/;$_} @handler_objs);
^^^^^
The consequence was instead of Xerces.C and Xerces.pm depending on a
bunch of *header* files (*.hpp), they depended on the *object* files
(*.o). This meant that by merely building the system, you updated the
object files, which forced recreation of Xerces.pm and Xerces.C, which
required SWIG.
My appologies. I had found and fixed this bug, but never committed the
changes...
jas.
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]