diff options
author | Lorenz Kästle <12514511+RincewindsHat@users.noreply.github.com> | 2023-12-23 14:52:37 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-23 14:52:37 (GMT) |
commit | bad156676894a2755c8b76519a11cdd2037e5cd6 (patch) | |
tree | 945017714ad3068a666f01b55ef416b8f8a7cdc4 /plugins-root | |
parent | b1442d73d21cc2ce14328069d4f8532eb2cf7f83 (diff) | |
parent | 845c7a090f7b1ef14f2473bad4ae97393272d998 (diff) | |
download | monitoring-plugins-bad156676894a2755c8b76519a11cdd2037e5cd6.tar.gz |
Merge pull request #1970 from EricFromCanada/plugins-root-lcrypto
plugins-root: prevent -lcrypto from showing up in Makefile dependencies
Diffstat (limited to 'plugins-root')
-rw-r--r-- | plugins-root/Makefile.am | 6 |
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 | ||
27 | EXTRA_DIST = t pst3.c | 27 | EXTRA_DIST = t pst3.c |
28 | 28 | ||
29 | BASEOBJS = ../plugins/utils.o ../lib/libmonitoringplug.a ../gl/libgnu.a $(LIB_CRYPTO) | 29 | BASEOBJS = ../plugins/utils.o ../lib/libmonitoringplug.a ../gl/libgnu.a |
30 | NETOBJS = ../plugins/netutils.o $(BASEOBJS) $(EXTRA_NETOBJS) | 30 | NETOBJS = ../plugins/netutils.o $(BASEOBJS) $(EXTRA_NETOBJS) |
31 | NETLIBS = $(NETOBJS) $(SOCKETLIBS) | 31 | NETLIBS = $(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 |
83 | check_dhcp_LDADD = @LTLIBINTL@ $(NETLIBS) | 83 | check_dhcp_LDADD = @LTLIBINTL@ $(NETLIBS) $(LIB_CRYPTO) |
84 | check_icmp_LDADD = @LTLIBINTL@ $(NETLIBS) $(SOCKETLIBS) | 84 | check_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 |
87 | pst3_CFLAGS = @PST3CFLAGS@ | 87 | pst3_CFLAGS = @PST3CFLAGS@ |