diff options
author | Roman Bogorodskiy <novel@FreeBSD.org> | 2009-11-21 07:33:19 +0000 |
---|---|---|
committer | Roman Bogorodskiy <novel@FreeBSD.org> | 2009-11-21 07:33:19 +0000 |
commit | cbfda45aa269b8e8ab0470fce934f82b1b51b11b (patch) | |
tree | c682317b407a2ca15f2923a317ab280054b27c32 | |
parent | 262cd89b85a44cca66dbecf2a212614a759735d9 (diff) | |
download | ports-cbfda45aa269b8e8ab0470fce934f82b1b51b11b.tar.gz ports-cbfda45aa269b8e8ab0470fce934f82b1b51b11b.zip |
Introduce WITH_CAMELLIA knob to enable camellia ciphers (off by default).
PR: 138721
Submitted by: Ivan Sy Jr <ivan_jr@yahoo.com>
Notes
Notes:
svn path=/head/; revision=244582
-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 |