diff options
author | Alyssa Ross <hi@alyssa.is> | 2024-03-25 22:14:22 +0100 |
---|---|---|
committer | Brent Cook <busterb@gmail.com> | 2024-03-26 04:18:04 -0500 |
commit | 3f4b4ac6c545c5e3dedc15bf39c97d50f2fde99b (patch) | |
tree | 96eca38f03ce97aceccbec93c4b4c3b863effe9c | |
parent | 095ffed06305f64b9c3d41e6f791e60a1fb4d16a (diff) | |
download | portable-3f4b4ac6c545c5e3dedc15bf39c97d50f2fde99b.tar.gz portable-3f4b4ac6c545c5e3dedc15bf39c97d50f2fde99b.tar.bz2 portable-3f4b4ac6c545c5e3dedc15bf39c97d50f2fde99b.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.in | 2 |
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 | |||
9 | Description: Secure communications using the TLS socket protocol. | 9 | Description: Secure communications using the TLS socket protocol. |
10 | Version: @VERSION@ | 10 | Version: @VERSION@ |
11 | Libs: -L${libdir} -ltls | 11 | Libs: -L${libdir} -ltls |
12 | Libs.private: @LIBS@ @PLATFORM_LDADD@ | 12 | Libs.private: @LIBS@ @PLATFORM_LDADD@ -lssl -lcrypto |
13 | Cflags: -I${includedir} | 13 | Cflags: -I${includedir} |