From patchwork Wed Mar 28 21:17:20 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gustavo Zacarias X-Patchwork-Id: 149306 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 BB2BFB6EEC for ; Thu, 29 Mar 2012 08:17:32 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id A627E101AA6; Wed, 28 Mar 2012 21:17:31 +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 1Czs34WlsCkG; Wed, 28 Mar 2012 21:17:29 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by fraxinus.osuosl.org (Postfix) with ESMTP id 1AFDE1017EA; Wed, 28 Mar 2012 21:17:29 +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 E0C1F8F753 for ; Wed, 28 Mar 2012 21:17:27 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id D5BF08E7B3 for ; Wed, 28 Mar 2012 21:17:27 +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 8HrMC2jBMyUi for ; Wed, 28 Mar 2012 21:17:26 +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 6060C8D697 for ; Wed, 28 Mar 2012 21:17:26 +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 q2SLHLaE015292 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Wed, 28 Mar 2012 18:17:23 -0300 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=zacarias.com.ar; s=dkey; t=1332969444; bh=bdSxwuAz5A8ywRKJsXQE9sdYyC3pl/S/uK3RX0JumYs=; h=From:To:Cc:Subject:Date:Message-Id; b=X+NJxuz2oqjKOzmB4Wz1V9T6S9EEcGjdUyJ6OQ5X5AKWn1F9MsJuz3ExUu2/0YUBU wkq1QtPfPJ8jyr29tRNpvMcqKCPnp5RvpDmOyJ+PVY3HICAAUfWk3PuL4Ik2Vo/7fN CxGBIwXgkyeit5LvCOVIEIGDTR1/QrWMEELHojEU= Received: by asgard (sSMTP sendmail emulation); Wed, 28 Mar 2012 18:17:20 -0300 From: Gustavo Zacarias To: buildroot@busybox.net Date: Wed, 28 Mar 2012 18:17:20 -0300 Message-Id: <1332969440-31027-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 v2] 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..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))