summaryrefslogtreecommitdiff
path: root/recipes/gnutls.recipe
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian@centricular.com>2016-02-24 12:17:13 +0200
committerSebastian Dröge <sebastian@centricular.com>2016-02-24 12:17:13 +0200
commita9c2156d482f4f1271fe5a9be0207af184a34762 (patch)
tree83aa47e952949a85e8d14b8f816f626d68567d61 /recipes/gnutls.recipe
parent8e29189499c9cabd2245eea268ab162255cb7d16 (diff)
gnutls: Update to 3.4.9
Diffstat (limited to 'recipes/gnutls.recipe')
-rw-r--r--recipes/gnutls.recipe8
1 files changed, 3 insertions, 5 deletions
diff --git a/recipes/gnutls.recipe b/recipes/gnutls.recipe
index f9ef2e09..a466363e 100644
--- a/recipes/gnutls.recipe
+++ b/recipes/gnutls.recipe
@@ -4,14 +4,14 @@ from cerbero.utils import shell
class Recipe(recipe.Recipe):
name = 'gnutls'
- version = '3.3.18'
+ version = '3.4.9'
maj_ver = '.'.join(version.split('.')[0:2])
url = 'ftp://ftp.gnutls.org/gcrypt/{0}/v{1}/{0}-{2}.tar.xz'.format(name, maj_ver, version)
stype = SourceType.TARBALL
# main library is LGPLv2+ and binaries is GPLv3+ and defined below
licenses = [License.LGPLv2Plus]
configure_options = "--enable-local-libopts --disable-guile --disable-openssl-compatibility \
- --enable-static --enable-zlib --enable-shared --disable-doc"
+ --without-p11-kit --enable-static --enable-zlib --enable-shared --disable-doc"
deps = ['zlib', 'nettle', 'libtasn1']
# GnuTLS uses error.h, which is a GNU extension only available with glibc
# bionic-fixup provides that to us for all platforms
@@ -21,9 +21,7 @@ class Recipe(recipe.Recipe):
Platform.IOS: ['bionic-fixup'],
Platform.DARWIN: ['bionic-fixup']
}
- patches = [name + "/0001-configure-vasprintf-is-defined-in-stdio.h.patch",
- name + "/0002-configure-Update-gettext-version-to-0.19.patch",
- name + "/0003-Update-to-libopts-41.1.16-for-fixing-the-build.patch"]
+ patches = [name + "/0001-configure-vasprintf-is-defined-in-stdio.h.patch"]
autoreconf = True
files_libs = ['libgnutls', 'libgnutlsxx']