diff options
author | pst <pst@FreeBSD.org> | 1994-10-28 05:23:24 +0800 |
---|---|---|
committer | pst <pst@FreeBSD.org> | 1994-10-28 05:23:24 +0800 |
commit | f4d18d33927a470d3aa0f4fdd2f10d9584356e37 (patch) | |
tree | d477645a29070f97fb9cff313857cc20d493bbbb /net/sup | |
parent | f53993231243f7edef902c2b8bb20af5f0d944d1 (diff) | |
download | freebsd-ports-gnome-f4d18d33927a470d3aa0f4fdd2f10d9584356e37.tar.gz freebsd-ports-gnome-f4d18d33927a470d3aa0f4fdd2f10d9584356e37.tar.zst freebsd-ports-gnome-f4d18d33927a470d3aa0f4fdd2f10d9584356e37.zip |
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.
Diffstat (limited to 'net/sup')
-rw-r--r-- | net/sup/files/patch-aa | 27 |
1 files changed, 27 insertions, 0 deletions
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 |