-
-
Notifications
You must be signed in to change notification settings - Fork 6.9k
Description
I did this
I compiled libcurl following the instructions here: https://github.com/curl/curl/blob/a64d7de61af5fb94b70972cd0981020e729c1499/docs/INSTALL.cmake
(cmake ../curl && make && make install)
I expected the following
After installation, running cmake --version
I get the following warning:
cmake: /usr/local/lib/libcurl.so.4: no version information available (required by cmake)
(cmake version 3.22.1). I expected that there would be version information available.
curl/libcurl version
$ curl -V output
curl 7.87.0-DEV (Linux) libcurl/7.87.0-DEV OpenSSL/3.0.2 zlib/1.2.11 c-ares/1.18.1
Release-Date: [unreleased]
Protocols: dict file ftp ftps gopher gophers http https imap imaps mqtt pop3 pop3s rtsp smb smbs smtp smtps telnet tftp
Features: alt-svc AsynchDNS HSTS HTTPS-proxy IPv6 Largefile libz NTLM SSL threadsafe UnixSockets
(I have built it with ares support, the instructions file seems outdated?)
operating system
Linux bruno 5.15.0-71-generic #78-Ubuntu SMP Tue Apr 18 09:00:29 UTC 2023 x86_64 x86_64 x86_64 GNU/Linux
It seems that this is supported via enable-versioned-symbols
with ./configure, but not with cmake? I apologize if this is working as intended and if this a feature request instead. Thanks in advance