mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-18 03:46:03 +00:00
152bebfc5c
- Features: Possible use of sftp/sftp-server with older FreeBSD releases. Use a newer version independently from the Base system. Easier to test and fix possible security bugs. - Bugs: build of pam_ssm.so isn't be supported any more Any file named "cookie" can be deleted by this and any older "sshd" with X11 Forwarding.
25 lines
739 B
Plaintext
25 lines
739 B
Plaintext
--- lib/Makefile.orig Tue Apr 3 21:53:30 2001
|
|
+++ lib/Makefile Sat May 26 14:39:03 2001
|
|
@@ -8,7 +8,12 @@
|
|
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 kex.c mac.c uuencode.c misc.c \
|
|
- cli.c rijndael.c ssh-dss.c ssh-rsa.c dh.c kexdh.c kexgex.c
|
|
+ cli.c rijndael.c ssh-dss.c ssh-rsa.c dh.c kexdh.c kexgex.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
|
|
@@ -17,6 +22,7 @@
|
|
@echo -n
|
|
|
|
.include <bsd.own.mk>
|
|
+.include "../Makefile.inc"
|
|
|
|
.if (${KERBEROS:L} == "yes")
|
|
CFLAGS+= -DKRB4 -I${DESTDIR}/usr/include/kerberosIV
|