summaryrefslogtreecommitdiffstats
path: root/meta/recipes-support/gnutls
Commit message (Collapse)AuthorAgeFilesLines
* gnutls: Update SRC_URI to use GNU_MIRRORDarren Hart2012-10-101-2/+2
| | | | | | | | | | | | The current SRC_URI fails. Update it with the GNU_MIRROR SRC_URI from upstream commit 753b22012f10c393c191d3116b9d38ee4be6d112. (From OE-Core rev: 8430748e838872b22fe0e83a7dbf3a2a5b1faba2) Signed-off-by: Darren Hart <dvhart@linux.intel.com> CC: John Howard <john.howard@intel.com> CC: Scott Garman <scott.a.garman@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* gnutls: Update to 2.12.17Saul Wold2012-03-216-3/+3
| | | | | | | (From OE-Core rev: bb7e461b08783a2acfef2f13b577ca9109c065fd) Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* recipes: bump PR to rebuild .la files without libz.laMartin Jansa2012-02-211-1/+1
| | | | | | | (From OE-Core rev: 1da6a2dbd5e7aeea6cd45ca05590bdd50b67bf89) Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* zlib: Upgrade 1.2.5 -> 1.2.6Khem Raj2012-02-101-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | Dont use autotools, it really not so autoconf like. the configure script gets updated with every release of zlib and we overwrite that. Instead use the upstream provided configure copyright year was changed in zlib.h which caused change in LIC_FILE_CHECKSUM fix.inverted.LFS.logic.patch is already applied upstream so drop it Drop the configure.ac and Makefile.am scripts since we do not autoreconf anymore and do not inherit autotools anymore Bump PR for depending recipes so a rebuild it ensues so that they dont depend on .la anymore and add missing dependencies discovered during incremental build (From OE-Core rev: 50ad5230ea9e0982cdfda23fb9fcfccf89d28f29) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* gnutls: Update to 2.12.16Saul Wold2012-02-036-3/+3
| | | | | | | (From OE-Core rev: 3439512952a64dc9537aa9842c64489219a76ee5) Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* gnutls: Fix configure issue wrt to rmKhem Raj2012-01-191-2/+2
| | | | | | | | | | | | | | | | Add -f option so if the files dont exist then we can still continue. Fixes errors like | + do_configure | + for dir in . lib libextra | + rm ./aclocal.m4 ./m4/libtool.m4 './m4/lt*.m4' | rm: cannot remove `./m4/libtool.m4': No such file or directory | rm: cannot remove `./m4/lt*.m4': No such file or directory (From OE-Core rev: 8904e075d4953413edf13c43ee3a10493a6c63bb) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* gnutls: Fix compilation on uclibcKhem Raj2012-01-192-2/+61
| | | | | | | | | Examples do not compile correctly on latest uclibc (From OE-Core rev: c0cd44bb5588e96b00631de1f1f8a8143b338c02) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* gnutls.inc: set libz prefixMartin Jansa2012-01-171-1/+2
| | | | | | | | | | | | | | | | | | | | | * without this patch host's zlib is used, similar to issue with libreadline it's important if host's zlib is compatible with MACHINE and in this case zlib was in DEPENDS so header was always available in sysroot lib/config.log: configure:18288: checking whether to include zlib compression support configure:18291: result: yes configure:18786: checking for libz configure:18808: x86_64-oe-linux-gcc -m64 --sysroot=/OE/shr-core/tmp-eglibc/sysroots/qemux86-64 -o conftest -O2 -pipe -g -feliminate-unused-debug-types -I/OE/shr-core/tmp-eglibc/sysroots/qemux86-64/usr/include -Wl,-O1 -Wl,--hash-style=gnu -Wl,--as-needed conftest.c /usr/lib/libz.so >&5 configure:18808: $? = 0 configure:18818: result: yes configure:18825: checking how to link with libz configure:18827: result: /usr/lib/libz.so (From OE-Core rev: 6d21c87ca37a11b34551d79758da65ed417c70a0) Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* gnutls: add readline to DEPENDS and add --with-libreadline-prefixMartin Jansa2012-01-171-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * without this patch it looks for readline in host's /usr/lib a) and fails if readline wasn't built before gnutls, because -I is set and cannot find header file, this case is better configure:33131: checking for readline configure:33156: x86_64-oe-linux-gcc -m64 --sysroot=/OE/oe-core/tmp-eglibc/sysroots/qemux86-64 -std=gnu99 -o conftest -O2 -pipe -g -feliminate-unused-debug-types -I/OE/oe-core/tmp-eglibc/sysroots/qemux86-64/usr/include -Wl,-O1 -Wl,--hash-style=gnu -Wl,--as-needed conftest.c /usr/lib/libreadline.so >&5 conftest.c:240:31: fatal error: readline/readline.h: No such file or directory b) and finds usable version there if readline was built and MACHINE is compatible with host (like qemux86-64 on amd64 host) and then it's passing -L/usr/lib (without sysroot prefix) to every build using libgnutls.la configure:33131: checking for readline configure:33156: x86_64-oe-linux-gcc -m64 --sysroot=/OE/shr-core/tmp-eglibc/sysroots/qemux86-64 -std=gnu99 -o conftest -O2 -pipe -g -feliminate-unused-debug-types -I/OE/shr-core/tmp-eglibc/sysroots/qemux86-64/usr/include -Wl,-O1 -Wl,--hash-style=gnu -Wl,--as-needed conftest.c /usr/lib/libreadline.so >&5 configure:33156: $? = 0 configure:33173: result: yes configure:33185: checking how to link with libreadline configure:33187: result: /usr/lib/libreadline.so configure:33199: checking readline/readline.h usability configure:33199: x86_64-oe-linux-gcc -m64 --sysroot=/OE/shr-core/tmp-eglibc/sysroots/qemux86-64 -std=gnu99 -c -O2 -pipe -g -feliminate-unused-debug-types -I/OE/shr-core/tmp-eglibc/sysroots/qemux86-64/usr/include conftest.c >&5 configure:33199: $? = 0 configure:33199: result: yes configure:33199: checking readline/readline.h presence configure:33199: x86_64-oe-linux-gcc -E --sysroot=/OE/shr-core/tmp-eglibc/sysroots/qemux86-64 -m64 -I/OE/shr-core/tmp-eglibc/sysroots/qemux86-64/usr/include conftest.c configure:33199: $? = 0 configure:33199: result: yes configure:33199: checking for readline/readline.h configure:33199: result: yes (From OE-Core rev: 044f99155bf8775481b70cbe02745c6d9ae1d6a9) Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* gnutls: remove gettext patch for non-GPLv3Saul Wold2012-01-061-3/+10
| | | | | | | | | | | GPLv2 version of gnutls does not need the gettext 0.18 patch since it still uses the over version of gettext that is also GPLv2. (From OE-Core rev: 70dc38b1e127524f50f661c5dd4b3225ddb0b36b) Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* gnutls: more gettext version fixesSaul Wold2012-01-032-6/+19
| | | | | | | | | Address [YOCTO #1849] (From OE-Core rev: 206ebe842ba12db271133a80a3d095c0d659eb45) Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* gnutls: Fix fix-gettext-version.patchKhem Raj2011-12-062-3/+16
| | | | | | | | | | This patch did not cover all places to remove references to gettext 0.17 therefore updated it. (From OE-Core rev: 03a8493e9dc4f6ff3416d1abf33ed623352d70d2) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* gnutls: Update to 2.12.14Saul Wold2011-12-016-9/+30
| | | | | | | | | * Add patch for fixing gettext version from 0.17 -> 0.18 (From OE-Core rev: 1c7fbbf6cbdcf804c232c750f10b0a967204e54a) Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* libtasn1: Update to 2.11Saul Wold2011-11-301-3/+3
| | | | | | | (From OE-Core rev: ba6a06c864571cd6ee6b68bfda51dfdda70cbc7d) Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* libtasn1: update to 2.10Saul Wold2011-11-101-5/+3
| | | | | | | | | | COPYING.LIB has white space formating changing README has Copyright update to year range (From OE-Core rev: b50bf2fe6d3364e2ceb652623c9c25057d8b1001) Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* farsight2, ldconfig-native, gnutls: There is no GPLv2.1, correct the fieldsKhem Raj2011-10-141-2/+2
| | | | | | | | | | The licenses were either LGPLv2.1 or GPLv2 make the changes appropriately (From OE-Core rev: ffb48c7b9dfbcf56c61d10f2663df245bc396496) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* gnutls: Disable p11-kit dependency explicitly to resolve build failuresRichard Purdie2011-10-101-0/+1
| | | | | | (From OE-Core rev: 808b3123e359f1aebabb8af44694275e4075e031) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* gnutls: Update to 2.12.11Saul Wold2011-10-075-30/+28
| | | | | | | (From OE-Core rev: c30c193d79437261ea4e2184f200c33cfd554e9e) Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* libtasn1: update SRC_URIJoshua Lock2011-08-241-1/+1
| | | | | | | | | | libtasn is no longer hosted as a sub-project of gnutls, it has its ftp directory. (From OE-Core rev: 4570c1e4f5ba3f3c2f5be8b46d47efc3921d3e6b) Signed-off-by: Joshua Lock <josh@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* gnutls: add p11tool into gnutls-binOtavio Salvador2011-06-061-1/+2
| | | | | | | (From OE-Core rev: cbad07914a68a14487dd39b794beb8ed3c55956f) Signed-off-by: Otavio Salvador <otavio@ossystems.com.br> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* gnutls: use INC_PR on 2.12.5 version recipeOtavio Salvador2011-06-061-1/+1
| | | | | | | (From OE-Core rev: fd57537f53483eef24807d9b7b3eaca9bb4cda7f) Signed-off-by: Otavio Salvador <otavio@ossystems.com.br> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* gnutls: add --with-libdl-prefix and --with-libpthread-prefixMartin Jansa2011-06-021-0/+2
| | | | | | | (From OE-Core rev: c1357d465a72fb3c0250274eeaaecef773be38d2) Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* gnutls: update to 2.12.5Saul Wold2011-06-017-79/+79
| | | | | | | (From OE-Core rev: ad52eacebdc413aa351de078ee878182a9c71e16) Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* gnutls: Add libcap to DEPENDSSaul Wold2011-05-272-3/+5
| | | | | | | | | Setup INC_PR for PR bumps (From OE-Core rev: ffc32d6436bcd11bd9a431affb9d2508fdb3992e) Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* update patch upstream statusQing He2011-05-133-0/+6
| | | | | | | | | | | | | | | | | This patch includes the update of patch upstream status of the following recipes (50 in all): grub pciutils setserial dhcp iproute2 libnss-mdns nfs-utils openssl portmap busybox coreutils dbus dropbear ncurses readline sysfsutils sysvinit tinylogin udev update-rc.d util-linux elfutils file pkgconfig syslinux ubootchart yaffs2 findutils gamin hdparm libaio libzypp parted procps sat-solver screen sed sysklogd tcp-wrapper time zypper attr boost createrepo gnutls hal js libgcrypt libnl libusb-compat (From OE-Core rev: 1e6f767663b7d5fb6277fd2b214f4a50e24d4ffd) Signed-off-by: Qing He <qing.he@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* gnutls.inc: inherit gettext class instead of adding gettext to DEPENDS directlyKhem Raj2011-04-041-2/+2
| | | | | | | (From OE-Core rev: fd340e0df63981a75a7e28e3c67760dff04b6f56) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* gnutls: add BBCLASSEXTEND = nativeKoen Kooi2011-03-251-0/+2
| | | | | | | | | This is needed for the native recipes in meta-efl (From OE-Core rev: 073f162529e5b84f12d348ae49edccc377ec5f7e) Signed-off-by: Koen Kooi <koen@dominion.thruhere.net> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* gnutls: upgrade to version 2.10.4Qing He2011-01-024-2/+2
| | | | | | from 2.8.6 Signed-off-by: Qing He <qing.he@intel.com>
* libtasn1: upgrade to version 2.9Qing He2011-01-021-2/+2
| | | | | | from 2.8 Signed-off-by: Qing He <qing.he@intel.com>
* SRC_URI Checksums AdditionalsSaul Wold2010-12-092-0/+6
| | | | Signed-off-by: Saul Wold <sgw@linux.intel.com>
* Drop AUTOTOOLS_STAGE_PKGCONFIG variable as its not used anywhereRichard Purdie2010-12-051-2/+0
| | | | Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
* libtasn1: upgrade to version 2.8Qing He2010-11-181-1/+1
| | | | | | from 2.7 Signed-off-by: Qing He <qing.he@intel.com>
* libtasn1: Comment out the RREPLACES as it causes problems with rpm backendRichard Purdie2010-10-151-2/+2
| | | | | | | | | Since we've never distributed binary feeds this isn't a problem for now for Poky and as it stands this line breaks images. [BUGID #442] Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
* packages: Separate out most of the remaining packages into recipesRichard Purdie2010-09-016-0/+276
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>