Kaydet (Commit) 69dcc7ad authored tarafından Michael Stahl's avatar Michael Stahl

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
üst 6fd363af
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment