aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrent Cook <bcook@openbsd.org>2016-06-03 05:14:04 -0500
committerBrent Cook <bcook@openbsd.org>2016-06-03 05:14:04 -0500
commit4a9e42808c39bcd7f2bc90737e3a7bfa0fad3f67 (patch)
treecd59ce1b60eb8af291c6d18909a9ab1421234b76
parent72ce1e1c9f5457e3bb72ec0a440133c56ee680b5 (diff)
parentde4a123930ebd916bfafbcc4f8584e6181d912b6 (diff)
downloadportable-4a9e42808c39bcd7f2bc90737e3a7bfa0fad3f67.tar.gz
portable-4a9e42808c39bcd7f2bc90737e3a7bfa0fad3f67.tar.bz2
portable-4a9e42808c39bcd7f2bc90737e3a7bfa0fad3f67.zip
Land #197, include platform linker flags in the .pc files
-rw-r--r--libcrypto.pc.in2
-rw-r--r--libssl.pc.in2
-rw-r--r--libtls.pc.in2
3 files changed, 3 insertions, 3 deletions
diff --git a/libcrypto.pc.in b/libcrypto.pc.in
index 4e886b9..fa9c3a9 100644
--- a/libcrypto.pc.in
+++ b/libcrypto.pc.in
@@ -11,5 +11,5 @@ Version: @VERSION@
11Requires: 11Requires:
12Conflicts: 12Conflicts:
13Libs: -L${libdir} -lcrypto 13Libs: -L${libdir} -lcrypto
14Libs.private: @LIBS@ 14Libs.private: @LIBS@ @PLATFORM_LDADD@
15Cflags: -I${includedir} 15Cflags: -I${includedir}
diff --git a/libssl.pc.in b/libssl.pc.in
index 43b8bb7..ae61aec 100644
--- a/libssl.pc.in
+++ b/libssl.pc.in
@@ -12,5 +12,5 @@ Requires:
12Requires.private: libcrypto 12Requires.private: libcrypto
13Conflicts: 13Conflicts:
14Libs: -L${libdir} -lssl 14Libs: -L${libdir} -lssl
15Libs.private: @LIBS@ -lcrypto 15Libs.private: @LIBS@ -lcrypto @PLATFORM_LDADD@
16Cflags: -I${includedir} 16Cflags: -I${includedir}
diff --git a/libtls.pc.in b/libtls.pc.in
index 19e6b32..82a6a71 100644
--- a/libtls.pc.in
+++ b/libtls.pc.in
@@ -12,5 +12,5 @@ Requires:
12Requires.private: libcrypto libssl 12Requires.private: libcrypto libssl
13Conflicts: 13Conflicts:
14Libs: -L${libdir} -ltls 14Libs: -L${libdir} -ltls
15Libs.private: @LIBS@ -lcrypto -lssl 15Libs.private: @LIBS@ -lcrypto -lssl @PLATFORM_LDADD@
16Cflags: -I${includedir} 16Cflags: -I${includedir}