From patchwork Mon Jun 11 20:40:46 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gustavo Zacarias X-Patchwork-Id: 164248 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from hemlock.osuosl.org (hemlock.osuosl.org [140.211.166.133]) by ozlabs.org (Postfix) with ESMTP id BC2F3B6FA3 for ; Tue, 12 Jun 2012 06:41:04 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id BF414A024B; Mon, 11 Jun 2012 20:41:02 +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 LGN79nciixwY; Mon, 11 Jun 2012 20:41:01 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by hemlock.osuosl.org (Postfix) with ESMTP id 503FAA019F; Mon, 11 Jun 2012 20:41:01 +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 448DD8F753 for ; Mon, 11 Jun 2012 20:40:59 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 31D5D884E2 for ; Mon, 11 Jun 2012 20:40:59 +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 Qm+Bsp9skP1h for ; Mon, 11 Jun 2012 20:40:56 +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 1E5BF8986F for ; Mon, 11 Jun 2012 20:40:54 +0000 (UTC) Received: from asgard (host122.186-109-203.telecom.net.ar [186.109.203.122]) (authenticated bits=0) by loknar.toptech.com.ar (8.14.5/8.14.5) with ESMTP id q5BKemjU031661 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Mon, 11 Jun 2012 17:40:51 -0300 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=zacarias.com.ar; s=dkey; t=1339447253; bh=Vos86n9Fko4DMxWmf5mb3O1RBI9MrecZk2TUVslQa2Y=; h=From:To:Cc:Subject:Date:Message-Id; b=Grkd5nVLopT7DsTPUZXoPJ6w2n5MKAupYqBPSPlrtn3eZoqR3bykfQ+OBv9hlN3RS JTrO36LyGKPo0tm3+xe4BO41JAeHhCgYBTMvoSfdHNpaIEEELUprQvPRokHFvBcqS2 0FDmheRDqUkV2KlHdULvObVZ3ZdgPlaaAw02wW4g= Received: by asgard (sSMTP sendmail emulation); Mon, 11 Jun 2012 17:40:47 -0300 From: Gustavo Zacarias To: buildroot@busybox.net Date: Mon, 11 Jun 2012 17:40:46 -0300 Message-Id: <1339447247-7801-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 1/2] polarssl: bump to version 1.1.4 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 * Correctly handle empty SSL/TLS packets (Found by James Yonan) * Fixed potential heap corruption in x509_name allocation * Fixed single RSA test that failed on Big Endian systems Signed-off-by: Gustavo Zacarias --- package/polarssl/polarssl.mk | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/package/polarssl/polarssl.mk b/package/polarssl/polarssl.mk index d07cdc6..e12f08d 100644 --- a/package/polarssl/polarssl.mk +++ b/package/polarssl/polarssl.mk @@ -1,5 +1,5 @@ POLARSSL_SITE = http://polarssl.org/code/releases/ -POLARSSL_VERSION = 1.1.3 +POLARSSL_VERSION = 1.1.4 POLARSSL_SOURCE = polarssl-$(POLARSSL_VERSION)-gpl.tgz POLARSSL_CONF_OPT = \ -DUSE_SHARED_POLARSSL_LIBRARY=ON \