From 62a6ef9babf48276ff94f5bd48cd73dc89494b51 Mon Sep 17 00:00:00 2001 From: Jo-Philipp Wich Date: Sat, 13 Nov 2010 22:28:48 +0000 Subject: [PATCH] [packages] polarssl: update to v0.14.0 (#8234) SVN-Revision: 23988 --- libs/polarssl/Makefile | 6 ++--- libs/polarssl/patches/100-shared.patch | 5 ++-- libs/polarssl/patches/110-make.patch | 32 +++++++++----------------- 3 files changed, 16 insertions(+), 27 deletions(-) diff --git a/libs/polarssl/Makefile b/libs/polarssl/Makefile index ffd5aea731..b2ea794156 100644 --- a/libs/polarssl/Makefile +++ b/libs/polarssl/Makefile @@ -8,12 +8,12 @@ include $(TOPDIR)/rules.mk PKG_NAME:=polarssl -PKG_VERSION:=0.12.1 -PKG_RELEASE:=2 +PKG_VERSION:=0.14.0 +PKG_RELEASE:=1 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-gpl.tgz PKG_SOURCE_URL:=http://polarssl.org/code/releases/ -PKG_MD5SUM:=08bc85a19bbe65493076b9968b421e80 +PKG_MD5SUM:=669a0582a27a5ec381542f0c67e966b7 include $(INCLUDE_DIR)/package.mk diff --git a/libs/polarssl/patches/100-shared.patch b/libs/polarssl/patches/100-shared.patch index a57cff3a99..d74d8822a9 100644 --- a/libs/polarssl/patches/100-shared.patch +++ b/libs/polarssl/patches/100-shared.patch @@ -1,6 +1,5 @@ -diff -pruN polarssl-0.12.0.orig/library/Makefile polarssl-0.12.0/library/Makefile ---- polarssl-0.12.0.orig/library/Makefile 2009-03-28 18:53:03.000000000 +0100 -+++ polarssl-0.12.0/library/Makefile 2009-08-05 17:53:55.000000000 +0200 +--- a/library/Makefile ++++ b/library/Makefile @@ -29,7 +29,7 @@ OBJS= aes.o arc4.o base64.o \ .SILENT: diff --git a/libs/polarssl/patches/110-make.patch b/libs/polarssl/patches/110-make.patch index 7ca926b274..2137e0a759 100644 --- a/libs/polarssl/patches/110-make.patch +++ b/libs/polarssl/patches/110-make.patch @@ -1,30 +1,20 @@ -diff -pruN polarssl-0.12.0.orig/Makefile polarssl-0.12.0/Makefile ---- polarssl-0.12.0.orig/Makefile 2009-07-28 22:29:34.000000000 +0200 -+++ polarssl-0.12.0/Makefile 2009-08-05 17:52:14.000000000 +0200 -@@ -5,9 +5,9 @@ PREFIX=polarssl_ - .SILENT: - +--- a/Makefile ++++ b/Makefile +@@ -7,7 +7,7 @@ PREFIX=polarssl_ all: -- cd library && make all && cd .. -- cd programs && make all && cd .. -- cd tests && make all && cd .. -+ cd library && $(MAKE) all && cd .. -+ cd programs && $(MAKE) all && cd .. + cd library && $(MAKE) all && cd .. + cd programs && $(MAKE) all && cd .. +- cd tests && $(MAKE) all && cd .. + #cd tests && $(MAKE) all && cd .. install: mkdir -p $(DESTDIR)/include/polarssl -@@ -26,9 +26,9 @@ install: - done - +@@ -28,7 +28,7 @@ install: clean: -- cd library && make clean && cd .. -- cd programs && make clean && cd .. -- cd tests && make clean && cd .. -+ cd library && $(MAKE) clean && cd .. -+ cd programs && $(MAKE) clean && cd .. + cd library && $(MAKE) clean && cd .. + cd programs && $(MAKE) clean && cd .. +- cd tests && $(MAKE) clean && cd .. + #cd tests && $(MAKE) clean && cd .. check: -- ( cd tests && make check ) -+ ( cd tests && $(MAKE) check ) + ( cd tests && $(MAKE) check ) -- 2.30.2