Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/chat/ircd-hybrid ircd-hybrid: Rename "ssl" package opt...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/83e43f3fee74
branches:  trunk
changeset: 437271:83e43f3fee74
user:      nia <nia%pkgsrc.org@localhost>
date:      Wed Aug 19 17:53:15 2020 +0000

description:
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.

diffstat:

 chat/ircd-hybrid/options.mk |  10 ++++++----
 1 files changed, 6 insertions(+), 4 deletions(-)

diffs (28 lines):

diff -r 1ef6d50289aa -r 83e43f3fee74 chat/ircd-hybrid/options.mk
--- a/chat/ircd-hybrid/options.mk       Wed Aug 19 16:53:37 2020 +0000
+++ b/chat/ircd-hybrid/options.mk       Wed Aug 19 17:53:15 2020 +0000
@@ -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