blob: c98b44bf17c092714f716a326fe7ab340b879fb3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# @(#)Makefile 8.2 (Berkeley) 4/22/94
# $FreeBSD$
PROG= nologin
MAN= nologin.5 nologin.8
# It is important that nologin be statically linked for security
# reasons. A dynamic non-setuid binary can be linked against a trojan
# libc by setting LD_LIBRARY_PATH appropriately. Both sshd(8) and
# login(1) make it possible to log in with an unsanitized environment,
# rendering a dynamic nologin binary virtually useless.
NOSHARED= YES
# Logging to syslog increases the size of the statically linked
# binary by over 100K. Provide an option for disabling this on
# systems where conserving space on the root device is critical.
.ifdef NO_NOLOGIN_LOG
CFLAGS+= -DNO_NOLOGIN_LOG
.endif
.include <bsd.prog.mk>
|