summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLorenz Kästle <12514511+RincewindsHat@users.noreply.github.com>2023-12-23 14:52:37 (GMT)
committerGitHub <noreply@github.com>2023-12-23 14:52:37 (GMT)
commitbad156676894a2755c8b76519a11cdd2037e5cd6 (patch)
tree945017714ad3068a666f01b55ef416b8f8a7cdc4
parentb1442d73d21cc2ce14328069d4f8532eb2cf7f83 (diff)
parent845c7a090f7b1ef14f2473bad4ae97393272d998 (diff)
downloadmonitoring-plugins-bad156676894a2755c8b76519a11cdd2037e5cd6.tar.gz
Merge pull request #1970 from EricFromCanada/plugins-root-lcrypto
plugins-root: prevent -lcrypto from showing up in Makefile dependencies
-rw-r--r--plugins-root/Makefile.am6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins-root/Makefile.am b/plugins-root/Makefile.am
index 40aa020..a80229e 100644
--- a/plugins-root/Makefile.am
+++ b/plugins-root/Makefile.am
@@ -26,7 +26,7 @@ EXTRA_PROGRAMS = pst3
26 26
27EXTRA_DIST = t pst3.c 27EXTRA_DIST = t pst3.c
28 28
29BASEOBJS = ../plugins/utils.o ../lib/libmonitoringplug.a ../gl/libgnu.a $(LIB_CRYPTO) 29BASEOBJS = ../plugins/utils.o ../lib/libmonitoringplug.a ../gl/libgnu.a
30NETOBJS = ../plugins/netutils.o $(BASEOBJS) $(EXTRA_NETOBJS) 30NETOBJS = ../plugins/netutils.o $(BASEOBJS) $(EXTRA_NETOBJS)
31NETLIBS = $(NETOBJS) $(SOCKETLIBS) 31NETLIBS = $(NETOBJS) $(SOCKETLIBS)
32 32
@@ -80,8 +80,8 @@ install-exec-local: $(noinst_PROGRAMS)
80 80
81############################################################################## 81##############################################################################
82# the actual targets 82# the actual targets
83check_dhcp_LDADD = @LTLIBINTL@ $(NETLIBS) 83check_dhcp_LDADD = @LTLIBINTL@ $(NETLIBS) $(LIB_CRYPTO)
84check_icmp_LDADD = @LTLIBINTL@ $(NETLIBS) $(SOCKETLIBS) 84check_icmp_LDADD = @LTLIBINTL@ $(NETLIBS) $(SOCKETLIBS) $(LIB_CRYPTO)
85 85
86# -m64 needed at compiler and linker phase 86# -m64 needed at compiler and linker phase
87pst3_CFLAGS = @PST3CFLAGS@ 87pst3_CFLAGS = @PST3CFLAGS@