From patchwork Mon Apr 2 21:32:29 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Peter Korsgaard X-Patchwork-Id: 150258 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from fraxinus.osuosl.org (fraxinus.osuosl.org [140.211.166.137]) by ozlabs.org (Postfix) with ESMTP id B6991B6EE6 for ; Tue, 3 Apr 2012 07:34:17 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id 15A7610008B; Mon, 2 Apr 2012 21:34:16 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from fraxinus.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id bKXMnUcQr2jp; Mon, 2 Apr 2012 21:34:08 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by fraxinus.osuosl.org (Postfix) with ESMTP id 276AA1016DD; Mon, 2 Apr 2012 21:34:02 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from hemlock.osuosl.org (hemlock.osuosl.org [140.211.166.133]) by ash.osuosl.org (Postfix) with ESMTP id A165F8F78F for ; Mon, 2 Apr 2012 21:33:57 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id 9B0E2A0268 for ; Mon, 2 Apr 2012 21:33:57 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from hemlock.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 1XaOvWCQA5st for ; Mon, 2 Apr 2012 21:33:57 +0000 (UTC) Received: from busybox.osuosl.org (busybox.osuosl.org [140.211.167.224]) by hemlock.osuosl.org (Postfix) with ESMTP id 2C11EA0233 for ; Mon, 2 Apr 2012 21:33:57 +0000 (UTC) Received: by busybox.osuosl.org (Postfix, from userid 4021) id 29006969E4; Mon, 2 Apr 2012 21:33:57 +0000 (UTC) From: Peter Korsgaard To: buildroot@busybox.net Date: Mon, 2 Apr 2012 23:32:29 +0200 X-Git-Refname: refs/heads/master X-Git-Oldrev: adae2f673d027c14ca294c7f1143f86741da9945 X-Git-Newrev: 11c5f6971a8d179fb02a432ae988cde80b0f5212 X-Patchwork-Hint: ignore Message-Id: <20120402213357.29006969E4@busybox.osuosl.org> Subject: [Buildroot] [git commit] gnutls: security bump to version 2.12.18 X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: buildroot-bounces@busybox.net Sender: buildroot-bounces@busybox.net commit: http://git.buildroot.net/buildroot/commit/?id=11c5f6971a8d179fb02a432ae988cde80b0f5212 branch: http://git.buildroot.net/buildroot/commit/?id=refs/heads/master Fixes CVE-2012-1573 Signed-off-by: Gustavo Zacarias Signed-off-by: Peter Korsgaard --- package/gnutls/gnutls.mk | 9 +++++---- 1 files changed, 5 insertions(+), 4 deletions(-) diff --git a/package/gnutls/gnutls.mk b/package/gnutls/gnutls.mk index 4cda997..ce570d5 100644 --- a/package/gnutls/gnutls.mk +++ b/package/gnutls/gnutls.mk @@ -4,11 +4,12 @@ # ############################################################# -GNUTLS_VERSION = 2.10.5 +GNUTLS_VERSION = 2.12.18 GNUTLS_SOURCE = gnutls-$(GNUTLS_VERSION).tar.bz2 -GNUTLS_SITE = http://ftp.gnu.org/gnu/gnutls/ -GNUTLS_DEPENDENCIES = libgcrypt -GNUTLS_CONF_OPT += --without-libgcrypt-prefix +GNUTLS_SITE = $(BR2_GNU_MIRROR)/gnutls +GNUTLS_DEPENDENCIES = host-pkg-config libgcrypt +GNUTLS_CONF_OPT = --with-libgcrypt --with-libgcrypt-prefix=$(STAGING_DIR)/usr \ + --without-p11-kit GNUTLS_INSTALL_STAGING = YES $(eval $(call AUTOTARGETS))