Remove the WANT_INSECURE_OPIE option - it is now a default. This is not

nearly as ominous as it sounds, and it allows OPIE to be used over SSH
and on xterms.

Requested by:	ache
Discussed on:	-security
This commit is contained in:
Mark Murray 2001-08-12 18:47:56 +00:00
parent 9ab4f41231
commit 37ee76af52
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=81557
6 changed files with 0 additions and 23 deletions

View File

@ -112,12 +112,6 @@ BDECFLAGS= -W -Wall -ansi -pedantic -Wbad-function-cast -Wcast-align \
#
#WANT_OPENSSL_MANPAGES= true
#
# To build usr.bin/opie* and libopie with options to make it accept
# being operatred over insecure TTY's. Mainly of use during debugging,
# This is also of use if all traffic is routinely encrypted.
#
#WANT_INSECURE_OPIE= true
#
# To build sys/modules when building the world (our old way of doing things)
#MODULES_WITH_WORLD=true # do not build modules when building kernel
#

View File

@ -24,10 +24,8 @@ INCS= ${OPIE_DIST}/opie.h
CFLAGS+=-I${.CURDIR} -I${OPIE_DIST} -I${DIST_DIR} \
-DKEY_FILE=${KEYFILE}
.if defined(WANT_INSECURE_OPIE) && ${WANT_INSECURE_OPIE} == true
ACCESSFILE?= \"/etc/opieaccess\"
CFLAGS+= -DINSECURE_OVERRIDE -DPATH_ACCESS_FILE=${ACCESSFILE}
.endif
LDADD+= -lmd
DPADD+= ${LIBMD}

View File

@ -112,12 +112,6 @@ BDECFLAGS= -W -Wall -ansi -pedantic -Wbad-function-cast -Wcast-align \
#
#WANT_OPENSSL_MANPAGES= true
#
# To build usr.bin/opie* and libopie with options to make it accept
# being operatred over insecure TTY's. Mainly of use during debugging,
# This is also of use if all traffic is routinely encrypted.
#
#WANT_INSECURE_OPIE= true
#
# To build sys/modules when building the world (our old way of doing things)
#MODULES_WITH_WORLD=true # do not build modules when building kernel
#

View File

@ -5,10 +5,7 @@ OPIE_DIST?= ${.CURDIR}/../../contrib/opie
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

View File

@ -5,10 +5,7 @@ OPIE_DIST?= ${.CURDIR}/../../contrib/opie
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

View File

@ -5,10 +5,7 @@ OPIE_DIST?= ${.CURDIR}/../../contrib/opie
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