From cb75b1ef0e029c0157267ba43f4ea1d690e160f3 Mon Sep 17 00:00:00 2001 From: markm Date: Mon, 9 Jul 2001 17:37:52 +0000 Subject: Provide a WANT_INSECURE_OPIE compile-time option, which is useful if you encrypt all traffic routinely, and is also useful for debugging. Also, (properly) set SUID bit on relevant apps - opieinfo and opiepasswd, which need it to mess with /etc/opiekeys. --- usr.bin/opiepasswd/Makefile | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'usr.bin/opiepasswd') diff --git a/usr.bin/opiepasswd/Makefile b/usr.bin/opiepasswd/Makefile index c0bfca2..e7e4942 100644 --- a/usr.bin/opiepasswd/Makefile +++ b/usr.bin/opiepasswd/Makefile @@ -6,9 +6,16 @@ PROG= opiepasswd CFLAGS+=-I${OPIE_DIST} +.if defined(WANT_INSECURE_OPIE) && ${WANT_INSECURE_OPIE} == true +CFLAGS+=-DINSECURE_OVERRIDE +.endif + DPADD= ${LIBOPIE} ${LIBMD} LDADD= -lopie -lmd +BINMODE=4555 +INSTALLFLAGS=-fschg + .PATH: ${OPIE_DIST} .include -- cgit v1.1