diff options
author | Martin Herkt <lachs0r@srsfckn.biz> | 2015-08-27 20:54:29 +0200 |
---|---|---|
committer | Ricardo Constantino (:RiCON) <wiiaboo@gmail.com> | 2016-05-31 15:24:22 +0100 |
commit | de4a123930ebd916bfafbcc4f8584e6181d912b6 (patch) | |
tree | e12310594685b72dc14ad2a42d06116e6be08db1 | |
parent | 0c4d1b9cef1da286e125aa534b0b0a630b779c14 (diff) | |
download | portable-de4a123930ebd916bfafbcc4f8584e6181d912b6.tar.gz portable-de4a123930ebd916bfafbcc4f8584e6181d912b6.tar.bz2 portable-de4a123930ebd916bfafbcc4f8584e6181d912b6.zip |
pc: add platform-specific libs to Libs.private
Fixes compilations including libressl static libraries in MinGW.
Signed-off-by: Ricardo Constantino (:RiCON) <wiiaboo@gmail.com>
-rw-r--r-- | libcrypto.pc.in | 2 | ||||
-rw-r--r-- | libssl.pc.in | 2 | ||||
-rw-r--r-- | libtls.pc.in | 2 |
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@ | |||
11 | Requires: | 11 | Requires: |
12 | Conflicts: | 12 | Conflicts: |
13 | Libs: -L${libdir} -lcrypto | 13 | Libs: -L${libdir} -lcrypto |
14 | Libs.private: @LIBS@ | 14 | Libs.private: @LIBS@ @PLATFORM_LDADD@ |
15 | Cflags: -I${includedir} | 15 | Cflags: -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: | |||
12 | Requires.private: libcrypto | 12 | Requires.private: libcrypto |
13 | Conflicts: | 13 | Conflicts: |
14 | Libs: -L${libdir} -lssl | 14 | Libs: -L${libdir} -lssl |
15 | Libs.private: @LIBS@ -lcrypto | 15 | Libs.private: @LIBS@ -lcrypto @PLATFORM_LDADD@ |
16 | Cflags: -I${includedir} | 16 | Cflags: -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: | |||
12 | Requires.private: libcrypto libssl | 12 | Requires.private: libcrypto libssl |
13 | Conflicts: | 13 | Conflicts: |
14 | Libs: -L${libdir} -ltls | 14 | Libs: -L${libdir} -ltls |
15 | Libs.private: @LIBS@ -lcrypto -lssl | 15 | Libs.private: @LIBS@ -lcrypto -lssl @PLATFORM_LDADD@ |
16 | Cflags: -I${includedir} | 16 | Cflags: -I${includedir} |