svn commit: r484401 - head/mail/msmtp

Roman Bogorodskiy novel at FreeBSD.org
Wed Nov 7 15:47:16 UTC 2018


Author: novel
Date: Wed Nov  7 15:47:14 2018
New Revision: 484401
URL: https://svnweb.freebsd.org/changeset/ports/484401

Log:
  mail/msmtp: use proper configure argument for tls
  
  Correct option is '--with-tls=' now, not '--with-ssl='.
  
  PR:		233041
  Submitted by:	Igor Zabelin

Modified:
  head/mail/msmtp/Makefile

Modified: head/mail/msmtp/Makefile
==============================================================================
--- head/mail/msmtp/Makefile	Wed Nov  7 15:09:20 2018	(r484400)
+++ head/mail/msmtp/Makefile	Wed Nov  7 15:47:14 2018	(r484401)
@@ -3,6 +3,7 @@
 
 PORTNAME=	msmtp
 PORTVERSION=	1.8.0
+PORTREVISION=	1
 CATEGORIES=	mail ipv6
 MASTER_SITES=	https://marlam.de/msmtp/releases/
 
@@ -40,10 +41,10 @@ MSMTPQ_RUN_DEPENDS=	bash:shells/bash
 NLS_CONFIGURE_ENABLE=	nls
 NLS_USES=		gettext
 
-GNUTLS_CONFIGURE_ON=	--with-ssl=gnutls
+GNUTLS_CONFIGURE_ON=	--with-tls=gnutls
 GNUTLS_LIB_DEPENDS=	libgnutls.so:security/gnutls
 OPENSSL_USES=		ssl
-OPENSSL_CONFIGURE_ON=	--with-ssl=openssl
+OPENSSL_CONFIGURE_ON=	--with-tls=openssl
 OPENSSL_CONFIGURE_ENV=	libssl_CFLAGS="-I${OPENSSLINC}" \
 			libssl_LIBS="-L${OPENSSLLIB} -lssl -lcrypto"
 CERTSFILE=		${LOCALBASE}/share/certs/ca-root-nss.crt
@@ -53,7 +54,7 @@ CERTSFILE=		${LOCALBASE}/share/certs/ca-root-nss.crt
 .if ${PORT_OPTIONS:MGNUTLS} || ${PORT_OPTIONS:MOPENSSL}
 RUN_DEPENDS+=	${CERTSFILE}:security/ca_root_nss
 .else
-CONFIGURE_ARGS+=	--with-ssl=no
+CONFIGURE_ARGS+=	--with-tls=no
 .endif
 
 post-extract:


More information about the svn-ports-all mailing list