Code review comment for lp://staging/~thomas-voss/net-cpp/fix-1423765

Revision history for this message
Michi Henning (michihenning) wrote :

Running ldd on the libnet-cpp.so in /usr/lib/x86_64-linux-gnu gives:

libcurl.so.4 => /usr/lib/x86_64-linux-gnu/libcurl.so.4 (0x00007f636c483000)

That's a symlink to /usr/lib/x86_64-linux-gnu/libcurl.so.4.3.0

Running ldd on the libnet-cpp.so that I've built myself gives:

libcurl-gnutls.so.4 => /usr/lib/x86_64-linux-gnu/libcurl-gnutls.so.4 (0x00007f4e64426000)

That's a symlink to /usr/lib/x86_64-linux-gnu/libcurl-gnutls.so.4.3.0

That would suggest that libcurl-gnutls.so.4.3.0 has a run-time dependency on something that isn't there?

I tried building with libcurl4-openssl-dev installed instead of libcurl4-gnutls-dev. Interestingly, with that, *only* the http_client_test fails whereas, with libcurl4-gnutls-dev, *both* the http_client_test and the http_client_load_test fail.

« Back to merge proposal