pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/net/nagios-plugin-syncrepl
Module Name: pkgsrc
Committed By: dholland
Date: Sun May 22 22:50:42 UTC 2022
Modified Files:
pkgsrc/net/nagios-plugin-syncrepl: distinfo
Added Files:
pkgsrc/net/nagios-plugin-syncrepl/patches: patch-Makefile
Log Message:
net/nagios-plugin-syncrepl: honor CFLAGS and LDFLAGS
May be sufficient to fix the Solaris build as suggested in PR 52050.
To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 pkgsrc/net/nagios-plugin-syncrepl/distinfo
cvs rdiff -u -r0 -r1.1 \
pkgsrc/net/nagios-plugin-syncrepl/patches/patch-Makefile
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/net/nagios-plugin-syncrepl/distinfo
diff -u pkgsrc/net/nagios-plugin-syncrepl/distinfo:1.6 pkgsrc/net/nagios-plugin-syncrepl/distinfo:1.7
--- pkgsrc/net/nagios-plugin-syncrepl/distinfo:1.6 Tue Oct 26 11:06:04 2021
+++ pkgsrc/net/nagios-plugin-syncrepl/distinfo Sun May 22 22:50:42 2022
@@ -1,5 +1,6 @@
-$NetBSD: distinfo,v 1.6 2021/10/26 11:06:04 nia Exp $
+$NetBSD: distinfo,v 1.7 2022/05/22 22:50:42 dholland Exp $
BLAKE2s (check_syncrepl-0.5.tgz) = 1f29f8d61f548de30b44a372fce4f92ed5e1795794e668a8b91b3d61ee940a61
SHA512 (check_syncrepl-0.5.tgz) = c2c108c4d7997401859ff5131bcfd926bdc36681a3bf3371b32538b6e9be4e90eba0681e94c908cbcd150c3949a056f478f855c8ee27681355335628679a7824
Size (check_syncrepl-0.5.tgz) = 2412 bytes
+SHA1 (patch-Makefile) = a1680781768fd082662f389a71ef2bded04b87b6
Added files:
Index: pkgsrc/net/nagios-plugin-syncrepl/patches/patch-Makefile
diff -u /dev/null pkgsrc/net/nagios-plugin-syncrepl/patches/patch-Makefile:1.1
--- /dev/null Sun May 22 22:50:42 2022
+++ pkgsrc/net/nagios-plugin-syncrepl/patches/patch-Makefile Sun May 22 22:50:42 2022
@@ -0,0 +1,19 @@
+$NetBSD: patch-Makefile,v 1.1 2022/05/22 22:50:42 dholland Exp $
+
+Honor pkgsrc CFLAGS, LDFLAGS, and LIBS.
+
+--- Makefile~ 2018-05-20 02:35:50.000000000 +0000
++++ Makefile
+@@ -1,9 +1,9 @@
+-CFLAGS= -DLDAP_DEPRECATED
+-LIBS= -lldap
++CFLAGS+= -DLDAP_DEPRECATED
++LIBS+= -lldap
+ all: check_syncrepl
+
+ check_syncrepl: check_syncrepl.o
+- $(CC) ${LIBS} -o check_syncrepl check_syncrepl.o
++ $(CC) ${LDFLAGS} ${LIBS} -o check_syncrepl check_syncrepl.o
+
+ clean:
+ rm -f *.o *.core check_syncrepl
Home |
Main Index |
Thread Index |
Old Index