diff options
author | novel <novel@FreeBSD.org> | 2009-11-21 15:33:19 +0800 |
---|---|---|
committer | novel <novel@FreeBSD.org> | 2009-11-21 15:33:19 +0800 |
commit | 70d863b3463dba96d5580f654eaba4ef86064d0c (patch) | |
tree | a2a487989a2d723e7aca4463f037367413acbe1c /security/gnutls | |
parent | 3fac369804ea0fadc7642cdc535570df11012d68 (diff) | |
download | freebsd-ports-gnome-70d863b3463dba96d5580f654eaba4ef86064d0c.tar.gz freebsd-ports-gnome-70d863b3463dba96d5580f654eaba4ef86064d0c.tar.zst freebsd-ports-gnome-70d863b3463dba96d5580f654eaba4ef86064d0c.zip |
Introduce WITH_CAMELLIA knob to enable camellia ciphers (off by default).
PR: 138721
Submitted by: Ivan Sy Jr <ivan_jr@yahoo.com>
Diffstat (limited to 'security/gnutls')
-rw-r--r-- | security/gnutls/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/security/gnutls/Makefile b/security/gnutls/Makefile index 9bf5c36a4552..3711dff8d150 100644 --- a/security/gnutls/Makefile +++ b/security/gnutls/Makefile @@ -63,6 +63,10 @@ USE_GETTEXT= yes PLIST_SUB+= NLS="" .endif +.if defined(WITH_CAMELLIA) +CONFIGURE_ARGS+= --enable-camellia +.endif + .if !defined(NOPORTDOCS) PORTDOCS= AUTHORS NEWS README THANKS .endif |