mirror of
git://git.openwrt.org/openwrt/openwrt.git
synced 2025-12-11 07:02:10 -05:00
Changelog: - 3.8.0: https://ftp.openbsd.org/pub/OpenBSD/LibreSSL/libressl-3.8.0-relnotes.txt - 3.8.1: https://ftp.openbsd.org/pub/OpenBSD/LibreSSL/libressl-3.8.1-relnotes.txt - 3.8.2: https://ftp.openbsd.org/pub/OpenBSD/LibreSSL/libressl-3.8.3-relnotes.txt - 3.8.4: https://ftp.openbsd.org/pub/OpenBSD/LibreSSL/libressl-3.8.4-relnotes.txt - 3.9.0: https://ftp.openbsd.org/pub/OpenBSD/LibreSSL/libressl-3.9.0-relnotes.txt - 3.9.1: https://ftp.openbsd.org/pub/OpenBSD/LibreSSL/libressl-3.9.1-relnotes.txt - 3.9.2: https://ftp.openbsd.org/pub/OpenBSD/LibreSSL/libressl-3.9.2-relnotes.txt - 4.0.0: https://ftp.openbsd.org/pub/OpenBSD/LibreSSL/libressl-4.0.0-relnotes.txt - 4.1.0: https://ftp.openbsd.org/pub/OpenBSD/LibreSSL/libressl-4.1.0-relnotes.txt - 4.2.0: https://ftp.openbsd.org/pub/OpenBSD/LibreSSL/libressl-4.2.0-relnotes.txt - 4.2.1: https://ftp.openbsd.org/pub/OpenBSD/LibreSSL/libressl-4.2.1-relnotes.txt Further add patches: - 010-static.patch - 011-fix-linking.patch Link: https://github.com/openwrt/openwrt/pull/19562 Signed-off-by: Nick Hainke <vincent@systemli.org>
31 lines
963 B
Diff
31 lines
963 B
Diff
--- a/libcrypto.pc.in
|
|
+++ b/libcrypto.pc.in
|
|
@@ -23,6 +23,5 @@ includedir=@includedir@
|
|
Name: LibreSSL-libcrypto
|
|
Description: LibreSSL cryptography library
|
|
Version: @VERSION@
|
|
-Libs: -L${libdir} -lcrypto
|
|
-Libs.private: @LIBS@ @PLATFORM_LDADD@
|
|
+Libs: -L${libdir} -lcrypto @LIBS@ @PLATFORM_LDADD@
|
|
Cflags: -I${includedir}
|
|
--- a/libssl.pc.in
|
|
+++ b/libssl.pc.in
|
|
@@ -23,6 +23,6 @@ includedir=@includedir@
|
|
Name: LibreSSL-libssl
|
|
Description: Secure Sockets Layer and cryptography libraries
|
|
Version: @VERSION@
|
|
-Requires.private: libcrypto
|
|
+Requires: libcrypto
|
|
Libs: -L${libdir} -lssl
|
|
Cflags: -I${includedir}
|
|
--- a/libtls.pc.in
|
|
+++ b/libtls.pc.in
|
|
@@ -23,6 +23,5 @@ includedir=@includedir@
|
|
Name: LibreSSL-libtls
|
|
Description: Secure communications using the TLS socket protocol.
|
|
Version: @VERSION@
|
|
-Libs: -L${libdir} -ltls
|
|
-Libs.private: @LIBS@ @PLATFORM_LDADD@ -lssl -lcrypto
|
|
+Libs: -L${libdir} -ltls @LIBS@ @PLATFORM_LDADD@ -lssl -lcrypto
|
|
Cflags: -I${includedir}
|