aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/avahi
AgeCommit message (Collapse)Author
2011-03-02avahi: Drop older versionsTom Rini
We drop a number of un-pinned older versions and clean up slightly the files directory. Signed-off-by: Tom Rini <tom_rini@mentor.com>
2011-03-02avahi: Fix for CVE-2011-1002Tom Rini
As in the patch comments, based on upstream but with a minor change. Signed-off-by: Tom Rini <tom_rini@mentor.com>
2011-02-25avahi: add libcap2 to DEPENDSKoen Kooi
avahi will pick it up already if present: http://git.angstrom-distribution.org/cgi-bin/cgit.cgi/testlab/commit/?id=6384666b6ae4781c1d16818b4f0d02f5f9af7906 Signed-off-by: Koen Kooi <koen@openembedded.org>
2011-01-28avahi: integrate python into main recipeKoen Kooi
* this doesn't introduce spurious rdepends like enabling gtk did in the past Signed-off-by: Koen Kooi <koen@openembedded.org>
2011-01-18avahi.inc: Switch to libc-uclibcTom Rini
As all current cases were caught, no PR change. Signed-off-by: Tom Rini <tom_rini@mentor.com>
2011-01-18avahi: Fix build for uclibcspe targets and use INC_PRKhem Raj
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2010-12-02avahi_0.6.25.bb: Fix build when DISTRO_FEATURES lacks ipv6.Graham Gower
socket.c: In function 'avahi_mdns_mcast_join_ipv6': socket.c:159:38: error: 'IPV6_DROP_MEMBERSHIP' undeclared (first use in this function) socket.c:159:38: note: each undeclared identifier is reported only once for each function it appears in socket.c:161:45: error: 'IPV6_ADD_MEMBERSHIP' undeclared (first use in this function) socket.c: In function 'ipv6_pktinfo': socket.c:273:9: warning: unused variable 'yes' socket.c:272:29: warning: unused parameter 'fd' socket.c: In function 'avahi_open_socket_ipv6': socket.c:387:38: error: 'IPV6_MULTICAST_HOPS' undeclared (first use in this function) socket.c:393:38: error: 'IPV6_UNICAST_HOPS' undeclared (first use in this function) socket.c:399:38: error: 'IPV6_V6ONLY' undeclared (first use in this function) socket.c:405:38: error: 'IPV6_MULTICAST_LOOP' undeclared (first use in this function) cache.c: In function 'avahi_cache_start_poof': cache.c:494:5: warning: cast discards qualifiers from pointer target type socket.c: In function 'avahi_send_dns_packet_ipv4': socket.c:524:16: warning: cast increases required alignment of target type socket.c: In function 'avahi_send_dns_packet_ipv6': socket.c:575:23: error: invalid application of 'sizeof' to incomplete type 'struct in6_pktinfo' socket.c:603:30: error: invalid application of 'sizeof' to incomplete type 'struct in6_pktinfo' socket.c:608:27: error: 'IPV6_PKTINFO' undeclared (first use in this function) socket.c:613:17: error: dereferencing pointer to incomplete type socket.c:616:25: error: dereferencing pointer to incomplete type socket.c: In function 'avahi_recv_dns_packet_ipv4': socket.c:716:48: warning: cast increases required alignment of target type socket.c:716:25: warning: dereferencing type-punned pointer will break strict-aliasing rules socket.c:722:44: warning: cast increases required alignment of target type socket.c: In function 'avahi_recv_dns_packet_ipv6': socket.c:855:22: error: 'IPV6_HOPLIMIT' undeclared (first use in this function) socket.c:858:48: warning: cast increases required alignment of target type socket.c:858:25: warning: dereferencing type-punned pointer will break strict-aliasing rules socket.c:864:22: error: 'IPV6_PKTINFO' undeclared (first use in this function) socket.c:868:39: error: dereferencing pointer to incomplete type socket.c:871:59: error: dereferencing pointer to incomplete type socket.c: In function 'avahi_open_unicast_socket_ipv6': socket.c:946:38: error: 'IPV6_V6ONLY' undeclared (first use in this function) make[2]: *** [libavahi_core_la-socket.lo] Error 1 Signed-off-by: Graham Gower <graham.gower@gmail.com> Acked-by: Khem Raj <raj.khem@gmail.com>
2010-10-22avahi.inc: remove RDEPENDS_append = ""Frans Meulenbroeks
Signed-off-by: Frans Meulenbroeks <fransmeulenbroeks@gmail.com> Acked-by: Martin Jansa <Martin.Jansa@gmail.com> Acked-by: Chris Larson <clarson@kergoth.com>
2010-08-03500+ recipes: remove do_stageFrans Meulenbroeks
This patch removes all occurrences of do_stage() { autotools_stage_all } including all kind of variants w.r.t whitespace Signed-off-by: Frans Meulenbroeks <fransmeulenbroeks@gmail.com> Acked-by: Koen Kooi <koen@openembedded.org> Acked-by: Michael 'Mickey' Lauer <mlauer@vanille-media.de>
2010-06-03recipes: conform to OE packaging guidelines with RDEPENDS/RRECOMMENDSMartin Jansa
* there is probably very few cases when it's needed without _${PN}, if you find one in attached patch, please enlighten me * usually we want those only for ${PN} not for all ${PACKAGES} ie ${PN}-dev, ${PN)-doc etc * there is a check for this in recipe-sanity.bclass * there is maybe few possible fixes also in bbclasses cpan-base.bbclass:RDEPENDS += "${@["perl", ""][(bb.data.inherits_class('native', d))]}" distutils-base.bbclass:RDEPENDS += "python-core" gtk-icon-cache.bbclass:RDEPENDS += "hicolor-icon-theme" image.bbclass:RDEPENDS += "${IMAGE_INSTALL} ${IMAGE_BOOT}" module.bbclass:RDEPENDS += "kernel (${KERNEL_VERSION}) update-modules" ?opie_i18n.bbclass: rdepends = bb.data.getVar("RDEPENDS", d, 1) ?opie_i18n.bbclass: bb.data.setVar('RDEPENDS_%s' % x[0].lower(), pn, d) ?opie_i18n.bbclass: bb.data.setVar('RDEPENDS', rdepends, d) rubyextension.bbclass:RDEPENDS += "ruby" Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Acked-by: Koen Kooi <k-kooi@ti.com>
2010-05-25Make the do_patch apply=yes param implicit if extension is .diff/.patchChris Larson
For .diff/.patch you need to apply manually, you can specify apply=no. Signed-off-by: Chris Larson <chris_larson@mentor.com> Acked-by: Denys Dmytriyenko <denis@denix.org> Acked-by: Khem Raj <raj.khem@gmail.com>
2010-05-25Rename url params patch=<ignored>/pnum=<n> to apply={yes,no}/striplevel=<n>Chris Larson
I think this makes the behavior rather more clear. Signed-off-by: Chris Larson <chris_larson@mentor.com> Acked-by: Denys Dmytriyenko <denis@denix.org> Acked-by: Khem Raj <raj.khem@gmail.com>
2010-04-12recipes: move checksums to recipes from checksums.iniMartin Jansa
* fetch all *.bb with patched utils.bbclass appending all checksums found only in checksums.ini to recipe Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2010-03-25use PYTHON_SITEPACKAGES_DIRRoman I Khimov
Converted most of python site-packages references to PYTHON_SITEPACKAGES_DIR. Signed-off-by: Roman I Khimov <khimov@altell.ru>
2009-11-02avahi: Bump packages to 0.6.25 (security fix) and add checksums.David-John Willis
2009-09-03OpenEmbedded: Switch to using linux-uclibceabi and linux-gnu for TARGET_OSKhem Raj
* Bump the ABI_LAYOUT. Build from scratch will be needed. * Replace using TARGET_OS from linux->linux-gnu. * Replace using linux-uclibcgnueabi->linux-uclibceabi. * Add 'eabi' to DISTRO_FEATURES (only for minimal and micro). * Use eabi and BASE_PACKAGE_ARCH to compute real TARGET_OS. * Fix the micro conf to get console image building. * Fix the linux-uclibcgnueabi overrides in all recipes. Signed-off-by: Khem Raj <raj.khem@gmail.com> Acked-by: Phill Blundell <pb@reciva.com> Acked-by: Michael 'Mickey' Lauer <mickey@vanille-media.de>
2009-05-18avahi.inc : fix override to libc-glibc instead of linux to get it to alwaysGraeme Gregory
work the right way avahi_0.6.24.bb : bump PR to pick up change
2009-03-17rename packages/ to recipes/ per earlier agreementDenys Dmytriyenko
See links below for more details: http://thread.gmane.org/gmane.comp.handhelds.openembedded/21326 http://thread.gmane.org/gmane.comp.handhelds.openembedded/21816 Signed-off-by: Denys Dmytriyenko <denis@denix.org> Acked-by: Mike Westerhof <mwester@dls.net> Acked-by: Philip Balister <philip@balister.org> Acked-by: Khem Raj <raj.khem@gmail.com> Acked-by: Marcin Juszkiewicz <hrw@openembedded.org> Acked-by: Koen Kooi <koen@openembedded.org> Acked-by: Frans Meulenbroeks <fransmeulenbroeks@gmail.com>