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 | Fix build when gnutls support is enabled. (diff) | |
Introduce WITH_CAMELLIA knob to enable camellia ciphers (off by default).
PR: 138721
Submitted by: Ivan Sy Jr <ivan_jr@yahoo.com>
| -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 |
