1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-04 22:33:27 +00:00
freebsd-ports/security/openssh/files/patch-ab
Brian Feldman db6ff5ab61 Enable TCP wrapper support (conditionalized to turn off if tcpd.h is
nonexistant).  Also, add the Makefile hooks for AFS, Kerberos, and S/Key.
1999-11-15 06:18:46 +00:00

20 lines
519 B
Plaintext

--- Makefile.inc.orig Tue Oct 26 03:31:00 1999
+++ Makefile.inc Tue Nov 9 06:45:18 1999
@@ -1,11 +1,8 @@
-CFLAGS+= -I${.CURDIR}/..
+CFLAGS+= -I${.CURDIR}/.. -I${PREFIX}/include
-.include <bsd.obj.mk>
-
-.if exists(${.CURDIR}/../lib/${__objdir})
-LDADD+= -L${.CURDIR}/../lib/${__objdir} -lssh
-DPADD+= ${.CURDIR}/../lib/${__objdir}/libssh.a
-.else
+AFS?= no
+KERBEROS?= no
+SKEY?= no
+TCP_WRAPPERS?= yes
LDADD+= -L${.CURDIR}/../lib -lssh
DPADD+= ${.CURDIR}/../lib/libssh.a
-.endif