c512ae8ac9
ports-based OpenSSH. OpenSSH has been in the base system for more than long enough to justify not having to maintain two separate FreeBSD versions of OpenSSH.
25 lines
728 B
Plaintext
25 lines
728 B
Plaintext
--- lib/Makefile.orig Sat Aug 19 17:34:44 2000
|
|
+++ lib/Makefile Sat Nov 4 16:41:11 2000
|
|
@@ -5,7 +5,12 @@
|
|
cipher.c compat.c compress.c crc32.c deattack.c \
|
|
hostfile.c log.c match.c mpaux.c nchan.c packet.c readpass.c \
|
|
rsa.c tildexpand.c ttymodes.c uidswap.c xmalloc.c atomicio.c \
|
|
- key.c dispatch.c dsa.c kex.c hmac.c uuencode.c util.c
|
|
+ key.c dispatch.c dsa.c kex.c hmac.c uuencode.c util.c \
|
|
+ strlcpy.c strlcat.c
|
|
+
|
|
+.if defined(COMPAT_GETADDRINFO)
|
|
+SRCS+= getaddrinfo.c getnameinfo.c name6.c rcmd.c bindresvport.c
|
|
+.endif
|
|
|
|
NOPROFILE= yes
|
|
NOPIC= yes
|
|
@@ -14,6 +19,7 @@
|
|
@echo -n
|
|
|
|
.include <bsd.own.mk>
|
|
+.include "../Makefile.inc"
|
|
|
|
.if (${KERBEROS} == "yes")
|
|
CFLAGS+= -DKRB4 -I${DESTDIR}/usr/include/kerberosIV
|