Sha256: 8844ae2c694f285291847fb2a17e8cd20640e0302667c33aca84f8a9de83a1f8
Contents?: true
Size: 768 Bytes
Versions: 13
Compression:
Stored size: 768 Bytes
Contents
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; }
Version data entries
13 entries across 13 versions & 1 rubygems