diff options
author | nia <nia@pkgsrc.org> | 2019-03-02 11:12:38 +0000 |
---|---|---|
committer | nia <nia@pkgsrc.org> | 2019-03-02 11:12:38 +0000 |
commit | de56b550a83e9a091e9b94bbe26a194a429a5fcc (patch) | |
tree | 5498d7dbe2ecab256b71af2aa3da02ffdb2b9184 /chat | |
parent | 7293f6b90192247d5b9a33331f8ae5d967b20775 (diff) | |
download | pkgsrc-de56b550a83e9a091e9b94bbe26a194a429a5fcc.tar.gz |
inspircd: Change default option from openssl to gnutls.
inspircd is GPLv2 and does not have an exception to allow linking against
OpenSSL. The inspircd documentation also describes the gnutls module as
performing better and being preferred in most cases.
Diffstat (limited to 'chat')
-rw-r--r-- | chat/inspircd/Makefile | 3 | ||||
-rw-r--r-- | chat/inspircd/options.mk | 4 |
2 files changed, 4 insertions, 3 deletions
diff --git a/chat/inspircd/Makefile b/chat/inspircd/Makefile index 2f04f1f7d17..ecdb6a36bbb 100644 --- a/chat/inspircd/Makefile +++ b/chat/inspircd/Makefile @@ -1,6 +1,7 @@ -# $NetBSD: Makefile,v 1.61 2019/01/31 14:28:37 nia Exp $ +# $NetBSD: Makefile,v 1.62 2019/03/02 11:12:38 nia Exp $ DISTNAME= inspircd-2.0.27 +PKGREVISION= 1 CATEGORIES= chat MASTER_SITES= ${MASTER_SITE_GITHUB:=inspircd/} GITHUB_TAG= v${PKGVERSION_NOREV} diff --git a/chat/inspircd/options.mk b/chat/inspircd/options.mk index 6f1a3aab3c8..68b234b1a5a 100644 --- a/chat/inspircd/options.mk +++ b/chat/inspircd/options.mk @@ -1,8 +1,8 @@ -# $NetBSD: options.mk,v 1.5 2019/01/30 10:16:47 nia Exp $ +# $NetBSD: options.mk,v 1.6 2019/03/02 11:12:38 nia Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.inspircd PKG_SUPPORTED_OPTIONS= geoip gnutls openssl mysql ldap pcre pgsql sqlite3 -PKG_SUGGESTED_OPTIONS= openssl +PKG_SUGGESTED_OPTIONS= gnutls PLIST_VARS+= geoip gnutls openssl mysql ldap pcre pgsql sqlite3 .include "../../mk/bsd.options.mk" |