1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-27 00:57:50 +00:00

Fix build with OpenSSL 0.9.7.

Submitted by:	nectar
This commit is contained in:
Christian Weisgerber 2003-03-04 15:03:42 +00:00
parent de801ce0f8
commit 04049df846
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=76852
2 changed files with 17 additions and 2 deletions

View File

@ -26,9 +26,10 @@ MAKE_ARGS= KTARGET=freebsd CC="${CC}" CC2="${CC}" \
-DBSD44 -DCK_NCURSES -DCK_NEWTERM \
-DTCPSOCKET -DNOCOTFMC -DFREEBSD4 -DUSE_UU_LOCK -DFNFLOAT \
-funsigned-char -DTPUTSARGTYPE=int -DUSE_STRERROR -DCKHTTP \
-DCK_SSL -DCK_AUTHENTICATION -DCK_ENCRYPTION -DCK_DES" \
-DCK_SSL -DCK_AUTHENTICATION -DCK_ENCRYPTION -DCK_DES \
-DOPENSSL_DES_LIBDES_COMPATIBILITY -DOPENSSL_097" \
LIBS="-L${OPENSSLLIB} \
-lssl -lcrypto -ldes -lncurses -lcrypt -lutil -lm"
-lssl -lcrypto -lncurses -lcrypt -lutil -lm"
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/krbmit ${PREFIX}/bin/kermit

View File

@ -0,0 +1,14 @@
$FreeBSD$
--- ck_crp.c.orig Tue Jun 25 17:53:02 2002
+++ ck_crp.c Tue Mar 4 15:14:45 2003
@@ -396,7 +396,7 @@
des_new_random_key(Block B)
{
int rc=0;
- rc = des_random_key(B);
+ des_random_key(B);
return(rc);
}