diff options
author | Michael Stahl <mstahl@redhat.com> | 2016-10-10 16:49:14 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2016-10-10 16:52:43 +0200 |
commit | 69dcc7adae5c531b4da8c099bd1e2f99b851ebcd (patch) | |
tree | 0cfa8da317ebceb036337e8d9025b35e7b03862b | |
parent | 6fd363af3432d054eb92a2bac4893f5baf1d50ef (diff) |
configure: avoid linking against libgcrypt for libexslt
There are at least 2 different versions libgcrypt.so.20 and
libgcrypt.so.11 in use, and it's a private dependency of libexslt
anyway, so filter this out of LIBEXSLTLIBS.
Change-Id: Iafc33ef5ead2a86bedb4d5e485f6a16eb0544686
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index d248c93602f6..02b00df5b0ee 100644 --- a/configure.ac +++ b/configure.ac @@ -8038,7 +8038,7 @@ if test "$with_system_libxml" = "yes"; then PKG_CHECK_MODULES(LIBEXSLT, libexslt) LIBEXSLT_CFLAGS=$(printf '%s' "$LIBEXSLT_CFLAGS" | sed -e "s/-I/${ISYSTEM?}/g") FilterLibs "${LIBEXSLT_LIBS}" - LIBEXSLT_LIBS="${filteredlibs}" + LIBEXSLT_LIBS=$(printf '%s' "${filteredlibs}" | sed -e "s/-lgpg-error//" -e "s/-lgcrypt//") fi dnl Check for xsltproc |