summaryrefslogtreecommitdiffstats
path: root/plugins/omsnmp
diff options
context:
space:
mode:
authorMichael Biebl <biebl@debian.org>2009-02-06 18:55:05 +0100
committerRainer Gerhards <rgerhards@adiscon.com>2009-02-24 13:09:44 +0100
commit1448e2486e9a2ad6cf6fa6d5ddbef203118b2c9b (patch)
tree5f691102b4d73926bd5b7c7a3b382557cb967ccc /plugins/omsnmp
parent051beeac57de27344503d1d7a47d942eca8ed3f6 (diff)
downloadrsyslog-1448e2486e9a2ad6cf6fa6d5ddbef203118b2c9b.tar.gz
rsyslog-1448e2486e9a2ad6cf6fa6d5ddbef203118b2c9b.tar.xz
rsyslog-1448e2486e9a2ad6cf6fa6d5ddbef203118b2c9b.zip
make all cflags and libs variables uppercase
pkg-config uses uppercase for its _CFLAGS and _LIBS variable names. So we follow suit and convert all _cflags and _libs variables to uppercase for more consistency.
Diffstat (limited to 'plugins/omsnmp')
-rw-r--r--plugins/omsnmp/Makefile.am4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/omsnmp/Makefile.am b/plugins/omsnmp/Makefile.am
index d784faca..f75fb091 100644
--- a/plugins/omsnmp/Makefile.am
+++ b/plugins/omsnmp/Makefile.am
@@ -1,6 +1,6 @@
pkglib_LTLIBRARIES = omsnmp.la
omsnmp_la_SOURCES = omsnmp.c omsnmp.h
-omsnmp_la_CPPFLAGS = -I$(top_srcdir) $(pthreads_cflags) $(rsrt_cflags)
+omsnmp_la_CPPFLAGS = -I$(top_srcdir) $(PTHREADS_CFLAGS) $(RSRT_CFLAGS)
omsnmp_la_LDFLAGS = -module -avoid-version
-omsnmp_la_LIBADD = $(snmp_libs)
+omsnmp_la_LIBADD = $(SNMP_LIBS)