diff options
author | Koen Kooi <koen@dominion.thruhere.net> | 2011-10-17 17:25:34 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-10-17 16:58:14 +0100 |
commit | 3c517bfe6c6d7781658f65bda4e0fdb499ca2b62 (patch) | |
tree | 51d524d3f86e30452514611b519ba83410ca74a2 /meta/recipes-connectivity | |
parent | 13cfd5a7c9989e299c1df6e942a943548f694109 (diff) | |
download | poky-3c517bfe6c6d7781658f65bda4e0fdb499ca2b62.tar.gz |
bind 9.8.1: fix build after recent update
| checking linking as -lgssapi -lkrb5 -ldes -lcrypt -lasn1 -lroken -lcom_err... no
| checking linking as -lgssapi -lkrb5 -lcrypto -lcrypt -lasn1 -lroken -lcom_err... no
| checking linking as -lgss -lkrb5... no
| configure: error: could not determine proper GSSAPI linkage
| + bbfatal 'oe_runconf failed'
| + echo 'ERROR: oe_runconf failed'
(From OE-Core rev: e25fad9b8eef59bf7ca11ae141739d0bc2235655)
Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-connectivity')
-rw-r--r-- | meta/recipes-connectivity/bind/bind_9.8.1.bb | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/meta/recipes-connectivity/bind/bind_9.8.1.bb b/meta/recipes-connectivity/bind/bind_9.8.1.bb index 330acdbef2..af473e9559 100644 --- a/meta/recipes-connectivity/bind/bind_9.8.1.bb +++ b/meta/recipes-connectivity/bind/bind_9.8.1.bb | |||
@@ -6,10 +6,10 @@ LICENSE = "ISC & BSD" | |||
6 | LIC_FILES_CHKSUM = "file://COPYRIGHT;md5=0fbe2a3ab3c68ac3fea3cad13093877c" | 6 | LIC_FILES_CHKSUM = "file://COPYRIGHT;md5=0fbe2a3ab3c68ac3fea3cad13093877c" |
7 | 7 | ||
8 | DEPENDS = "openssl" | 8 | DEPENDS = "openssl" |
9 | PR = "r0" | 9 | PR = "r1" |
10 | 10 | ||
11 | SRC_URI = "ftp://ftp.isc.org/isc/bind9/${PV}/${BPN}-${PV}.tar.gz \ | 11 | SRC_URI = "ftp://ftp.isc.org/isc/bind9/${PV}/${BPN}-${PV}.tar.gz \ |
12 | file://conf.patch \ | 12 | file://conf.patch \ |
13 | file://cross-build-fix.patch \ | 13 | file://cross-build-fix.patch \ |
14 | " | 14 | " |
15 | 15 | ||
@@ -19,6 +19,7 @@ SRC_URI[sha256sum] = "02285dc429cb2a6687a1b2446e9ee22c1df27f2577225b05be5092395e | |||
19 | # --enable-exportlib is necessary for building dhcp | 19 | # --enable-exportlib is necessary for building dhcp |
20 | EXTRA_OECONF = " --enable-ipv6=no --with-randomdev=/dev/random --disable-threads \ | 20 | EXTRA_OECONF = " --enable-ipv6=no --with-randomdev=/dev/random --disable-threads \ |
21 | --disable-devpoll --disable-epoll --with-gost=no \ | 21 | --disable-devpoll --disable-epoll --with-gost=no \ |
22 | --with-gssapi=no \ | ||
22 | --sysconfdir=${sysconfdir}/bind \ | 23 | --sysconfdir=${sysconfdir}/bind \ |
23 | --with-openssl=${STAGING_LIBDIR}/.. --with-libxml2=${STAGING_LIBDIR}/.. \ | 24 | --with-openssl=${STAGING_LIBDIR}/.. --with-libxml2=${STAGING_LIBDIR}/.. \ |
24 | --enable-exportlib --with-export-includedir=${includedir} --with-export-libdir=${libdir} \ | 25 | --enable-exportlib --with-export-includedir=${includedir} --with-export-libdir=${libdir} \ |