summaryrefslogtreecommitdiffstats
path: root/package/gnutls
Commit message (Collapse)AuthorAgeFilesLines
* Normalize separator size to 80Alexandre Belloni2013-06-061-2/+2
| | | | | Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* gnutls: drop double libidn dependencyPeter Korsgaard2013-06-061-1/+0
| | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* Revert "gnutls: wchar only needed for tools"Peter Korsgaard2013-06-061-6/+3
| | | | | | | | | | | | | | This reverts commit 7672b1235d8f786938af66068c1c1da8a766bb38. It turns out that libgnutls.so ends up with a reference to wctomb() on uClibc, as uClibc doesn't have vasnprintf so gnutls builds its internal gnulib version of it, referencing wctomb(). Fix it by going back to requiring wchar for the base gnutls library as well. Fixes http://autobuild.buildroot.net/results/780/780e825e56dc78f1ea347ca462e2e31044428775/ Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* gnutls: make crywrap a tools optionGustavo Zacarias2013-06-051-0/+5
| | | | | | | | | | crywrap now needs wchar support so just build it when tools are enabled. It's also a tool so it belongs there anyway. Fixes: http://autobuild.buildroot.net/results/418/418ce71eecc1db725e3b3f092131a01cb1666a60/ Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* gnutls: wchar only needed for toolsPeter Korsgaard2013-06-031-3/+6
| | | | | | And adjust reverse dependencies to match. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* gnutls: bump to version 3.2.1Gustavo Zacarias2013-06-033-64/+24
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* gnutls: enable cryptodev-linux supportGustavo Zacarias2013-05-051-0/+5
| | | | | | | | Unfortunately because of header file differencies this can't be used for OCF. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* gnutls: bump to version 3.1.9Gustavo Zacarias2013-03-041-1/+1
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* gnutls: bump to version 3.1.8Gustavo Zacarias2013-02-181-1/+1
| | | | | | | Fixes a regression in 3.1.7 regarding the priority string NORMAL. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* gnutls: tools require the packageGustavo Zacarias2013-02-051-1/+1
| | | | | | [Peter: remove the unneeded BR2_USE_WCHAR dependency] Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* Revert "gnutls: make it non-wchar friendly"Peter Korsgaard2013-02-051-3/+3
| | | | | | | | | | | | | | | | | | | | This reverts commit f1b86cef9884894df26ed25efaabe254f8f0754b While the fix makes gnutls build without wchar, it doesn't actually work as there's no rpl_wctomb implementation so the .so ends up with an undefined reference to wctomb: ./host/usr/bin/arm-linux-nm -D staging/usr/lib/libgnutls.so.28|grep wctomb U wctomb Causing linker errors for packages trying to use it: CCLD msmtp host/usr/arm-buildroot-linux-uclibcgnueabi/sysroot/usr/lib/libgnutls.so: undefined reference to `wctomb' collect2: ld returned 1 exit status Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* gnutls: bump versionPeter Korsgaard2013-02-051-1/+1
| | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* gnutls: bump to version 3.1.6Gustavo Zacarias2013-01-152-3/+3
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* gnutls: handle libidn properlyGustavo Zacarias2013-01-021-0/+4
| | | | | | | | Add it to the dependencies when it's available. But disable crywrap when it's a nommu system since it uses fork() Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* gnutls: fix build failure related to pthreadsGustavo Zacarias2013-01-021-0/+3
| | | | | | | | | | The pthreads autodetection poisons the linkpath thus making other distribution libraries to take precedence over the cross ones. Leading to failures such as: http://autobuild.buildroot.net/results/tmp/3f979d4e2186ee31012c332fedec9591890b0b77 Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* gnutls: fix legal-infoGustavo Zacarias2012-12-291-1/+1
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* gnutls: bump to version 3.1.5Gustavo Zacarias2012-12-283-64/+30
| | | | | | [Peter: add comment when tools not available] Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* gnutls: make it non-wchar friendlyGustavo Zacarias2012-12-262-5/+4
| | | | | | | | Make gnutls work for non-wchar toolchains. It's just a matter of throwing a helping hand to configure. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* gnutls: fix build failure due to non-existing gets in recent C librariesThomas Petazzoni2012-11-171-0/+56
| | | | | | | | | Fixes: http://autobuild.buildroot.org/results/7414989c182f8fd5b3ac849b7897b8e15df0024f/build-end.log Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* packages: switch to host-pkgconfGustavo Zacarias2012-10-291-1/+1
| | | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Acked-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* gnutls: fix link-time build failuresGustavo Zacarias2012-10-271-1/+2
| | | | | | | | | | Fixes http://autobuild.buildroot.net/results/23da17446266bdd49ea0da0c1892d66d3ac6607f/build-end.log And may the <BEEP> rest in peace at last... Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Acked-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* gnutls: bump to 2.12.20Gustavo Zacarias2012-09-091-1/+3
| | | | | | [Peter: License is GPLv3+ LGPLv2.1+] Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* gnutls: requires WCHAR supportThomas Petazzoni2012-07-251-0/+4
| | | | | | | | | gnutls uses wctomb(), which is available only on C libraries with wide-char support. This fixes the following build failure: http://autobuild.buildroot.org/results/cd4e73be80fbb64858f4cf911d2b893b0fc06465/build-end.log Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* all packages: rename XXXTARGETS to xxx-packageArnout Vandecappelle (Essensium/Mind)2012-07-171-1/+1
| | | | | | | | | | | | | Also remove the redundant $(call ...). This is a purely mechanical change, performed with find package linux toolchain boot -name \*.mk | \ xargs sed -i -e 's/$(eval $(call GENTARGETS))/$(eval $(generic-package))/' \ -e 's/$(eval $(call AUTOTARGETS))/$(eval $(autotools-package))/' \ -e 's/$(eval $(call CMAKETARGETS))/$(eval $(cmake-package))/' Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* gnutls: disable libgcrypt prefix manglingPeter Korsgaard2012-06-061-1/+1
| | | | | | Fixes http://autobuild.buildroot.net/results/77a0ca1d28a68daf25c2588eede86f779c772f97 Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* gnutls: add optional zlib supportPeter Korsgaard2012-06-041-1/+1
| | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* gnutls: fix libgcrypt handling with external toolchainsPeter Korsgaard2012-06-041-1/+1
| | | | | | | | | | | The explicit gnutls prefix in combination with the libc.so linker script and non-default sysroot seems to confuse external toolchains, causing configure to error out. Workaround it by not using an explicit libgcrypt prefix as it is installed in the sysroot anyway. Fixes http://autobuild.buildroot.net/results/3b3901bea904bf32bccbd3e9a4274d604776cb98 Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* gnutls: bump to version 2.12.19Gustavo Zacarias2012-05-181-1/+1
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* gnutls: fix build on uClibc with C++ support enabledPeter Korsgaard2012-04-071-0/+58
| | | | | | | | Patch from openembedded: http://git.openembedded.org/openembedded-core/plain/meta/recipes-support/gnutls/gnutls-2.12.17/correct_rpl_gettimeofday_signature.patch Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* gnutls: security bump to version 2.12.18Gustavo Zacarias2012-04-021-4/+5
| | | | | | | Fixes CVE-2012-1573 Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* gnutls: bump to version 2.10.5Sven Neumann2011-09-301-1/+1
| | | | | Signed-off-by: Sven Neumann <s.neumann@raumfeld.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* package: remove useless arguments from AUTOTARGETSThomas Petazzoni2011-09-291-1/+1
| | | | | | | | | | Thanks to the pkgparentdir and pkgname functions, we can rewrite the AUTOTARGETS macro in a way that avoids the need for each package to repeat its name and the directory in which it is present. [Peter: pkgdir->pkgparentdir] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* gnutls: update to version 2.10.3Sven Neumann2011-07-151-1/+1
| | | | | | | | | | | There are newer releases available, but this is the last release that uses libgcrypt. Newer versions prefer nettle over gcrypt. But then there are users of gnutls (for example libsoup and glib-networking) that assume that gnutls uses gcrypt as its crypto backend. They won't compile with a version of gnutls that uses nettle. Signed-off-by: Sven Neumann <s.neumann@raumfeld.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* package: add gnutlsDaniel Mack2011-07-122-0/+22
[Peter: move to crypto section] Signed-off-by: Daniel Mack <zonque@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>