summaryrefslogtreecommitdiff
path: root/security/pidentd
diff options
context:
space:
mode:
authorJeremy Lea <reg@FreeBSD.org>2000-04-17 00:19:02 +0000
committerJeremy Lea <reg@FreeBSD.org>2000-04-17 00:19:02 +0000
commitb4455771cced2fe9f134e751fe88dbba7226e694 (patch)
tree39733bef5e1d466d30938b5a47f0b46a7b6890b4 /security/pidentd
parentStandardize all user defined options to the booleans WITH_FOO and (diff)
Standardize all user defined options to the booleans WITH_FOO and
WITHOUT_FOO. Begin the process of reserving these prefixes for user defined options. No comment by: ports
Notes
Notes: svn path=/head/; revision=27680
Diffstat (limited to 'security/pidentd')
-rw-r--r--security/pidentd/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/security/pidentd/Makefile b/security/pidentd/Makefile
index 712fe03d07bd..23f3da8ddadc 100644
--- a/security/pidentd/Makefile
+++ b/security/pidentd/Makefile
@@ -30,13 +30,13 @@ ADD_GDEFS+= -DINET6 -D__ss_family=ss_family -D__ss_len=ss_len
# 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
+#WITH_DES= yes
-.if defined(USE_DES)
+.if defined(WITH_DES)
ADD_GDEFS+= -DINCLUDE_CRYPT
ADD_GLIBS= -ldes
.endif
-.if defined(USE_DES) || ${OSVERSION} >= 400014
+.if defined(WITH_DES) || ${OSVERSION} >= 400014
MAKE_ENV+= ADD_GDEFS="${ADD_GDEFS}" ADD_GLIBS="${ADD_GLIBS}"
.endif