summaryrefslogtreecommitdiffstats
path: root/meta/recipes-connectivity/bind/bind/0001-build-use-pkg-config-to-find-libxml2.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-connectivity/bind/bind/0001-build-use-pkg-config-to-find-libxml2.patch')
-rw-r--r--meta/recipes-connectivity/bind/bind/0001-build-use-pkg-config-to-find-libxml2.patch20
1 files changed, 14 insertions, 6 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
index cb5251d159..805cbb3315 100644
--- 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
@@ -4,15 +4,18 @@ libxml2.
4Upstream-Status: Inappropriate 4Upstream-Status: Inappropriate
5Signed-off-by: Ross Burton <ross.burton@intel.com> 5Signed-off-by: Ross Burton <ross.burton@intel.com>
6 6
7Update context for version 9.10.3-P2.
8
9Signed-off-by: Kai Kang <kai.kang@windriver.com>
7--- 10---
8 configure.in | 18 +++--------------- 11 configure.in | 23 +++--------------------
9 1 file changed, 3 insertions(+), 15 deletions(-) 12 1 file changed, 3 insertions(+), 20 deletions(-)
10 13
11diff --git a/configure.in b/configure.in 14diff --git a/configure.in b/configure.in
12index d566e1c..c9ef3a6 100644 15index 0db826d..75819eb 100644
13--- a/configure.in 16--- a/configure.in
14+++ b/configure.in 17+++ b/configure.in
15@@ -2102,21 +2102,9 @@ case "$use_libxml2" in 18@@ -2107,26 +2107,9 @@ case "$use_libxml2" in
16 DST_LIBXML2_INC="" 19 DST_LIBXML2_INC=""
17 ;; 20 ;;
18 auto|yes) 21 auto|yes)
@@ -22,8 +25,13 @@ index d566e1c..c9ef3a6 100644
22- libxml2_cflags=`xml2-config --cflags` 25- libxml2_cflags=`xml2-config --cflags`
23- ;; 26- ;;
24- *) 27- *)
25- libxml2_libs= 28- if test "$use_libxml2" = "yes" ; then
26- libxml2_cflags= 29- AC_MSG_RESULT(no)
30- AC_MSG_ERROR(required libxml2 version not available)
31- else
32- libxml2_libs=
33- libxml2_cflags=
34- fi
27- ;; 35- ;;
28- esac 36- esac
29- ;; 37- ;;