summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--usr.bin/opieinfo/Makefile6
-rw-r--r--usr.bin/opiekey/Makefile4
-rw-r--r--usr.bin/opiepasswd/Makefile7
3 files changed, 17 insertions, 0 deletions
diff --git a/usr.bin/opieinfo/Makefile b/usr.bin/opieinfo/Makefile
index 182659538685..e0789b80162c 100644
--- a/usr.bin/opieinfo/Makefile
+++ b/usr.bin/opieinfo/Makefile
@@ -6,9 +6,15 @@ PROG= opieinfo
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}
diff --git a/usr.bin/opiekey/Makefile b/usr.bin/opiekey/Makefile
index 116ca7ed03a0..9de68557d4b9 100644
--- a/usr.bin/opiekey/Makefile
+++ b/usr.bin/opiekey/Makefile
@@ -6,6 +6,10 @@ PROG= opiekey
CFLAGS+= -I${OPIE_DIST}
+.if defined(WANT_INSECURE_OPIE) && ${WANT_INSECURE_OPIE} == true
+CFLAGS+=-DINSECURE_OVERRIDE
+.endif
+
DPADD= ${LIBOPIE} ${LIBMD}
LDADD= -lopie -lmd
diff --git a/usr.bin/opiepasswd/Makefile b/usr.bin/opiepasswd/Makefile
index c0bfca269a0e..e7e494266248 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 <bsd.prog.mk>