summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2020-01-28 15:19:43 +0100
committerWaldemar Brodkorb <wbx@openadk.org>2020-01-28 15:19:43 +0100
commit179bc1e9bdea1b89bdb33f8f93b6c1bc4654d365 (patch)
treea59c9264bf84f1dde80b935ce5bda00abb4b69f8
parent72e50acb01c3925ed2bb7e86d34286651536f832 (diff)
libressl: update to 3.0.2
-rw-r--r--package/libressl/Makefile4
-rw-r--r--package/libressl/patches/patch-crypto_compat_arc4random_linux_h11
2 files changed, 2 insertions, 13 deletions
diff --git a/package/libressl/Makefile b/package/libressl/Makefile
index 04b31f666..49b5e10a9 100644
--- a/package/libressl/Makefile
+++ b/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
diff --git a/package/libressl/patches/patch-crypto_compat_arc4random_linux_h b/package/libressl/patches/patch-crypto_compat_arc4random_linux_h
deleted file mode 100644
index c71462315..000000000
--- a/package/libressl/patches/patch-crypto_compat_arc4random_linux_h
+++ /dev/null
@@ -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)