summaryrefslogtreecommitdiffstats
path: root/meta/recipes-support
Commit message (Collapse)AuthorAgeFilesLines
* bdwgc-native: Add missing pkgconfig DEPENDSRichard Purdie2013-08-161-1/+1
| | | | | | | | | | | | | | | | | This fixes configure errors like: | configure.ac:70: error: possibly undefined macro: AC_MSG_ERROR | If this token and others are legitimate, please use m4_pattern_allow. | See the Autoconf documentation. | configure.ac:358: error: possibly undefined macro: AS_IF Reproduced with bitbake bdwgc-native pkgconfig-native -c clean; bitbake bdwgc-native (From OE-Core master rev: defa05f2085f78d9ec9ada7051c284e1fc72e6c1) (From OE-Core rev: 9a9bfdcf4c0776e57dd85aec81f591a3f8307ff7) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* taglib: add missing dependency on zlibMartin Jansa2013-08-161-0/+2
| | | | | | | | | | | | | | | * without target zlib it tries to use native one: | /OE/sysroots/x86_64-linux/usr/lib/libz.so: could not read symbols: File in wrong format | collect2: error: ld returned 1 exit status | make[2]: *** [taglib/libtag.so.1.12.0] Error 1 (From OE-Core master rev: 663564d14b09073765e2c4657f1e6c94dab6a365) (From OE-Core rev: 7afce1297a63e470237ba1f3ff7d72b497188ff8) Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* boost: Limit PARALLEL_MAKE by -j 64Martin Jansa2013-07-091-2/+16
| | | | | | | | | | | | | | * greater paralelism isn't supported by bjam and causes segfault or ignoring -j * PARALLEL_MAKE was enabled for boost in http://git.openembedded.org/openembedded-core/commit/?id=9b9cfc1dfe5e3b8f89b7a8508537166d0f23935e (From OE-Core master rev: c212f306934aa1c7c825e3bb060d4799be1efca1) (From OE-Core rev: 61831b8afac73496fb54583d95690cf6238286ac) Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* libproxy_0.4.7 do_unpack failed of qemuppc_worldJackie Huang2013-07-091-4/+4
| | | | | | | | | | | | | | | | | | | | | The tarball from upstream shows many lines of.... tar: Ignoring unknown extended header keyword `LIBARCHIVE.xattr.security.selinux' tar: Ignoring unknown extended header keyword `SCHILY.dev' tar: Ignoring unknown extended header keyword `SCHILY.ino' tar: Ignoring unknown extended header keyword `SCHILY.nlink' Replacing it with the .zip file from upstream (From OE-Core master rev: 1cad5073346bcccbe5bafa3c8876890a0a62615c) (From OE-Core rev: 1b9b8be17937548135b4c93fc9753c7bd4fc5fbd) Signed-off-by: Amy Fong <amy.fong@windriver.com> Signed-off-by: Jackie Huang <jackie.huang@windriver.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* gnutls: upgrade to 2.12.23Ross Burton2013-07-095-129/+6
| | | | | | | | | | | | | | | | | Importantly, this fixes CVE-2013-1619. Upstream doesn't use GNU as a host, so update the SRC_URI. remove-gets.patch isn't required anymore, obsolete_automake_macros.patch is merged upstream, and gnutls_fix_for_automake_1.12.1.patch doesn't seem to be needed. It was merged and reverted upstream, and my build without it succeeded. (From OE-Core master rev: 9a6395076984350b1dd7005453f97233bbb43132) (From OE-Core rev: abf0d8d471c90670e76610c91469b139bcc7ea82) Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* libxslt: Avoid regenerating manpage during "make install"Phil Blundell2013-05-221-0/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The timestamps in libxslt-1.1.28.tar.gz (specifically) are rather hokey, making the source files for the documentation appear newer than the generated output: -rw-rw-r-- 500/500 16307 2012-11-21 07:22 libxslt-1.1.28/doc/xsltproc.xml -rw-rw-r-- 500/500 7082 2012-09-12 07:24 libxslt-1.1.28/doc/xsltproc2.html -rw-rw-r-- 500/500 9475 2012-09-04 15:26 libxslt-1.1.28/doc/xsltproc.html -rw-rw-r-- 500/500 8256 2012-11-21 06:03 libxslt-1.1.28/doc/xsltproc.1 This causes make to decide that xsltproc.1 needs to be regenerated during the installation process. However, this requires a native xsltproc binary which may not be available, leading to errors like: | make[2]: /usr/bin/xsltproc: Command not found | make[2]: [xsltproc.1] Error 127 (ignored) Adding DEPENDS_class-target = "libxslt-native", or installing xsltproc in the host environment, fixes the above but the documentation still doesn't build: | I/O error : Attempt to load network entity http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl | warning: failed to load external entity "http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl" | error | xsltParseStylesheetFile : cannot parse http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl | compilation error: file ./xsltproc.xml line 10 element refentry | xsltParseStylesheetProcess : document is not a stylesheet And in any case, requiring libxslt-native would increase build time for no real benefit. So, let's just adjust the timestamp on the shipped copy of xsltproc.1 to make it appear newer than the source files. (From OE-Core master rev: 12074bf5319c1086f86efd00f502c91fed344698) (From OE-Core rev: c234dadb606544c552074aef3484f86f383b52df) Signed-off-by: Phil Blundell <philb@gnu.org> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* consolekit: Fix ${S} != ${B} issues with pam enabledRichard Purdie2013-04-172-1/+21
| | | | | | | | | When pam is enabled an extra plugin is build and it references an incorrect directory when separate build directories are used. This patch corrects the issue. (From OE-Core rev: a6e91db198ae5b77986de25331631d894c7b97d1) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* curl: backport patch to fix segfaultsMartin Jansa2013-04-052-1/+172
| | | | | | | | | * e.g. ecore, efreet segfault a lot without this patch (From OE-Core rev: b93011d3e719c46089ccdb39c60d3a9e9cfa5a14) Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* libproxy: add dependency on glib-2.0Alexandru DAMIAN2013-04-041-1/+1
| | | | | | | | | | | libproxy uses glib-2.0, but the depends is missing Fixes intermittent build errors. (From OE-Core rev: 9d8543d98f40d5260ee3830305d83e27412351c3) Signed-off-by: Alexandru DAMIAN <alexandru.damian@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* boost: Add real native supportStefan Herbrechtsmeier2013-03-294-49/+40
| | | | | | | | | | | | | | | | | The current boost recipe only creates the bjam build tool during a native run and thereby is not usable for other native recipes that depend on a boost library. Split out the build tool into its own bjam-native recipe and add real native support to the boost recipe. Additionally replace the boost-native with bjam-native in the DEPENDS. This allows recipes to depend on native boost librarties without increase of the build time for other use cases. Native compilation of bzip2 isn't working and therefore disabled. (From OE-Core rev: aec1e3484d89a3ef0fb5b3470a620cc055f66c37) Signed-off-by: Stefan Herbrechtsmeier <stefan@herbrechtsmeier.net> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* nspr: Also update nspr.pc to 4.9.5Colin Walters2013-03-261-1/+1
| | | | | | | | | | | | | Earlier commits bumped the upstream version, but we need to update our copy of the pkg-config file too. (It'd probably be better to generate this at build time, otherwise this will be a trap people continually fall into) (From OE-Core rev: 14878f34645f5e9a63d3c3be6d6fe558bbda9900) Signed-off-by: Colin Walters <walters@verbum.org> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* gnupg: Add symlink for gpgvPaul Barker2013-03-251-0/+1
| | | | | | | | | | | Gnupg 2.0.19 installs 'gpgv2' but apt-get and possibly other utilities expect to find this as 'gpgv'. A symlink is created in the same way as the link for 'gpg'. (From OE-Core rev: 32f3596cefc034398803032785714b289766bb66) Signed-off-by: Paul Barker <paul@paulbarker.me.uk> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* nspr: remove unnecessary files from the main packageLaurentiu Palcu2013-03-251-2/+9
| | | | | | | | | | | | | | This patch does the following: * removes compile-et.pl and prerr.properties from the main package because these files are needed only at compile time; * moves nspr-config script to nspr-dev package where it belongs; * adds 'perl' RDEPENDS for nspr-dev since the package contains a perl script for running some tests; (From OE-Core rev: d70df34bcd6b345f600624f289ce688e5dd90f7e) Signed-off-by: Laurentiu Palcu <laurentiu.palcu@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* libpcre: Fix BUILD_CFLAGS for out of tree supportRichard Purdie2013-03-231-1/+1
| | | | | | | | | The BUILD_CFLAGS were broken since /include no longer exists in this package. We do need to include ${B} in the include path for pcre.h though. (From OE-Core rev: d9130e5113c8f93f327fbe19dbfe39036c1c3995) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* vte: Fix conflict between FILES_${PN}-dbg and FILES_vte-dbgMark Hatle2013-03-221-1/+1
| | | | | | | | | | | Due to quarks with the way bitbake handles variable key values, the hard coded FILES_vte-dbg or automatic FILES_${PN}-dbg could replace each other, leaving the system in an inconsistent state. (From OE-Core rev: 7846f68537a942d340d5931e23a4fceb84b6edcb) Signed-off-by: Mark Hatle <mark.hatle@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* consolekit: don't inherit gnomeRoss Burton2013-03-221-2/+2
| | | | | | | | | | | | | | | By inheriting gnome this package was build-depending on gtk-update-icon-cache-native, gconf, gconf-native, shared-mime-info and hicolor-icon-theme for no reason. Change this to inherit autotools pkgconfig to reduce the build-dependencies. Also, add a missing dbus-glib build-dependency that was previously pulled in through something in the gnome class. (From OE-Core rev: bde2c0ab1500976e2cb50f1526df04fb8b2cd408) Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* pth: Fix case where ${B} != ${S}Richard Purdie2013-03-221-2/+2
| | | | | | | | | Ensure the autotools commands are executed in ${S} to allow out of tree builds to work. (From OE-Core rev: afeea8a616ea43553a7cd6c160d5f8b23ddcfa38) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* lzop: Fix case where ${B} != ${S}Richard Purdie2013-03-221-1/+1
| | | | | | | | Remove path assumptions and ensure out of tree builds work. (From OE-Core rev: a0f054a733afb6dd6b1f53d304caefe90727d7a3) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* libuucu: Remove the COMPATIBLE_HOST checkRichard Purdie2013-03-181-4/+0
| | | | | | | | | liburcu-0.7.6 supports MIPS. So, we can remove the COMPATIBLE_HOST check intended for MIPS. (From OE-Core rev: 2958de61fdf60b484b718b7def3d34ad3853725a) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* icu: Fix case where ${B} != ${S}Richard Purdie2013-03-181-5/+5
| | | | | | | | | Fix out of tree builds by fixing cwd assumptions and using correct full paths where needed, or just simply the correct paths. (From OE-Core rev: 0525a1556ab3d25d9e6bda2fc3c8e40123825109) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* nss-myhostname: add 0.3 versionMarcin Juszkiewicz2013-03-181-0/+25
| | | | | | | | | | | | | | Meta-linaro layer had own netbase.bbappend which took care of adding MACHINE name to /etc/hosts to get it resolvable. Koen Kooi pointed to nss-myhostname as better solution. Tested, works fine so I add it for other users. (From OE-Core rev: 9f46e4c195e4d8bc638191428492e09f1e57cc76) Signed-off-by: Marcin Juszkiewicz <marcin.juszkiewicz@linaro.org> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* apr-util: Upgrade to v1.5.1Radu Moisan2013-03-181-3/+3
| | | | | | | | (From OE-Core rev: 526f6beb5a8a1844f3d2c03fe38087e4f4a7f68f) Signed-off-by: Radu Moisan <radu.moisan@intel.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* liburcu: Upgrade to v0.7.6Radu Moisan2013-03-181-3/+3
| | | | | | | | | | License file changed but still compliant with LGPLv2.1 (From OE-Core rev: 0aa34849b29a77ff343cefe1215f975a3abfea69) Signed-off-by: Radu Moisan <radu.moisan@intel.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* gnupg: fix PN -> BPN in do_install for multilibsJackie Huang2013-03-161-6/+6
| | | | | | | (From OE-Core rev: d2e7d98ce859a3af037135d1ac7bdb7a34f4d319) Signed-off-by: Jackie Huang <jackie.huang@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* libical: add recipe back in oe-coreCristian Iorga2013-03-152-0/+69
| | | | | | | | | | | version: 0.48. reason: libical is needed by bluez. (From OE-Core rev: ea5ae40d4b124eef946ab87d867640937be8af17) Signed-off-by: Cristian Iorga <cristian.iorga@intel.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* consolekit: make policykit an option, and disable by defaultRoss Burton2013-03-101-10/+8
| | | | | | | | | | | | | Make PolicyKit usage a PACKAGECONFIG option, and disable it by default. Also migrate pam to use PACKAGECONFIG, and add systemd too. ConsoleKit doesn't currently have an option to force this on or off, so rely on a build-dependency for now. (From OE-Core rev: ead060e668b0073f304a696f3fba9dbe24869f90) Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* libsoup-2.4: make libsoup-gnome optionalAndreas Oberritter2013-03-101-2/+5
| | | | | | | | | | * Weakens dependency on libgnome-keyring and sqlite3 * Defaults to no if x11 is in DISTRO_FEATURES (From OE-Core rev: 8a5d0a2be41c1a0471456a1098270632521c0c9f) Signed-off-by: Andreas Oberritter <obi@opendreambox.org> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* libgpg-error: upgrade to 1.11Constantin Musca2013-03-072-4/+4
| | | | | | | | | | | License checksum change due to: - copyright year modification (From OE-Core rev: bb55cc3dc96a391bd9bc561c08c1cca3b11296b6) Signed-off-by: Constantin Musca <constantinx.musca@intel.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* gmp: fix missing PR after update to 5.1.0aBogdan Marinescu2013-03-051-0/+2
| | | | | | | (From OE-Core rev: 8f2ae03dd950e119d9c06cecfa57d69edcf293be) Signed-off-by: Bogdan Marinescu <bogdan.a.marinescu@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* gpgme: upgrade to 1.4.0Constantin Musca2013-03-052-5/+5
| | | | | | | | | | | License md5 checkum change due to: - copyright year modification - space modifications (From OE-Core rev: a8968a05e2cac5ce9de2a42f71c81437906e7508) Signed-off-by: Constantin Musca <constantinx.musca@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* gmp: updated to 5.1.0aBogdan Marinescu2013-03-052-5/+5
| | | | | | | | (From OE-Core rev: 46a29592a781b20472e6d749ee8754ebe29f5a80) Signed-off-by: Bogdan Marinescu <bogdan.a.marinescu@intel.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* apr: add libtool to SSTATE_SCAN_FILESJackie Huang2013-03-051-2/+2
| | | | | | | | | | | | | | The hardcoded paths in libtool will cause apache2 compile fail at link stage when the package apr is installed from sstate cache, so add libtool to SSTATE_SCAN_FILES. [ CQID: WIND00405372 ] (From OE-Core rev: 9d590d714c67ffcf1cd3f3844f5b102f72c2d006) Signed-off-by: Jackie Huang <jackie.huang@windriver.com> Signed-off-by: Randy MacLeod <Randy.MacLeod@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* libassuan: upgrade to 2.1.0Constantin Musca2013-02-282-26/+24
| | | | | | | | | | | | | - license checksum change due to addition of "Copyright (C) 2001, 2002, 2012, 2013 g10 Code GmbH" libassuan-add-pkgconfig-support.patch: adapted to the new version (From OE-Core rev: 36c16c1037d6c319d06c78405594413d65a2821d) Signed-off-by: Constantin Musca <constantinx.musca@intel.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* boost: Update to 1.53.0Saul Wold2013-02-281-2/+2
| | | | | | | (From OE-Core rev: 3c578f6da565fa7df422ffeb4d1355d3628868a7) Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* nspr: Update to 4.9.5Saul Wold2013-02-281-5/+5
| | | | | | | | | Changed LIC_FILES_CHKSUM line numebrs, no license change (From OE-Core rev: b04f64e10c4b12cf32d6633c402b519067e94e5f) Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* sqlite: rename version to match upstream versioning changeSaul Wold2013-02-281-4/+2
| | | | | | | | | | Upstream changed to a single grouped number, change our numbering to match thiers. (From OE-Core rev: 0a00a4328d3fc52ece604f268b7110ef210826a9) Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* shared-mime-info: upgrade to 1.1Constantin Musca2013-02-222-8/+8
| | | | | | | | (From OE-Core rev: eed45b5e22e5fa7b7d6ea7ccf2db36b80f90cd4e) Signed-off-by: Constantin Musca <constantinx.musca@intel.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* curl: update to upstream version 7.29.0Marko Lindqvist2013-02-224-63/+14
| | | | | | | | | | | | - obsolete_automake_macros.patch removed as it's part of upstream. - dont_override_ac_config_macro_dir.patch removed as no longer needed. - pkgconfig_fix.patch updated to apply cleanly (From OE-Core rev: b0c541236b4c4670ce77f55886b6ce02c562b8c2) Signed-off-by: Marko Lindqvist <cazfi74@gmail.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* gnupg: fix CVE-2012-6085Saul Wold2013-02-154-3/+131
| | | | | | | | | | | Code taken from Redhat [YOCTO #3813] (From OE-Core rev: 17f8e03ace51df6b94fdcb7e410acf79c7b046ce) Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* libevent: fix build with automake-1.13Marko Lindqvist2013-02-123-2/+35
| | | | | | | | | | | | | | - Add obsolete_automake_macros.patch that replaces automake macros no longer supported by automake-1.13 with modern constructs. - Use of $(top_srcdir) in TESTS is an error causing automake-1.13 to abort. Disable the tests completely. (From OE-Core rev: 751b5e76768d9fa4e40405a12ad008aa9af1561d) Signed-off-by: Marko Lindqvist <cazfi74@gmail.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* libiconv: Remove RPATH from binariesBjörn Stenberg2013-02-111-0/+6
| | | | | | | | | | Modify libtool to not add RPATH. This solves https://bugzilla.yoctoproject.org/show_bug.cgi?id=2669 (From OE-Core rev: 273c437813b19577d68fa49ec04ea42154ad70c9) Signed-off-by: Björn Stenberg <bjst@enea.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* consolekit: add arch independent unpackaged filesConstantin Musca2013-02-041-2/+4
| | | | | | | | | | | | | | | | | | Fix the following warning: WARNING: QA Issue: consolekit: Files/directories were installed but not shipped /usr/lib /usr/lib/ConsoleKit /usr/lib/ConsoleKit/run-seat.d /usr/lib/ConsoleKit/scripts /usr/lib/ConsoleKit/run-session.d /usr/lib/ConsoleKit/scripts/ck-system-restart /usr/lib/ConsoleKit/scripts/ck-system-stop (From OE-Core rev: 98ef35b319320ac9530e31926ad18d5f5ecd87db) Signed-off-by: Constantin Musca <constantinx.musca@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* taglib: use LIB_SUFFIX in order to determine the correct baselibConstantin Musca2013-02-041-1/+3
| | | | | | | | | | | | | | | | | WARNING: QA Issue: taglib: Files/directories were installed but not shipped /usr/lib /usr/lib/libtag.so /usr/lib/libtag.so.1.12.0 /usr/lib/libtag.so.1 /usr/lib/libtag_c.so.0.0.0 /usr/lib/libtag_c.so /usr/lib/libtag_c.so.0 ... (From OE-Core rev: ebc3e1f43a558165d16f663be796d731ca4b2a74) Signed-off-by: Constantin Musca <constantinx.musca@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* enchant: use BPN instead of PNConstantin Musca2013-02-041-4/+4
| | | | | | | | | | | | - use BPN (PN includes mlprefix) to package all files when building with multilib options [YOCTO #3438] (From OE-Core rev: 6039e0048d324569620868ec774cd88aa191eeaf) Signed-off-by: Constantin Musca <constantinx.musca@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* icu : upgrade to 50.1.2Andrei Dinu2013-02-011-3/+3
| | | | | | | | (From OE-Core rev: 1ce0a0b56e37eb4807f5d7e44e0afaba8a05c278) Signed-off-by: Andrei Dinu <andrei.adrianx.dinu@intel.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* libfm: add dependency on libexifMartin Jansa2013-02-011-1/+1
| | | | | | | | | | | * it's autodetected from sysroot (From OE-Core rev: 945953ed40dafb88d0b559f056fc49f63a84d6de) (From OE-Core rev: 58a6a61b076b7ad4c2c3aba0336ae91bc7869394) Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* libevent : upgrade to 4.0.21Andrei Dinu2013-02-012-53/+5
| | | | | | | | | | | | | | | | | | | - removed libevent-2.0.16_fix_for_x32.patch because the newer version contained the changes done by the patch. - LICENSE file new checksum caused by : old : Copyright (c) 2007-2011 Niels Provos and Nick Mathewson new : Copyright (c) 2007-2012 Niels Provos and Nick Mathewson (From OE-Core rev: eda67a8cb2b2669c12ecda2cf9b00e1001b8c598) (From OE-Core rev: 830eeee2da5bdea2420a1eac8814e4a51eacbd7a) Signed-off-by: Andrei Dinu <andrei.adrianx.dinu@intel.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* libnl: Update to 3.2.21Saul Wold2013-02-011-2/+2
| | | | | | | | | (From OE-Core rev: cdcf64866448fcbeaf6ddeff88ef7261c0cf7cae) (From OE-Core rev: 62958c5af0b838007244b8b139912d5a8dc8507a) Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* sqlite3: Update to 3.7.15.2Saul Wold2013-02-011-3/+3
| | | | | | | | | (From OE-Core rev: bacdb06ed7795400ea08b25946dc94b956b7578b) (From OE-Core rev: 9a419a38f6d5beb5c174204910878370d92258d8) Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* sqlite3: Ensure MLPREFIX is applied to AUTO_LIBNAME_PKGSRichard Purdie2013-02-011-1/+1
| | | | | | (From OE-Core rev: c09777a99281e22f006b3e8bdc90b469ba12d9fe) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>