Hello,<br><br>I am having a problem when I compile stunnel against 64 bit openssl libraries:<br><br>./configure --prefix $HOME/tls --with-threads=fork --with-ssl=/opt2/openssl<br><br>stunnel will end up using default libraries in /lib (which I can't remove from my environment). The workaround we have found is to modify the configure script and to force the LIBS variable to use "lib64" instead of "lib".<br>
<br># Add SSL includes and libraries<br>CFLAGS="$CFLAGS -I$ssldir/include"<br>LIBS="$LIBS -L$ssldir/lib64 -lssl -lcrypto" #- <----<br><br>Is this a known problem? Is there another way around this without changing the configure script?<br>
<br>Thanks!<br>