mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-04 22:33:27 +00:00
9df24a1938
- add 'ipv6' on CATEGORIES - use ${OSVERSION} instead of ${USE_INET6} for checking getaddrinfo() existence. - fix broken ${ECHO_MSG} - avoid duplicate copying rcmd.c
25 lines
752 B
Plaintext
25 lines
752 B
Plaintext
--- lib/Makefile.orig Sun Jan 16 07:10:10 2000
|
|
+++ lib/Makefile Tue Jan 18 14:56:00 2000
|
|
@@ -4,7 +4,12 @@
|
|
SRCS= authfd.c authfile.c bufaux.c buffer.c canohost.c channels.c \
|
|
cipher.c compat.c compress.c crc32.c deattack.c fingerprint.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
|
|
+ rsa.c tildexpand.c ttymodes.c uidswap.c xmalloc.c atomicio.c \
|
|
+ strlcat.c strlcpy.c
|
|
+
|
|
+.if defined(COMPAT_GETADDRINFO)
|
|
+SRCS+= getaddrinfo.c getnameinfo.c name6.c rcmd.c bindresvport.c
|
|
+.endif
|
|
|
|
NOPROFILE= yes
|
|
NOPIC= yes
|
|
@@ -13,6 +18,7 @@
|
|
@echo -n
|
|
|
|
.include <bsd.own.mk>
|
|
+.include "../Makefile.inc"
|
|
|
|
.if (${KERBEROS} == "yes")
|
|
CFLAGS+= -DKRB4 -I/usr/include/kerberosIV
|