mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-05 22:43:24 +00:00
31260ac9d0
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.
28 lines
624 B
Plaintext
28 lines
624 B
Plaintext
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
|