summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2020-11-18 16:53:28 +0100
committerDaniel Stenberg <daniel@haxx.se>2020-11-18 16:53:28 +0100
commit4c9a753ab2c4c63869054dd161da7226ffe15d64 (patch)
tree294f381f91ab1d509365c9bf59894034407671d9
parent613d4b14ab44a0fef289142c6134ef8462efd81f (diff)
downloadcurl-4c9a753ab2c4c63869054dd161da7226ffe15d64.tar.gz
KNOWN_BUGS: cmake libcurl.pc uses absolute library paths
Closes #6169
-rw-r--r--docs/KNOWN_BUGS9
1 files changed, 9 insertions, 0 deletions
diff --git a/docs/KNOWN_BUGS b/docs/KNOWN_BUGS
index cab9fb4e5..5a9b1bf70 100644
--- a/docs/KNOWN_BUGS
+++ b/docs/KNOWN_BUGS
@@ -128,6 +128,7 @@ problems may have been fixed or changed somewhat since this was written!
15.5 build on Linux links libcurl to libdl
15.6 uses -lpthread instead of Threads::Threads
15.7 generated .pc file contains strange entries
+ 15.8 libcurl.pc uses absolute library paths
==============================================================================
@@ -874,3 +875,11 @@ problems may have been fixed or changed somewhat since this was written!
-lgcc -lgcc_s
See https://github.com/curl/curl/issues/6167
+
+15.8 libcurl.pc uses absolute library paths
+
+ The libcurl.pc file generated by cmake contains things like Libs.private:
+ /usr/lib64/libssl.so /usr/lib64/libcrypto.so /usr/lib64/libz.so. The
+ autotools equivalent would say Libs.private: -lssl -lcrypto -lz
+
+ See https://github.com/curl/curl/issues/6169