search for: wants_rsaref

Displaying 5 results from an estimated 5 matches for "wants_rsaref".

2000 Mar 17
2
Problem with 1.2.3pre4 and RSAref
The following code snippet will not compile support for RSAref on NetBSD even if it exists on the system (which breaks OpenSSL): for WANTS_RSAREF in "" 1 ; do if test -z "$WANTS_RSAREF" ; then LIBS="$saved_LIBS -lcrypto" else LIBS="$saved_LIBS -lcrypto -lRSAglue -lrsaref" fi .... It appears that the code r...
2000 Mar 12
2
Trouble building 1.2.2p1 on Solaris 2.7
I installed OpenSSL 0.9.5 in the default location (/usr/local/ssl) on my Solaris 2.7 box, and then tried to install OpenSSH 1.2.2p1. Configure (with no arguments) complains that it can't find working OpenSSL libraries. The last few lines of config.log show a whole bunch of attempts to compile the test code, all failing of course. My /usr/local/ssl DOES have an include/openssl directory
2001 Feb 13
1
configure.in reorder patch
...or compatible version and correct linking # *does not* test for RSA - that comes later. @@ -505,7 +453,7 @@ fi fi fi -LIBS="$saved_LIBS -lcrypto" +LIBS="-lcrypto $saved_LIBS" # Now test RSA support saved_LIBS="$LIBS" @@ -514,7 +462,7 @@ if test -z "$WANTS_RSAREF" ; then LIBS="$saved_LIBS" else - LIBS="$saved_LIBS -lRSAglue -lrsaref" + LIBS="-lRSAglue -lrsaref $saved_LIBS" fi AC_TRY_RUN([ #include <string.h> @@ -552,7 +500,7 @@ else RSA_MSG="yes (using RSAref)" AC_MSG_RESULT(using RSA...
2000 Aug 26
0
New chroot patch, for 2.1.1p4
...-2846,7 +2848,7 @@ # Now test RSA support saved_LIBS="$LIBS" echo $ac_n "checking for RSA support""... $ac_c" 1>&6 -echo "configure:2850: checking for RSA support" >&5 +echo "configure:2852: checking for RSA support" >&5 for WANTS_RSAREF in "" 1 ; do if test -z "$WANTS_RSAREF" ; then LIBS="$saved_LIBS" @@ -2857,7 +2859,7 @@ { echo "configure: error: can not run test program while cross compiling" 1>&2; exit 1; } else cat > conftest.$ac_ext <<EOF -#line 2861 &quot...
2000 Oct 04
0
2.2.0p1 chroot patch
...-2913,7 +2915,7 @@ # Now test RSA support saved_LIBS="$LIBS" echo $ac_n "checking for RSA support""... $ac_c" 1>&6 -echo "configure:2917: checking for RSA support" >&5 +echo "configure:2919: checking for RSA support" >&5 for WANTS_RSAREF in "" 1 ; do if test -z "$WANTS_RSAREF" ; then LIBS="$saved_LIBS" @@ -2924,7 +2926,7 @@ { echo "configure: error: can not run test program while cross compiling" 1>&2; exit 1; } else cat > conftest.$ac_ext <<EOF -#line 2928 &quot...