So I just ran this command:
strings libcurl.so | grep libcurl

I get the following output:
libcurl.so.4
# Fatal libcurl error
# This file was generated by libcurl! Edit at your own risk.
Protocol "%s" not supported or disabled in libcurl
CLIENT libcurl 7.50.3
CLIENT libcurl 7.50.3
CLIENT libcurl 7.50.3
libcurl/7.50.3
Unrecognized content encoding type. libcurl understands `identity',
`deflate' and `gzip' content encodings.
A requested feature, protocol or option was not found built-in in this
libcurl due to a build-time decision.
A libcurl function was given a bad argument
An unknown option was passed in to libcurl
libcurl is now using a weak random seed!

Is it safe to assume it was built based on 7.50.3 version?


On Tue, Oct 23, 2018 at 6:57 PM Daniel Stenberg <[email protected]> wrote:

> On Tue, 23 Oct 2018, IoT Home via curl-library wrote:
>
> > I believe the software installed is not using the OS libraries. Instead,
> > it's using its own libcurl files which are part of the product lib
> > directory.
>
> Then compile this code snippet, link with the library and run:
>
> #include <stdio.h>
> #include <curl/curl.h>
>
> int main(void)
> {
>    printf("version %s\n", curl_version());
>    return 0;
> }
>
> --
>
>   / daniel.haxx.se
>
-------------------------------------------------------------------
Unsubscribe: https://cool.haxx.se/list/listinfo/curl-library
Etiquette:   https://curl.haxx.se/mail/etiquette.html

Reply via email to