Browse Source

libressl: update to 3.0.2

Waldemar Brodkorb 4 years ago
parent
commit
179bc1e9bd

+ 2 - 2
package/libressl/Makefile

@@ -4,9 +4,9 @@
 include $(ADK_TOPDIR)/rules.mk
 
 PKG_NAME:=		libressl
-PKG_VERSION:=		2.9.2
+PKG_VERSION:=		3.0.2
 PKG_RELEASE:=		1
-PKG_HASH:=		c4c78167fae325b47aebd8beb54b6041d6f6a56b3743f4bd5d79b15642f9d5d4
+PKG_HASH:=		df7b172bf79b957dd27ef36dcaa1fb162562c0e8999e194aa8c1a3df2f15398e
 PKG_DESCR:=		ssl/tls library
 PKG_SECTION:=		libs/crypto
 PKG_URL:=		http://www.libressl.org

+ 0 - 11
package/libressl/patches/patch-crypto_compat_arc4random_linux_h

@@ -1,11 +0,0 @@
---- libressl-2.4.2.orig/crypto/compat/arc4random_linux.h	2016-08-01 01:07:36.000000000 +0200
-+++ libressl-2.4.2/crypto/compat/arc4random_linux.h	2016-10-17 21:56:49.830938238 +0200
-@@ -32,7 +32,7 @@ static pthread_mutex_t arc4random_mtx =
- #define _ARC4_LOCK()   pthread_mutex_lock(&arc4random_mtx)
- #define _ARC4_UNLOCK() pthread_mutex_unlock(&arc4random_mtx)
- 
--#ifdef __GLIBC__
-+#if defined(__GLIBC__) && !defined(__UCLIBC__)
- extern void *__dso_handle;
- extern int __register_atfork(void (*)(void), void(*)(void), void (*)(void), void *);
- #define _ARC4_ATFORK(f) __register_atfork(NULL, NULL, (f), __dso_handle)