6f1214d918
not allocate a pty(4) so it is not suitable at all for interactive PAM modules. rlogind calls login(1) which is already PAM enabled. Approved by: markm
19 lines
255 B
Makefile
19 lines
255 B
Makefile
# From: @(#)Makefile 8.1 (Berkeley) 6/4/93
|
|
# $FreeBSD$
|
|
|
|
PROG= rshd
|
|
SRCS= rshd.c
|
|
MAN8= rshd.8
|
|
|
|
#CFLAGS+= -DCRYPT
|
|
|
|
# For login_cap handling
|
|
CFLAGS+=-DLOGIN_CAP -Wall
|
|
DPADD+= ${LIBUTIL}
|
|
LDADD+= -lutil
|
|
|
|
# IPv6 support
|
|
CFLAGS+= -DINET6
|
|
|
|
.include <bsd.prog.mk>
|