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:   nia
Date:           Wed Aug 19 17:53:15 UTC 2020

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

Log Message:
ircd-hybrid: Rename "ssl" package option to "openssl"

Since there is a choice of SSL library, this makes what the option does
more obvious.

The legacy options framework is used for compatibility.


To generate a diff of this commit:
cvs rdiff -u -r1.7 -r1.8 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.7 pkgsrc/chat/ircd-hybrid/options.mk:1.8
--- pkgsrc/chat/ircd-hybrid/options.mk:1.7      Tue Feb  4 20:40:18 2020
+++ pkgsrc/chat/ircd-hybrid/options.mk  Wed Aug 19 17:53:15 2020
@@ -1,18 +1,20 @@
-# $NetBSD: options.mk,v 1.7 2020/02/04 20:40:18 fox Exp $
+# $NetBSD: options.mk,v 1.8 2020/08/19 17:53:15 nia Exp $
 
 PKG_OPTIONS_VAR=       PKG_OPTIONS.ircd-hybrid
 
 PKG_OPTIONS_OPTIONAL_GROUPS=   ssl
-PKG_OPTIONS_GROUP.ssl=         gnutls ssl wolfssl
+PKG_OPTIONS_GROUP.ssl=         gnutls openssl wolfssl
 
-PKG_SUGGESTED_OPTIONS= ssl
+PKG_OPTIONS_LEGACY_OPTS+=      ssl:openssl
+
+PKG_SUGGESTED_OPTIONS= openssl
 
 .include "../../mk/bsd.options.mk"
 
 ###
 ### SSL support
 ###
-.if !empty(PKG_OPTIONS:Mssl)
+.if !empty(PKG_OPTIONS:Mopenssl)
 .  include "../../security/openssl/buildlink3.mk"
 CONFIGURE_ARGS+=       --with-tls=openssl
 .elif !empty(PKG_OPTIONS:Mgnutls)



Home | Main Index | Thread Index | Old Index