aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlyssa Ross <hi@alyssa.is>2024-03-25 22:14:22 +0100
committerBrent Cook <busterb@gmail.com>2024-03-26 04:18:12 -0500
commita93085af8e74e784720d9b091adc1c14bb05131e (patch)
treeb020b9e460072cf89b94a48db4bc0abcd69d9468
parent16fc06b622cb5c6803e32aa9355d4011e9fcba64 (diff)
downloadportable-a93085af8e74e784720d9b091adc1c14bb05131e.tar.gz
portable-a93085af8e74e784720d9b091adc1c14bb05131e.tar.bz2
portable-a93085af8e74e784720d9b091adc1c14bb05131e.zip
Add libssl and libcrypto to libtls's Libs.private
Since d193f43 ("slim down `libtls`"), statically linking libtls requires also linking libssl and libcrypto, so express that in the pkg-config file.
-rw-r--r--libtls.pc.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/libtls.pc.in b/libtls.pc.in
index d176929..3c49391 100644
--- a/libtls.pc.in
+++ b/libtls.pc.in
@@ -9,5 +9,5 @@ Name: LibreSSL-libtls
9Description: Secure communications using the TLS socket protocol. 9Description: Secure communications using the TLS socket protocol.
10Version: @VERSION@ 10Version: @VERSION@
11Libs: -L${libdir} -ltls 11Libs: -L${libdir} -ltls
12Libs.private: @LIBS@ @PLATFORM_LDADD@ 12Libs.private: @LIBS@ @PLATFORM_LDADD@ -lssl -lcrypto
13Cflags: -I${includedir} 13Cflags: -I${includedir}