From 31260ac9d0fa92baa716f392900eb73bbe01455f Mon Sep 17 00:00:00 2001 From: Paul Traina Date: Thu, 27 Oct 1994 21:23:24 +0000 Subject: upfilesrv no longer linked due to missing -lcrypt 2.0-current distinguishes between crypt() and cipher() technology and in this case, the crypt() call was for password authentication on the file server. If building an encrypting sup, link with -lcipher -lcrypt, if building a normal sup, link with -lcrypt. --- net/sup/files/patch-aa | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 net/sup/files/patch-aa (limited to 'net/sup/files/patch-aa') diff --git a/net/sup/files/patch-aa b/net/sup/files/patch-aa new file mode 100644 index 000000000000..965dceee78d0 --- /dev/null +++ b/net/sup/files/patch-aa @@ -0,0 +1,27 @@ +This patch is required for FreeBSD 2.0 because password crypt vs cipher +technology has now been split into different libraries. In this case, +USE_CRYPT really means "use cipher." + +*** Makefile Thu Oct 27 14:12:41 1994 +--- Makefile Thu Oct 27 14:14:46 1994 +*************** +*** 76,84 **** + .endif + + .if defined(USE_CRYPT) +! NETBSD_LIBS = -lcrypt -lutil + .else +! NETBSD_LIBS = -lutil + .endif + CMUCS_LIBS = -lsys + OSF_LIBS = -lbsd +--- 76,84 ---- + .endif + + .if defined(USE_CRYPT) +! NETBSD_LIBS = -lcipher -lcrypt -lutil + .else +! NETBSD_LIBS = -lcrypt -lutil + .endif + CMUCS_LIBS = -lsys + OSF_LIBS = -lbsd -- cgit v1.2.3