Skip to content

Commit 1c99019

Browse files
committed
patch: backport libxslt configure.ac change for libxml2 config
1 parent 82a253f commit 1c99019

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
From: Nick Wellnhofer <[email protected]>
2+
Date: Fri, 15 Nov 2019 11:53:11 +0100
3+
Subject: [PATCH] Fix xml2-config check in configure script
4+
5+
A 'print' option has never been supported. After a recent change to
6+
libxml2, invalid options cause xml2-config to fail.
7+
diff --git a/configure b/configure
8+
index c63adc5..6061227 100755
9+
--- a/configure
10+
+++ b/configure
11+
@@ -14860,7 +14860,7 @@ PKG_CONFIG=$_save_PKG_CONFIG
12+
fi
13+
14+
15+
-if test "x$LIBXML_LIBS" = "x" && ${XML_CONFIG} --libs print > /dev/null 2>&1
16+
+if test "x$LIBXML_LIBS" = "x" && ${XML_CONFIG} --libs > /dev/null 2>&1
17+
then
18+
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for libxml libraries >= $LIBXML_REQUIRED_VERSION" >&5
19+
$as_echo_n "checking for libxml libraries >= $LIBXML_REQUIRED_VERSION... " >&6; }

0 commit comments

Comments
 (0)