diff options
author | Ton Voon <tonvoon@users.sourceforge.net> | 2006-12-06 17:36:13 +0000 |
---|---|---|
committer | Ton Voon <tonvoon@users.sourceforge.net> | 2006-12-06 17:36:13 +0000 |
commit | 899e9f865f331d099300ef920fc7c3b8abc9944f (patch) | |
tree | 2ddf97246708c34bb3ee0622c4bfb12137f3843c /plugins/Makefile.am | |
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
Diffstat (limited to 'plugins/Makefile.am')
-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 12801fa8..a8e896a2 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 datadir = @datadir@ localedir = $(datadir)/locale DEFS = -DLOCALEDIR=\"$(localedir)\" @DEFS@ -LIBS = @LIBINTL@ @LIBS@ @SSLLIBS@ +LIBS = @LIBINTL@ @LIBS@ MATHLIBS = @MATHLIBS@ # This is not portable. Run ". tools/devmode" to get development compile flags @@ -35,7 +35,7 @@ PLUGINHDRS = common.h BASEOBJS = utils.o ../lib/libnagiosplug.a ../lib/libcoreutils.a NETOBJS = netutils.o $(BASEOBJS) $(EXTRA_NETOBJS) -SSLOBJS = sslutils.o +SSLOBJS = sslutils.o @SSLLIBS@ NETLIBS = $(NETOBJS) $(SOCKETLIBS) TESTS_ENVIRONMENT = perl -I $(top_builddir) -I $(top_srcdir) |