-
-
Notifications
You must be signed in to change notification settings - Fork 904
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
patch: backport libxslt configure.ac change for libxml2 config
- Loading branch information
1 parent
82a253f
commit 1c99019
Showing
1 changed file
with
19 additions
and
0 deletions.
There are no files selected for viewing
19 changes: 19 additions & 0 deletions
19
patches/libxslt/0002-Fix-xml2-config-check-in-configure-script.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
From: Nick Wellnhofer <wellnhofer@aevum.de> | ||
Date: Fri, 15 Nov 2019 11:53:11 +0100 | ||
Subject: [PATCH] Fix xml2-config check in configure script | ||
|
||
A 'print' option has never been supported. After a recent change to | ||
libxml2, invalid options cause xml2-config to fail. | ||
diff --git a/configure b/configure | ||
index c63adc5..6061227 100755 | ||
--- a/configure | ||
+++ b/configure | ||
@@ -14860,7 +14860,7 @@ PKG_CONFIG=$_save_PKG_CONFIG | ||
fi | ||
|
||
|
||
-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 | ||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for libxml libraries >= $LIBXML_REQUIRED_VERSION" >&5 | ||
$as_echo_n "checking for libxml libraries >= $LIBXML_REQUIRED_VERSION... " >&6; } |