diff options
Diffstat (limited to 'meta/recipes-connectivity')
-rw-r--r-- | meta/recipes-connectivity/bind/bind/bind-add-crosscripts-search-path-for-xml2-config.patch | 35 | ||||
-rw-r--r-- | meta/recipes-connectivity/bind/bind_9.9.5.bb | 9 |
2 files changed, 42 insertions, 2 deletions
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 new file mode 100644 index 0000000000..4f1a3f8e89 --- /dev/null +++ b/meta/recipes-connectivity/bind/bind/bind-add-crosscripts-search-path-for-xml2-config.patch | |||
@@ -0,0 +1,35 @@ | |||
1 | From 8fa549fe5390875d56f75e20d364394cd5ccf388 Mon Sep 17 00:00:00 2001 | ||
2 | From: Joe MacDonald <joe_macdonald@mentor.com> | ||
3 | Date: Mon, 3 Nov 2014 21:52:02 -0500 | ||
4 | Subject: [PATCH] bind: add crosscripts search path for xml2-config | ||
5 | |||
6 | The configure script was testing xml2-config from bin but in openembedded | ||
7 | bin folder is not copied to sysroot so the test was failing. Added another | ||
8 | condition to test libxml-2.0.pc which is present in lib folder. Used pkg-config | ||
9 | to get libs and cflags information. | ||
10 | |||
11 | Upstream-Status: Inappropriate [ openembedded specific ] | ||
12 | |||
13 | Signed-off-by: Joe MacDonald <joe_macdonald@mentor.com> | ||
14 | Signed-off-by: Noor Ahsan <noor_ahsan@mentor.com> | ||
15 | --- | ||
16 | configure.in | 3 +++ | ||
17 | 1 file changed, 3 insertions(+) | ||
18 | |||
19 | diff --git a/configure.in b/configure.in | ||
20 | index 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/lib/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 | -- | ||
34 | 1.9.1 | ||
35 | |||
diff --git a/meta/recipes-connectivity/bind/bind_9.9.5.bb b/meta/recipes-connectivity/bind/bind_9.9.5.bb index 8e04f8a040..eacb23ffb8 100644 --- a/meta/recipes-connectivity/bind/bind_9.9.5.bb +++ b/meta/recipes-connectivity/bind/bind_9.9.5.bb | |||
@@ -18,6 +18,7 @@ SRC_URI = "ftp://ftp.isc.org/isc/bind9/${PV}/${BPN}-${PV}.tar.gz \ | |||
18 | file://bind9 \ | 18 | file://bind9 \ |
19 | file://init.d-add-support-for-read-only-rootfs.patch \ | 19 | file://init.d-add-support-for-read-only-rootfs.patch \ |
20 | file://bind9_9_5-CVE-2014-8500.patch \ | 20 | file://bind9_9_5-CVE-2014-8500.patch \ |
21 | file://bind-add-crosscripts-search-path-for-xml2-config.patch \ | ||
21 | " | 22 | " |
22 | 23 | ||
23 | SRC_URI[md5sum] = "e676c65cad5234617ee22f48e328c24e" | 24 | SRC_URI[md5sum] = "e676c65cad5234617ee22f48e328c24e" |
@@ -29,10 +30,14 @@ EXTRA_OECONF = " ${ENABLE_IPV6} --with-randomdev=/dev/random --disable-threads \ | |||
29 | --disable-devpoll --disable-epoll --with-gost=no \ | 30 | --disable-devpoll --disable-epoll --with-gost=no \ |
30 | --with-gssapi=no --with-ecdsa=yes \ | 31 | --with-gssapi=no --with-ecdsa=yes \ |
31 | --sysconfdir=${sysconfdir}/bind \ | 32 | --sysconfdir=${sysconfdir}/bind \ |
32 | --with-openssl=${STAGING_LIBDIR}/.. --with-libxml2=${STAGING_LIBDIR}/.. \ | 33 | --with-openssl=${STAGING_LIBDIR}/.. \ |
33 | --enable-exportlib --with-export-includedir=${includedir} --with-export-libdir=${libdir} \ | 34 | --enable-exportlib --with-export-includedir=${includedir} --with-export-libdir=${libdir} \ |
34 | " | 35 | " |
35 | inherit autotools-brokensep update-rc.d systemd useradd | 36 | inherit autotools-brokensep update-rc.d systemd useradd pkgconfig |
37 | |||
38 | PACKAGECONFIG ?= "libxml2" | ||
39 | |||
40 | PACKAGECONFIG[libxml2] = "--with-libxml2=${STAGING_LIBDIR}/..,--with-libxml2=no,libxml2" | ||
36 | 41 | ||
37 | USERADD_PACKAGES = "${PN}" | 42 | USERADD_PACKAGES = "${PN}" |
38 | USERADD_PARAM_${PN} = "--system --home /var/cache/bind --no-create-home \ | 43 | USERADD_PARAM_${PN} = "--system --home /var/cache/bind --no-create-home \ |