diff options
author | sat <sat@FreeBSD.org> | 2007-05-03 02:47:16 +0800 |
---|---|---|
committer | sat <sat@FreeBSD.org> | 2007-05-03 02:47:16 +0800 |
commit | 1a1067ebcb15881ee5b9a3922b31869c440b664e (patch) | |
tree | f037f93ae72268ff406d1fbd2f31bf8a4a3ed102 /security/sudo | |
parent | e2d358a6f324910ca07d6d223285a1f2efcfe7b2 (diff) | |
download | freebsd-ports-gnome-1a1067ebcb15881ee5b9a3922b31869c440b664e.tar.gz freebsd-ports-gnome-1a1067ebcb15881ee5b9a3922b31869c440b664e.tar.zst freebsd-ports-gnome-1a1067ebcb15881ee5b9a3922b31869c440b664e.zip |
- Add an option to enable insults
Submitted by: Dan Casey <dcasey@debtresolve.com>
Diffstat (limited to 'security/sudo')
-rw-r--r-- | security/sudo/Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/security/sudo/Makefile b/security/sudo/Makefile index 6060e3741426..6c98bab21744 100644 --- a/security/sudo/Makefile +++ b/security/sudo/Makefile @@ -37,10 +37,16 @@ CONFIGURE_ARGS= --sysconfdir=${PREFIX}/etc \ OPTIONS= LDAP "With LDAP support" off \ OPIE "With OPIE support" off \ + INSULTS "With all insults" off \ SHELL_SETS_HOME "Set HOME env to target user in shell mode" off .include <bsd.port.pre.mk> +.if defined(WITH_INSULTS) +CONFIGURE_ARGS+=--with-insults +CONFIGURE_ARGS+=--with-all-insults +.endif + .if defined(WITH_LDAP) USE_OPENLDAP=yes CONFIGURE_ARGS+=--with-ldap=${PREFIX} |