1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-05 22:43:24 +00:00
freebsd-ports/security/openssh/files/patch-ap
Brian Feldman 406efcfe3b Say hello to OpenSSH! It's more secure, has a better license, and
is actively maintained by members of the OpenBSD project.
1999-11-08 06:20:54 +00:00

29 lines
671 B
Plaintext

diff -ru /home/green/ssh/ssh/Makefile ./ssh/Makefile
--- /home/green/ssh/ssh/Makefile Tue Oct 26 03:31:00 1999
+++ ./ssh/Makefile Mon Nov 8 00:13:55 1999
@@ -10,14 +10,15 @@
BINMODE?=4555
.endif
-BINDIR= /usr/bin
-MAN= ssh.1
+BINDIR= /bin
+MAN1= ssh.1
LINKS= ${BINDIR}/ssh ${BINDIR}/slogin
MLINKS= ssh.1 slogin.1
SRCS= ssh.c sshconnect.c log-client.c readconf.c clientloop.c
.include <bsd.own.mk> # for AFS
+.include "../Makefile.inc"
.if (${KERBEROS} == "yes")
CFLAGS+= -DKRB4 -I/usr/include/kerberosIV
@@ -32,5 +33,5 @@
.include <bsd.prog.mk>
-LDADD+= -lutil -lz -lcrypto
+LDADD+= -lutil -lz ${CRYPTOLIBS}
DPADD+= ${LIBCRYPTO} ${LIBUTIL} ${LIBZ}