diff options
author | marcus <marcus@FreeBSD.org> | 2003-10-23 20:01:15 +0000 |
---|---|---|
committer | marcus <marcus@FreeBSD.org> | 2003-10-23 20:01:15 +0000 |
commit | cd68a19de5c349b4994afb7d9570a3322f0617b5 (patch) | |
tree | 2b7adb143377a7a876ee0f96669519cde172d9d3 /textproc/gxmlviewer | |
parent | 0bce7fb2d267734563f6725d687dc31b0a60d243 (diff) | |
download | FreeBSD-ports-cd68a19de5c349b4994afb7d9570a3322f0617b5.zip FreeBSD-ports-cd68a19de5c349b4994afb7d9570a3322f0617b5.tar.gz |
Fix build with libxml2-2.6.0.
PR: 58464
Submitted by: Jens Rehsack <rehsack@liwing.de>
Reported by: bento via kris
Diffstat (limited to 'textproc/gxmlviewer')
-rw-r--r-- | textproc/gxmlviewer/files/patch-configure | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/textproc/gxmlviewer/files/patch-configure b/textproc/gxmlviewer/files/patch-configure new file mode 100644 index 0000000..83129c2 --- /dev/null +++ b/textproc/gxmlviewer/files/patch-configure @@ -0,0 +1,25 @@ +--- configure.orig Thu Oct 23 19:31:15 2003 ++++ configure Thu Oct 23 19:41:08 2003 +@@ -4106,7 +4106,7 @@ + else + echo $ac_n "checking version of bison""... $ac_c" 1>&6 + echo "configure:4109: checking version of bison" >&5 +- ac_prog_version=`$INTLBISON --version 2>&1 | sed -n 's/^.*GNU Bison .* \([0-9]*\.[0-9.]*\).*$/\1/p'` ++ ac_prog_version=`$INTLBISON --version 2>&1 | sed -n 's/^.*GNU Bison.* \([0-9]*\.[0-9.]*\).*$/\1/p'` + case $ac_prog_version in + '') ac_prog_version="v. ?.??, bad"; ac_verc_fail=yes;; + 1.2[6-9]* | 1.[3-9][0-9]* | [2-9].*) +@@ -4195,9 +4195,10 @@ + echo $ac_n "checking for libxml >= 2.3.1""... $ac_c" 1>&6 + echo "configure:4197: checking for libxml >= 2.3.1" >&5 + if xml2-config --libs > /dev/null 2>&1; then +- vers=`xml2-config --version | sed -e "s/xml-//" -e 's/cvs$//' -e 's/pre$//' | \ +- awk 'BEGIN { FS = "."; } { print $3;}'` +- if test "$vers" -ge 1; then ++ vers=`xml2-config --version | sed -e "s/xml-//" -e 's/cvs$//' -e 's/pre$//'` ++ vers_minor=`echo ${vers} | awk 'BEGIN { FS = "."; } { print $2;}'` ++ vers_rev=`echo ${vers} | awk 'BEGIN { FS = "."; } { print $3;}'` ++ if test "$vers_minor" -gt 3 -o "$vers_minor" -ge 3 -a "$vers_rev" -ge 1; then + echo "$ac_t""found ("$vers")" 1>&6 + XML_CFLAGS="`xml2-config --cflags`" + XML_LIBS="`xml2-config --libs`" |