From: Ton Voon Date: Wed, 6 Dec 2006 17:36:13 +0000 (+0000) Subject: Only include -lssl for plugins that require it X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=899e9f865f331d099300ef920fc7c3b8abc9944f;p=nagiosplug.git 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 --- 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 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)