Browse Source

Merge pull request #16293 from Linaro1985/master_fix_libxslt

libxslt: fix compilation because of wrong libxml2 check in configure script
lilik-openwrt-22.03
Rosen Penev 3 years ago
committed by GitHub
parent
commit
a23de0330b
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 11 additions and 0 deletions
  1. +11
    -0
      libs/libxslt/patches/010-fix-xml2-config-check.patch

+ 11
- 0
libs/libxslt/patches/010-fix-xml2-config-check.patch View File

@ -0,0 +1,11 @@
--- a/configure.ac
+++ b/configure.ac
@@ -546,7 +546,7 @@ dnl make sure xml2-config is executable,
dnl test version and init our variables
dnl
-if test "x$LIBXML_LIBS" = "x" && ${XML_CONFIG} --libs print > /dev/null 2>&1
+if test "x$LIBXML_LIBS" = "x" && ${XML_CONFIG} --libs > /dev/null 2>&1
then
AC_MSG_CHECKING(for libxml libraries >= $LIBXML_REQUIRED_VERSION)
XMLVERS=`$XML_CONFIG --version`

Loading…
Cancel
Save