diff options
author | Roumen Petrov <bugtrack@roumenpetrov.info> | 2012-08-11 01:07:02 +0300 |
---|---|---|
committer | Daniel Veillard <veillard@redhat.com> | 2012-09-05 21:46:39 +0800 |
commit | 7816b657e99f144021ad1eceaa660f3a3b276cd5 (patch) | |
tree | f9e575eba3c5c7b8bfe172cadcb50b2a56fc5132 | |
parent | 4ad8f1215e624188416d0f913cad972b9807614e (diff) | |
download | libxslt-7816b657e99f144021ad1eceaa660f3a3b276cd5.tar.gz libxslt-7816b657e99f144021ad1eceaa660f3a3b276cd5.tar.bz2 libxslt-7816b657e99f144021ad1eceaa660f3a3b276cd5.zip |
fix regresson in Various "make distcheck" and other fixes
The patch 'Various "make distcheck" and other fixes' removes a line
in configure EXTRA_LIBS=... LIBXML_LIBS...
-EXTRA_LIBS="$EXTRA_LIBS $LIBXML_LIBS $M_LIBS"
This is not save as libxslt/Makefile.am define only
|EXTRA_LIBS| as dependency:
|libxslt_la_LIBADD= $(EXTRA_LIBS)|
If platform does not support unresolved dependencies library cannot be linked.
Even with support regression tests fail in python test due unresolved "xml"-symbols .
-rw-r--r-- | libxslt/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libxslt/Makefile.am b/libxslt/Makefile.am index 8930de39..d4619d22 100644 --- a/libxslt/Makefile.am +++ b/libxslt/Makefile.am @@ -60,7 +60,7 @@ else LIBXSLT_VERSION_SCRIPT = endif -libxslt_la_LIBADD = $(EXTRA_LIBS) +libxslt_la_LIBADD = $(LIBXML_LIBS) $(EXTRA_LIBS) libxslt_la_LDFLAGS = \ $(WIN32_EXTRA_LDFLAGS) \ $(LIBXSLT_VERSION_SCRIPT) \ |