On Sun, Nov 13, 2016 at 08:26:48PM +0300, Sergey B Kirpichev wrote: > On Sun, Nov 13, 2016 at 05:29:10PM +0100, Kurt Roeckx wrote: > > That's because the configure script tries to look for a function > > that's been turned into a define. For some reason it's only trying > > to look for SSL_library_init() on i386. > > Could you suggest a more portable solution?
If you really want configure to detect something, write a real program that includes the proper header file. That way SSL_library_init() should still work even when we turned it into a define. An other solution is that you take an other function, like SSL_new(). Kurt