Re: libcurl with client ssl certificate

2012-08-20 Thread Chris Baylis
Thank you all for your input. It lead me to a little investigation and as it turns out I didn't know what I was doing with the keys. Originally the client key was signed by the client itself. I now have client keys, signed by the web server. And can run simplessl.c with my keys and

Re: libcurl with client ssl certificate

2012-08-20 Thread Ralph Mitchell
On Mon, Aug 20, 2012 at 2:14 AM, Chris Baylis chrisba...@gmail.com wrote: Thank you all for your input. It lead me to a little investigation and as it turns out I didn't know what I was doing with the keys. Originally the client key was signed by the client itself. I now have client keys,

Re: One or more libs available at link-time are not available run-time

2012-08-20 Thread Jeremy Hughes
Hi Dan, Does 7.27.0 require additional libraries that aren't needed by earlier versions? Yes, it has optional features that can require new dependencies. You should still be able to disable those features in the configure script to return to the same feature set as earlier versions, though. Try

Re: One or more libs available at link-time are not available run-time

2012-08-20 Thread Nick Zitzmann
On Aug 20, 2012, at 6:43 AM, Jeremy Hughes jer...@softpress.com wrote: Is there a way of discovering the actual names of the libraries that are referred to in the error message? E.g. -lssl is presumably /usr/bin/openssl. -lssl refers to /usr/lib/libssl.dylib. /usr/bin/openssl is an

Re: One or more libs available at link-time are not available run-time

2012-08-20 Thread Jeremy Hughes
Hi Nick, On Aug 20, 2012, at 6:43 AM, Jeremy Hughes jer...@softpress.com wrote: Is there a way of discovering the actual names of the libraries that are referred to in the error message? E.g. -lssl is presumably /usr/bin/ openssl. -lssl refers to /usr/lib/libssl.dylib. /usr/bin/openssl is an

Re: One or more libs available at link-time are not available run-time

2012-08-20 Thread Jeremy Hughes
Hi Nick, PLUGIf you're building 7.27, then unless your application depends on an OpenSSL-specific feature, you are welcome to try out the native SSL option by configuring libcurl --with-darwinssl./PLUG I thought from a previous discussion on this list that darwinssl doesn't support ssh. Jonas

Re: One or more libs available at link-time are not available run-time

2012-08-20 Thread Nick Zitzmann
On Aug 20, 2012, at 12:17 PM, Jeremy Hughes jer...@softpress.com wrote: I thought from a previous discussion on this list that darwinssl doesn't support ssh. Jonas Schnelli (23/7/12, 21:38) listed one of the cons as no SFTP (libssh) support without openssl The reason we're building with

Re: One or more libs available at link-time are not available run-time

2012-08-20 Thread Daniel Stenberg
On Mon, 20 Aug 2012, Jeremy Hughes wrote: We're not installing it. I thought the --with-libssh2=[directory] option was supposed to allow libcurl to be built with a static library of libssh2? It works, I do it all the time. But: 1 - you need to specify the prefix directory, not the full dir

A patch for my previous patch

2012-08-20 Thread Nick Zitzmann
So I tried building my previous patch under Snow Leopard. It built okay, but in practice it didn't work at all, because the context wasn't being initialized, because I accidentally removed that from the code. Oops. This patch for curl_darwinssl.c fixes some problems in the previous patch that