search for: rsa_msg

Displaying 3 results from an estimated 3 matches for "rsa_msg".

Did you mean: ra_msg
2001 Jun 06
1
configure patch for Alpha/Tru64 Unix 5.1
...+++ src-2.9p1-local/configure.in Wed Jun 6 19:06:07 2001 @@ -683,6 +683,7 @@ break; ], []) done +LIBS="$saved_LIBS" if test ! -z "$no_rsa" ; then AC_MSG_RESULT(disabled) @@ -698,7 +699,7 @@ else RSA_MSG="yes (using RSAref)" AC_MSG_RESULT(using RSAref) - LIBS="$saved_LIBS -lcrypto -lRSAglue -lrsaref" + LIBS="$LIBS -lcrypto -lRSAglue -lrsaref" fi fi fi -- ##> Petter Reinhol...
2000 Aug 15
0
[PATCH]: Port to Mac OS X/Darwin, misc
...st ! -z "$blibpath" ; then blibpath="$blibpath:$ssldir:$ssldir/lib" fi + LIBCRYPTO="-lcrypto" fi -LIBS="$saved_LIBS -lcrypto" +LIBS="$saved_LIBS $LIBCRYPTO" # Now test RSA support saved_LIBS="$LIBS" @@ -432,7 +448,7 @@ else RSA_MSG="yes (using RSAref)" AC_MSG_RESULT(using RSAref) - LIBS="$saved_LIBS -lcrypto -lRSAglue -lrsaref" + LIBS="$saved_LIBS $LIBCRYPTO -lRSAglue -lrsaref" fi fi fi Index: Services/OpenSSH/openssh/uidswap.c diff -u Services/OpenSSH/openssh/uidswap.c:1.1.1.3 Se...
2001 Feb 13
1
configure.in reorder patch
...t;$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 RSAref) - LIBS="$saved_LIBS -lcrypto -lRSAglue -lrsaref" + LIBS="-lcrypto -lRSAglue -lrsaref $saved_LIBS" fi fi fi @@ -568,6 +516,189 @@ LIBS="$LIBS -liberty"; fi +dnl UnixWare 2.x +AC_CHECK_FUNC(st...