summaryrefslogtreecommitdiffstats
path: root/meta/recipes-connectivity/bind/bind
diff options
context:
space:
mode:
authorRoss Burton <ross.burton@intel.com>2015-05-07 15:30:53 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-05-09 22:26:43 +0100
commit4b042c244766f74453c5d544be55c3ecc73a3ab0 (patch)
tree3e3c761526d4c386896ada1a7162a6eba9b8339d /meta/recipes-connectivity/bind/bind
parent05956671a250e7664593e136d1d60cc2df36e245 (diff)
downloadpoky-4b042c244766f74453c5d544be55c3ecc73a3ab0.tar.gz
bind: update libxml2 detection patch
Refresh the libxml2 detection patch to directly call pkg-config instead of attempting to use xml2-config, which will always return an error in OE. (From OE-Core rev: 76c53feaec1b8c1045aaf2a78a9225a732a37f1f) Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-connectivity/bind/bind')
-rw-r--r--meta/recipes-connectivity/bind/bind/0001-build-use-pkg-config-to-find-libxml2.patch42
-rw-r--r--meta/recipes-connectivity/bind/bind/bind-add-crosscripts-search-path-for-xml2-config.patch35
2 files changed, 42 insertions, 35 deletions
diff --git a/meta/recipes-connectivity/bind/bind/0001-build-use-pkg-config-to-find-libxml2.patch b/meta/recipes-connectivity/bind/bind/0001-build-use-pkg-config-to-find-libxml2.patch
new file mode 100644
index 0000000000..cb5251d159
--- /dev/null
+++ b/meta/recipes-connectivity/bind/bind/0001-build-use-pkg-config-to-find-libxml2.patch
@@ -0,0 +1,42 @@
1xml2-config is disabled, so change the configure script to use pkgconfig to find
2libxml2.
3
4Upstream-Status: Inappropriate
5Signed-off-by: Ross Burton <ross.burton@intel.com>
6
7---
8 configure.in | 18 +++---------------
9 1 file changed, 3 insertions(+), 15 deletions(-)
10
11diff --git a/configure.in b/configure.in
12index d566e1c..c9ef3a6 100644
13--- a/configure.in
14+++ b/configure.in
15@@ -2102,21 +2102,9 @@ case "$use_libxml2" in
16 DST_LIBXML2_INC=""
17 ;;
18 auto|yes)
19- case X`(xml2-config --version) 2>/dev/null` in
20- X2.[[6789]].*)
21- libxml2_libs=`xml2-config --libs`
22- libxml2_cflags=`xml2-config --cflags`
23- ;;
24- *)
25- libxml2_libs=
26- libxml2_cflags=
27- ;;
28- esac
29- ;;
30- *)
31- if test -f "$use_libxml2/bin/xml2-config" ; then
32- libxml2_libs=`$use_libxml2/bin/xml2-config --libs`
33- libxml2_cflags=`$use_libxml2/bin/xml2-config --cflags`
34+ if pkg-config --exists libxml-2.0 ; then
35+ libxml2_libs=`pkg-config libxml-2.0 --libs`
36+ libxml2_cflags=`pkg-config libxml-2.0 --cflags`
37 fi
38 ;;
39 esac
40--
412.1.4
42
diff --git a/meta/recipes-connectivity/bind/bind/bind-add-crosscripts-search-path-for-xml2-config.patch b/meta/recipes-connectivity/bind/bind/bind-add-crosscripts-search-path-for-xml2-config.patch
deleted file mode 100644
index d24276cf9e..0000000000
--- a/meta/recipes-connectivity/bind/bind/bind-add-crosscripts-search-path-for-xml2-config.patch
+++ /dev/null
@@ -1,35 +0,0 @@
1From 8fa549fe5390875d56f75e20d364394cd5ccf388 Mon Sep 17 00:00:00 2001
2From: Joe MacDonald <joe_macdonald@mentor.com>
3Date: Mon, 3 Nov 2014 21:52:02 -0500
4Subject: [PATCH] bind: add crosscripts search path for xml2-config
5
6The configure script was testing xml2-config from bin but in openembedded
7bin folder is not copied to sysroot so the test was failing. Added another
8condition to test libxml-2.0.pc which is present in lib folder. Used pkg-config
9to get libs and cflags information.
10
11Upstream-Status: Inappropriate [ openembedded specific ]
12
13Signed-off-by: Joe MacDonald <joe_macdonald@mentor.com>
14Signed-off-by: Noor Ahsan <noor_ahsan@mentor.com>
15---
16 configure.in | 3 +++
17 1 file changed, 3 insertions(+)
18
19diff --git a/configure.in b/configure.in
20index 3d04f4c..6032f67 100644
21--- a/configure.in
22+++ b/configure.in
23@@ -1433,6 +1433,9 @@ case "$use_libxml2" in
24 if test -f "$use_libxml2/bin/xml2-config" ; then
25 libxml2_libs=`$use_libxml2/bin/xml2-config --libs`
26 libxml2_cflags=`$use_libxml2/bin/xml2-config --cflags`
27+ elif test -f "$use_libxml2/$base_libdir/pkgconfig/libxml-2.0.pc" ; then
28+ libxml2_libs=`pkg-config libxml-2.0 --libs`
29+ libxml2_cflags=`pkg-config libxml-2.0 --cflags`
30 fi
31 ;;
32 esac
33--
341.9.1
35