diff options
author | reg <reg@FreeBSD.org> | 2000-04-17 08:19:02 +0800 |
---|---|---|
committer | reg <reg@FreeBSD.org> | 2000-04-17 08:19:02 +0800 |
commit | d22cbcc0186bfcde72d3058c3d06d1032bb7157e (patch) | |
tree | efb5227e2fc359da16edf2ca8a5ca4744a25bc3e /security/pidentd | |
parent | 8b766534122d71052c9f8e5a0752944edf0450f8 (diff) | |
download | freebsd-ports-gnome-d22cbcc0186bfcde72d3058c3d06d1032bb7157e.tar.gz freebsd-ports-gnome-d22cbcc0186bfcde72d3058c3d06d1032bb7157e.tar.zst freebsd-ports-gnome-d22cbcc0186bfcde72d3058c3d06d1032bb7157e.zip |
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
Diffstat (limited to 'security/pidentd')
-rw-r--r-- | security/pidentd/Makefile | 6 |
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 |