mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-15 23:50:44 +00:00
ac3b838e7f
Add "/usr/local/bin" to _PATH_STDPATH (makes scp work inbound, for instance.) Fetch OpenSSH from OpenBSD's src tree. This uses a script and ftp(1). Add strlcpy.c to ssh/lib, so this port should build on 3.X now. Make TCP_WRAPPERS conditional on /usr/include/tcpd.h like the PR, so it should build on older RELEASEs without TCP Wrappers. The PR is still open because I am taking more from it. PR: ports/14653
20 lines
590 B
Plaintext
20 lines
590 B
Plaintext
--- ./lib/Makefile.orig Thu Nov 11 05:32:55 1999
|
|
+++ ./lib/Makefile Thu Nov 11 08:54:34 1999
|
|
@@ -4,7 +4,7 @@
|
|
SRCS= authfd.c authfile.c bufaux.c buffer.c canohost.c channels.c \
|
|
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
|
|
+ tildexpand.c ttymodes.c uidswap.c xmalloc.c strlcpy.c
|
|
|
|
NOPROFILE= yes
|
|
NOPIC= yes
|
|
@@ -13,6 +13,7 @@
|
|
@echo -n
|
|
|
|
.include <bsd.own.mk>
|
|
+.include "../Makefile.inc"
|
|
|
|
.if (${KERBEROS} == "yes")
|
|
CFLAGS+= -DKRB4 -I/usr/include/kerberosIV
|