diff options
author | Richard Purdie <rpurdie@linux.intel.com> | 2010-09-01 19:09:11 +0100 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-09-01 19:09:57 +0100 |
commit | d62ee7eaf2ba025c3f64b2d4e10dc7cec4637612 (patch) | |
tree | f36fe3008f36ff75cbdd31b630f8f13f1f205ebb /meta/recipes-connectivity/libnss-mdns | |
parent | caab7fc509bf27706ff3248689f6afd04225cfda (diff) | |
download | poky-d62ee7eaf2ba025c3f64b2d4e10dc7cec4637612.tar.gz |
packages: Separate out most of the remaining packages into recipes
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'meta/recipes-connectivity/libnss-mdns')
-rw-r--r-- | meta/recipes-connectivity/libnss-mdns/files/alignment-fix.patch | 11 | ||||
-rw-r--r-- | meta/recipes-connectivity/libnss-mdns/libnss-mdns_0.10.bb | 36 |
2 files changed, 47 insertions, 0 deletions
diff --git a/meta/recipes-connectivity/libnss-mdns/files/alignment-fix.patch b/meta/recipes-connectivity/libnss-mdns/files/alignment-fix.patch new file mode 100644 index 0000000000..11d4655e1f --- /dev/null +++ b/meta/recipes-connectivity/libnss-mdns/files/alignment-fix.patch | |||
@@ -0,0 +1,11 @@ | |||
1 | --- nss-mdns-0.6/src/nss.c.orig 2005-09-25 17:27:51 +0200 | ||
2 | +++ nss-mdns-0.6/src/nss.c 2005-09-25 17:28:55 +0200 | ||
3 | @@ -456,6 +456,8 @@ | ||
4 | result->h_addrtype = af; | ||
5 | result->h_length = address_length; | ||
6 | |||
7 | + idx+=(sizeof(char*)-idx%sizeof(char*)); /* Align on 32 bit boundary */ | ||
8 | + | ||
9 | /* Check if there's enough space for the addresses */ | ||
10 | if (buflen < idx+u.data_len+sizeof(char*)*(u.count+1)) { | ||
11 | *errnop = ERANGE; | ||
diff --git a/meta/recipes-connectivity/libnss-mdns/libnss-mdns_0.10.bb b/meta/recipes-connectivity/libnss-mdns/libnss-mdns_0.10.bb new file mode 100644 index 0000000000..69eaa33d60 --- /dev/null +++ b/meta/recipes-connectivity/libnss-mdns/libnss-mdns_0.10.bb | |||
@@ -0,0 +1,36 @@ | |||
1 | DESCRIPTION = "NSS module for Multicast DNS name resolution" | ||
2 | HOMEPAGE = "http://0pointer.de/lennart/projects/nss-mdns/" | ||
3 | SECTION = "libs" | ||
4 | PRIORITY = "optional" | ||
5 | |||
6 | LICENSE = "LGPLv2.1+" | ||
7 | LIC_FILES_CHKSUM = "file://LICENSE;md5=2d5025d4aa3495befef8f17206a5b0a1" | ||
8 | |||
9 | DEPENDS = "avahi" | ||
10 | RDEPENDS = "avahi-daemon" | ||
11 | PR = "r0" | ||
12 | |||
13 | SRC_URI = "http://0pointer.de/lennart/projects/nss-mdns/nss-mdns-${PV}.tar.gz" | ||
14 | S = "${WORKDIR}/nss-mdns-${PV}" | ||
15 | |||
16 | inherit autotools | ||
17 | |||
18 | # suppress warning, but don't bother with autonamer | ||
19 | LEAD_SONAME = "libnss_mdns.so" | ||
20 | DEBIANNAME_${PN} = "libnss-mdns" | ||
21 | |||
22 | EXTRA_OECONF = "--libdir=/lib --disable-lynx --enable-avahi" | ||
23 | |||
24 | pkg_postinst () { | ||
25 | cat /etc/nsswitch.conf | grep "hosts:\s*files dns$" > /dev/null && { | ||
26 | cat /etc/nsswitch.conf | sed 's/hosts:\s*files dns/& mdns4/' > /tmp/nsswitch.conf | ||
27 | mv /tmp/nsswitch.conf /etc/nsswitch.conf | ||
28 | } | ||
29 | } | ||
30 | |||
31 | pkg_prerm () { | ||
32 | cat /etc/nsswitch.conf | grep "hosts:\s*files dns mdns$" > /dev/null && { | ||
33 | cat /etc/nsswitch.conf | sed 's/\(hosts:\s*files dns\) mdns4*/\1/' > /tmp/nsswitch.conf | ||
34 | mv /tmp/nsswitch.conf /etc/nsswitch.conf | ||
35 | } | ||
36 | } | ||