diff options
author | Ton Voon <tonvoon@users.sourceforge.net> | 2008-03-14 15:44:27 (GMT) |
---|---|---|
committer | Ton Voon <tonvoon@users.sourceforge.net> | 2008-03-14 15:44:27 (GMT) |
commit | 9188225da4af5d09a59590a563b5516879b81579 (patch) | |
tree | 342e1c562abe5d8df144defb483e1111258358f0 /plugins | |
parent | 2f4d1e04488c6ae6342c38f2080a726f28d43b47 (diff) | |
download | monitoring-plugins-9188225da4af5d09a59590a563b5516879b81579.tar.gz |
Fixed 64 bit pst3 when tries to link to gettext. Gettext linked
dynamically, if necessary
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1941 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/Makefile.am | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/plugins/Makefile.am b/plugins/Makefile.am index 30080ae..67c49ca 100644 --- a/plugins/Makefile.am +++ b/plugins/Makefile.am | |||
@@ -4,10 +4,11 @@ VPATH = $(top_srcdir) $(top_srcdir)/lib $(top_srcdir)/plugins $(top_srcdir)/plug | |||
4 | 4 | ||
5 | INCLUDES = -I.. -I$(top_srcdir)/lib -I$(top_srcdir)/gl -I$(top_srcdir)/intl @LDAPINCLUDE@ @PGINCLUDE@ @SSLINCLUDE@ | 5 | INCLUDES = -I.. -I$(top_srcdir)/lib -I$(top_srcdir)/gl -I$(top_srcdir)/intl @LDAPINCLUDE@ @PGINCLUDE@ @SSLINCLUDE@ |
6 | 6 | ||
7 | datadir = @datadir@ | ||
8 | localedir = $(datadir)/locale | 7 | localedir = $(datadir)/locale |
8 | # gettext docs say to use AM_CPPFLAGS, but per module_CPPFLAGS override this | ||
9 | DEFS = -DLOCALEDIR=\"$(localedir)\" @DEFS@ | 9 | DEFS = -DLOCALEDIR=\"$(localedir)\" @DEFS@ |
10 | LIBS = @LIBINTL@ @LIBS@ | 10 | # gettext docs say to use LDADD, but per module_LDADD override |
11 | LIBS = @LTLIBINTL@ @LIBS@ | ||
11 | MATHLIBS = @MATHLIBS@ | 12 | MATHLIBS = @MATHLIBS@ |
12 | 13 | ||
13 | # This is not portable. Run ". tools/devmode" to get development compile flags | 14 | # This is not portable. Run ". tools/devmode" to get development compile flags |