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