diff options
author | Peter Wemm <peter@FreeBSD.org> | 1996-11-05 18:23:42 +0000 |
---|---|---|
committer | Peter Wemm <peter@FreeBSD.org> | 1996-11-05 18:23:42 +0000 |
commit | 82e68e552b252a0f50388f1080c465b0f70e5f12 (patch) | |
tree | 987a6f5b52e1820639665b4f17a96cf21bd8ebe2 /security/pidentd | |
parent | 1f1c3ef553ec929e7ba8a2ae77d11460f72a244e (diff) | |
download | ports-82e68e552b252a0f50388f1080c465b0f70e5f12.tar.gz ports-82e68e552b252a0f50388f1080c465b0f70e5f12.zip |
Notes
Diffstat (limited to 'security/pidentd')
-rw-r--r-- | security/pidentd/Makefile | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/security/pidentd/Makefile b/security/pidentd/Makefile index 8887dd09ce9d..8bee31f928d2 100644 --- a/security/pidentd/Makefile +++ b/security/pidentd/Makefile @@ -3,7 +3,7 @@ # Date created: 19 Oct 1994 # Whom: torstenb # -# $Id: Makefile,v 1.15 1996/09/14 23:22:04 torstenb Exp $ +# $Id: Makefile,v 1.16 1996/10/31 00:13:02 ache Exp $ # DISTNAME= pidentd-2.7.1 @@ -16,6 +16,17 @@ MAINTAINER= torstenb@FreeBSD.ORG ALL_TARGET= freebsd MAKE_ENV= REALPREFIX=${PREFIX} +# Uncomment to activate the use of verifiable "cookies". The idea is to be +# able to detect fake "logs" intended to get your innocent users in trouble. +# Naturally, since it uses libdes, you must have the "secure" dist installed. +#USE_DES= true + +.if defined(USE_DES) +ADD_GDEFS= -DINCLUDE_CRYPT +ADD_GLIBS= -ldes +MAKE_ENV+= ADD_GDEFS="${ADD_GDEFS}" ADD_GLIBS="${ADD_GLIBS}" +.endif + .if !defined(NOMANCOMPRESS) post-install: gzip -9nf ${PREFIX}/man/man8/identd.8 |