From patchwork Wed Mar 28 20:34:53 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gustavo Zacarias X-Patchwork-Id: 149305 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from whitealder.osuosl.org (whitealder.osuosl.org [140.211.166.138]) by ozlabs.org (Postfix) with ESMTP id 1C941B6EEC for ; Thu, 29 Mar 2012 07:35:13 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 5953D8D868; Wed, 28 Mar 2012 20:35:11 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 0ixwEeWV3uVb; Wed, 28 Mar 2012 20:35:07 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by whitealder.osuosl.org (Postfix) with ESMTP id 665088F0D8; Wed, 28 Mar 2012 20:35:03 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from whitealder.osuosl.org (whitealder.osuosl.org [140.211.166.138]) by ash.osuosl.org (Postfix) with ESMTP id BD9008F753 for ; Wed, 28 Mar 2012 20:35:01 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 8BE7A8F0D8 for ; Wed, 28 Mar 2012 20:35:01 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id ioHx2dQKNtvk for ; Wed, 28 Mar 2012 20:34:59 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from loknar.toptech.com.ar (loknar.toptech.com.ar [74.118.36.95]) by whitealder.osuosl.org (Postfix) with ESMTPS id 69B2D8D868 for ; Wed, 28 Mar 2012 20:34:59 +0000 (UTC) Received: from asgard (host10.190-30-120.telecom.net.ar [190.30.120.10]) (authenticated bits=0) by loknar.toptech.com.ar (8.14.4/8.14.4) with ESMTP id q2SKYsot014788 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Wed, 28 Mar 2012 17:34:56 -0300 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=zacarias.com.ar; s=dkey; t=1332966897; bh=frIlawd4GpYo++3Lzd/Unasd4gXpd4zEURwkQp+ZJX8=; h=From:To:Cc:Subject:Date:Message-Id; b=Mf+dX/gfOPsoKFHXIUvRRaFHaavbfAJA7iJYoQRtxGnFK40rk8djWauDJ4AO56ATE cGwS8x/X6GD22Z8a9L4SXTmPgbhLoUpF4JAXGpCzk2V1jLbjed2NV3esiDgJXvVphF ZwxY5oQtpY2VO37qfnei1pcH9UZHmWcSHXgzU9DU= Received: by asgard (sSMTP sendmail emulation); Wed, 28 Mar 2012 17:34:53 -0300 From: Gustavo Zacarias To: buildroot@busybox.net Date: Wed, 28 Mar 2012 17:34:53 -0300 Message-Id: <1332966893-28651-1-git-send-email-gustavo@zacarias.com.ar> X-Mailer: git-send-email 1.7.3.4 X-Virus-Scanned: clamav-milter 0.97.3 at loknar X-Virus-Status: Clean Subject: [Buildroot] [PATCH] 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 Fixes CVE-2012-1573 Signed-off-by: Gustavo Zacarias --- 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..c3b8095 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 = http://ftp.gnu.org/gnu/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))