diff options
author | Ton Voon <tonvoon@users.sourceforge.net> | 2006-12-06 17:36:13 (GMT) |
---|---|---|
committer | Ton Voon <tonvoon@users.sourceforge.net> | 2006-12-06 17:36:13 (GMT) |
commit | 899e9f865f331d099300ef920fc7c3b8abc9944f (patch) | |
tree | 2ddf97246708c34bb3ee0622c4bfb12137f3843c | |
parent | 796dcbf99e5ccbbb34017a79f99c43032a79d3f6 (diff) | |
download | monitoring-plugins-899e9f865f331d099300ef920fc7c3b8abc9944f.tar.gz |
Only include -lssl for plugins that require it
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1544 f882894a-f735-0410-b71e-b25c423dba1c
-rw-r--r-- | plugins/Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/Makefile.am b/plugins/Makefile.am index 12801fa..a8e896a 100644 --- a/plugins/Makefile.am +++ b/plugins/Makefile.am | |||
@@ -7,7 +7,7 @@ INCLUDES = -I.. -I$(top_srcdir)/lib -I$(top_srcdir)/intl @LDAPINCLUDE@ @PGINCLUD | |||
7 | datadir = @datadir@ | 7 | datadir = @datadir@ |
8 | localedir = $(datadir)/locale | 8 | localedir = $(datadir)/locale |
9 | DEFS = -DLOCALEDIR=\"$(localedir)\" @DEFS@ | 9 | DEFS = -DLOCALEDIR=\"$(localedir)\" @DEFS@ |
10 | LIBS = @LIBINTL@ @LIBS@ @SSLLIBS@ | 10 | LIBS = @LIBINTL@ @LIBS@ |
11 | MATHLIBS = @MATHLIBS@ | 11 | MATHLIBS = @MATHLIBS@ |
12 | 12 | ||
13 | # This is not portable. Run ". tools/devmode" to get development compile flags | 13 | # This is not portable. Run ". tools/devmode" to get development compile flags |
@@ -35,7 +35,7 @@ PLUGINHDRS = common.h | |||
35 | 35 | ||
36 | BASEOBJS = utils.o ../lib/libnagiosplug.a ../lib/libcoreutils.a | 36 | BASEOBJS = utils.o ../lib/libnagiosplug.a ../lib/libcoreutils.a |
37 | NETOBJS = netutils.o $(BASEOBJS) $(EXTRA_NETOBJS) | 37 | NETOBJS = netutils.o $(BASEOBJS) $(EXTRA_NETOBJS) |
38 | SSLOBJS = sslutils.o | 38 | SSLOBJS = sslutils.o @SSLLIBS@ |
39 | NETLIBS = $(NETOBJS) $(SOCKETLIBS) | 39 | NETLIBS = $(NETOBJS) $(SOCKETLIBS) |
40 | 40 | ||
41 | TESTS_ENVIRONMENT = perl -I $(top_builddir) -I $(top_srcdir) | 41 | TESTS_ENVIRONMENT = perl -I $(top_builddir) -I $(top_srcdir) |