pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/chat/ircd-hybrid
Module Name: pkgsrc
Committed By: fox
Date: Sat Jan 25 23:48:31 UTC 2020
Modified Files:
pkgsrc/chat/ircd-hybrid: options.mk
Log Message:
chat/ircd-hybrid: Adds option for supporting GnuTLS.
Thanks to leot@ for reviewing.
To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 pkgsrc/chat/ircd-hybrid/options.mk
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/chat/ircd-hybrid/options.mk
diff -u pkgsrc/chat/ircd-hybrid/options.mk:1.5 pkgsrc/chat/ircd-hybrid/options.mk:1.6
--- pkgsrc/chat/ircd-hybrid/options.mk:1.5 Thu Jan 23 10:06:22 2020
+++ pkgsrc/chat/ircd-hybrid/options.mk Sat Jan 25 23:48:31 2020
@@ -1,17 +1,23 @@
-# $NetBSD: options.mk,v 1.5 2020/01/23 10:06:22 fox Exp $
+# $NetBSD: options.mk,v 1.6 2020/01/25 23:48:31 fox Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.ircd-hybrid
-PKG_SUPPORTED_OPTIONS= ssl
+
+PKG_OPTIONS_OPTIONAL_GROUPS= ssl
+PKG_OPTIONS_GROUP.ssl= gnutls ssl
+
PKG_SUGGESTED_OPTIONS= ssl
.include "../../mk/bsd.options.mk"
###
-### Enable OpenSSL support
+### SSL support
###
.if !empty(PKG_OPTIONS:Mssl)
-.include "../../security/openssl/buildlink3.mk"
+. include "../../security/openssl/buildlink3.mk"
CONFIGURE_ARGS+= --with-tls=openssl
+.elif !empty(PKG_OPTIONS:Mgnutls)
+. include "../../security/gnutls/buildlink3.mk"
+CONFIGURE_ARGS+= --with-tls=gnutls
.else
CONFIGURE_ARGS+= --with-tls=none
.endif
Home |
Main Index |
Thread Index |
Old Index