Fixed
Details
Details
Assignee
Scott Cantor
Scott CantorReporter
Former user
Former user(Deactivated)Components
Fix versions
Affects versions
Created February 4, 2011 at 11:43 AM
Updated June 24, 2021 at 3:37 PM
Resolved February 17, 2011 at 11:48 PM
The # XML-Security settings in the autoconfig script is set AFTER
AC_LINK_IFELSE(
[AC_LANG_PROGRAM([[#include <xmltooling/XMLToolingConfig.h>
#include <xmltooling/version.h>]],
[[#if _XMLTOOLING_VERSION >= 10400
xmltooling::XMLToolingConfig::getConfig();
#else
#error Need XMLTooling version 1.4 or higher
#endif]])],
,[AC_MSG_ERROR([unable to link with XMLTooling, or version was too old])])
which does not allow to set a custom xml-security-c library path.
In case of the presence of an older xml-security-c version - which might be installed by the OS - the test will fail, because some symbols wan't found.