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:           Tue Feb  4 20:40:18 UTC 2020

Modified Files:
        pkgsrc/chat/ircd-hybrid: options.mk

Log Message:
chat/ircd-hybrid: Adds support for wolfSSL TLS option.


To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 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.6 pkgsrc/chat/ircd-hybrid/options.mk:1.7
--- pkgsrc/chat/ircd-hybrid/options.mk:1.6      Sat Jan 25 23:48:31 2020
+++ pkgsrc/chat/ircd-hybrid/options.mk  Tue Feb  4 20:40:18 2020
@@ -1,9 +1,9 @@
-# $NetBSD: options.mk,v 1.6 2020/01/25 23:48:31 fox Exp $
+# $NetBSD: options.mk,v 1.7 2020/02/04 20:40:18 fox Exp $
 
 PKG_OPTIONS_VAR=       PKG_OPTIONS.ircd-hybrid
 
 PKG_OPTIONS_OPTIONAL_GROUPS=   ssl
-PKG_OPTIONS_GROUP.ssl=         gnutls ssl
+PKG_OPTIONS_GROUP.ssl=         gnutls ssl wolfssl
 
 PKG_SUGGESTED_OPTIONS= ssl
 
@@ -18,6 +18,9 @@ CONFIGURE_ARGS+=      --with-tls=openssl
 .elif !empty(PKG_OPTIONS:Mgnutls)
 .  include "../../security/gnutls/buildlink3.mk"
 CONFIGURE_ARGS+=       --with-tls=gnutls
+.elif !empty(PKG_OPTIONS:Mwolfssl)
+.  include "../../security/wolfssl/buildlink3.mk"
+CONFIGURE_ARGS+=       --with-tls=wolfssl
 .else
 CONFIGURE_ARGS+=       --with-tls=none
 .endif



Home | Main Index | Thread Index | Old Index