diff options
author | Ryan Coe <bluemrp9@gmail.com> | 2018-12-28 17:21:34 -0800 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@bootlin.com> | 2018-12-30 16:29:13 +0100 |
commit | 4ab484444f30a1323580b8e43913ea2a91887907 (patch) | |
tree | 961ca7757cecda9b77559fb682c816e3408461aa /package/msmtp | |
parent | 354781dd962f5011cd2c9aa9f0ee84150bd28229 (diff) | |
download | buildroot-4ab484444f30a1323580b8e43913ea2a91887907.tar.gz buildroot-4ab484444f30a1323580b8e43913ea2a91887907.zip |
package/msmtp: fix configure with openssl/gnutls
Since the bump of msmtp from 1.6.6 to 1.8.0 in commit
b68ad1b2d0d1c290489e0b4e1afec46b8220a8b9 ("msmtp: bump to version
1.8.0"), the configure option to select the SSL/TLS implementation is
no longer --with-ssl, but --with-tls.
Signed-off-by: Ryan Coe <bluemrp9@gmail.com>
[Thomas: improve commit log]
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Diffstat (limited to 'package/msmtp')
-rw-r--r-- | package/msmtp/msmtp.mk | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/package/msmtp/msmtp.mk b/package/msmtp/msmtp.mk index a495072abf..a26de92ef9 100644 --- a/package/msmtp/msmtp.mk +++ b/package/msmtp/msmtp.mk @@ -41,17 +41,17 @@ MSMTP_CONF_OPTS += --without-libsecret endif ifeq ($(BR2_PACKAGE_OPENSSL),y) -MSMTP_CONF_OPTS += --with-ssl=openssl +MSMTP_CONF_OPTS += --with-tls=openssl MSMTP_DEPENDENCIES += openssl ifeq ($(BR2_STATIC_LIBS),y) # openssl uses zlib, so we need to explicitly link with it when static MSMTP_CONF_ENV += LIBS=-lz endif else ifeq ($(BR2_PACKAGE_GNUTLS),y) -MSMTP_CONF_OPTS += --with-ssl=gnutls +MSMTP_CONF_OPTS += --with-tls=gnutls MSMTP_DEPENDENCIES += gnutls else -MSMTP_CONF_OPTS += --with-ssl=no +MSMTP_CONF_OPTS += --with-tls=no endif $(eval $(autotools-package)) |