From d63009650969722ec1a2d719ac4a1641ee0502b5 Mon Sep 17 00:00:00 2001 From: Juan Romero Pardines Date: Tue, 13 May 2003 20:09:09 +0000 Subject: [PATCH] Per discussion with Lubomir Sedlacik, Dovecot will use OpenSSL by Default, if DOVECOT_USE_GNUTLS is specified GnuTLS will be used. --- dovecot/Makefile | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/dovecot/Makefile b/dovecot/Makefile index eb0328d9fa..22f10f37c3 100644 --- a/dovecot/Makefile +++ b/dovecot/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.7 2003/05/13 05:29:14 xtraeme Exp $ +# $NetBSD: Makefile,v 1.8 2003/05/13 20:09:09 xtraeme Exp $ # DISTNAME= dovecot-0.99.9.1 @@ -30,14 +30,14 @@ CONFIGURE_ARGS+= --with-ldap .include "../../databases/openldap/buildlink2.mk" .endif -DOVECOT_USE_OPENSSL?= NO +DOVECOT_USE_GNUTLS?= NO -.if !empty(DOVECOT_USE_OPENSSL:M[Yy][Ee][Ss]) -CONFIGURE_ARGS+= --enable-ssl=openssl -.include "../../security/openssl/buildlink2.mk" -.else -CONFIGURE_ARGS+= --enable-ssl=gnutls +.if !empty(DOVECOT_USE_GNUTLS:M[Yy][Ee][Ss]) +CONFIGURE_ARGS+= --enable-ssl=gnutls .include "../../wip/gnutls/buildlink2.mk" +.else +CONFIGURE_ARGS+= --enable-ssl=openssl +.include "../../security/openssl/buildlink2.mk" .endif DOVECOT_USE_PGSQL?= NO