aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/su/Makefile
diff options
context:
space:
mode:
authorGarrett Wollman <wollman@FreeBSD.org>1995-10-12 17:25:58 +0000
committerGarrett Wollman <wollman@FreeBSD.org>1995-10-12 17:25:58 +0000
commiteb034ce46a86c3d1e49d216c3f0a8070ddb07c1b (patch)
treee0098b68496d4aa00eb731edbb4c144fa911a0ed /usr.bin/su/Makefile
parenta2029046fd37f119149458a0d85ab5393a41c494 (diff)
downloadsrc-eb034ce46a86c3d1e49d216c3f0a8070ddb07c1b.tar.gz
src-eb034ce46a86c3d1e49d216c3f0a8070ddb07c1b.zip
Make it possible to enable WHEELSU from /etc/make.conf.
Notes
Notes: svn path=/head/; revision=11449
Diffstat (limited to 'usr.bin/su/Makefile')
-rw-r--r--usr.bin/su/Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/usr.bin/su/Makefile b/usr.bin/su/Makefile
index 1d0249def471..0303a5e4561b 100644
--- a/usr.bin/su/Makefile
+++ b/usr.bin/su/Makefile
@@ -3,7 +3,10 @@
PROG= su
SRCS= su.c
-CFLAGS+=-DSKEY
+COPTS+= -DSKEY
+.if defined(WHEELSU)
+COPTS+= -DWHEELSU
+.endif
LDADD= -lskey -lmd -lcrypt
DPADD= ${LIBSKEY} ${LIBMD} ${LIBCRYPT}