mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-01 22:05:08 +00:00
f0ca59b2b5
obsoleting a couple patches (it's the same code, though, except for additions). This also brings in KNFization of everything (please hold the cheering down :) and made me reroll all my patches. My patches have been almost entirely rewritten. The places are the same, but the code's rewritten. It fits with the style (KNF) now, and looks better. I've also added strlcat.c to the build, which, just like strlcpy.c, is necessary for compatibility with older libcs. After strlcat() snuck into the OpenSSH code recently, this would prevent OpenSSH from building on (e.g.) FreeBSD 3.2. Adding it to ssh/lib/ makes it work yet again :)
29 lines
720 B
Plaintext
29 lines
720 B
Plaintext
--- /usr/ports/distfiles/OpenSSH-1.2/src/usr.bin/ssh/sshd/Makefile Mon Oct 25 16:27:27 1999
|
|
+++ ./sshd/Makefile Tue Nov 23 19:29:25 1999
|
|
@@ -3,13 +3,14 @@
|
|
PROG= sshd
|
|
BINOWN= root
|
|
BINMODE=555
|
|
-BINDIR= /usr/sbin
|
|
-MAN= sshd.8
|
|
+BINDIR= /sbin
|
|
+MAN8= sshd.8
|
|
|
|
SRCS= sshd.c auth-rhosts.c auth-passwd.c auth-rsa.c auth-rh-rsa.c \
|
|
pty.c log-server.c login.c servconf.c serverloop.c
|
|
|
|
.include <bsd.own.mk> # for KERBEROS and AFS
|
|
+.include "../Makefile.inc"
|
|
|
|
.if (${KERBEROS} == "yes")
|
|
CFLAGS+= -DKRB4 -I/usr/include/kerberosIV
|
|
@@ -29,7 +30,7 @@
|
|
|
|
.include <bsd.prog.mk>
|
|
|
|
-LDADD+= -lcrypto -lutil -lz
|
|
+LDADD+= ${CRYPTOLIBS} -lcrypt -lutil -lz
|
|
DPADD+= ${LIBCRYPTO} ${LIBUTIL} ${LIBZ}
|
|
|
|
.if (${TCP_WRAPPERS} == "yes")
|