pkgsrc-WIP-changes archive

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

Fix test operator (== -> =)



Module Name:	pkgsrc-wip
Committed By:	Juraj Lutter <otis%NetBSD.org@localhost>
Pushed By:	otis
Date:		Tue Aug 11 11:13:41 2020 +0000
Changeset:	98baf3c647c6136e3e558745cafca6a859c593b8

Modified Files:
	zabbix50-agent/distinfo
Added Files:
	zabbix50-agent/patches/patch-configure

Log Message:
Fix test operator (== -> =)

To see a diff of this commit:
https://wip.pkgsrc.org/cgi-bin/gitweb.cgi?p=pkgsrc-wip.git;a=commitdiff;h=98baf3c647c6136e3e558745cafca6a859c593b8

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

diffstat:
 zabbix50-agent/distinfo                |  1 +
 zabbix50-agent/patches/patch-configure | 13 +++++++++++++
 2 files changed, 14 insertions(+)

diffs:
diff --git a/zabbix50-agent/distinfo b/zabbix50-agent/distinfo
index 090b747bf6..55d34ae90b 100644
--- a/zabbix50-agent/distinfo
+++ b/zabbix50-agent/distinfo
@@ -4,4 +4,5 @@ SHA1 (zabbix-5.0.2.tar.gz) = d1ef17c3d4878f8a3a4cffe4796123c0d118123a
 RMD160 (zabbix-5.0.2.tar.gz) = 70a4b471452856be1b6c48f3f9d672c2b611ba62
 SHA512 (zabbix-5.0.2.tar.gz) = 81cf26d67e4e4df388dd6505db6f7451cf2f05aa6ac7b5d043c32eec89053cf133075bbb289cfb5b15f48a3eb94f6462427047777035ab09cc1dfeefba926dd6
 Size (zabbix-5.0.2.tar.gz) = 18823956 bytes
+SHA1 (patch-configure) = 312eddd9d2d6b83aa472214d12bf8729767197ad
 SHA1 (patch-src_zabbix__agent_Makefile.in) = b74b47ffc4b8f16046778cacd9be2b7207d7f549
diff --git a/zabbix50-agent/patches/patch-configure b/zabbix50-agent/patches/patch-configure
new file mode 100644
index 0000000000..568edf2efc
--- /dev/null
+++ b/zabbix50-agent/patches/patch-configure
@@ -0,0 +1,13 @@
+$NetBSD$
+
+--- configure.orig	2020-07-13 07:56:36.000000000 +0000
++++ configure
+@@ -8494,7 +8494,7 @@ fi
+ rm -f core conftest.err conftest.$ac_objext \
+     conftest$ac_exeext conftest.$ac_ext
+ 
+-            if test "$found_mysql_tls" == "yes"; then
++            if test "$found_mysql_tls" = "yes"; then
+ 
+ 	{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for TLS ciphersuites in MySQL library" >&5
+ $as_echo_n "checking for TLS ciphersuites in MySQL library... " >&6; }


Home | Main Index | Thread Index | Old Index