diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2008-04-02 08:05:31 +0000 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2008-04-02 08:05:31 +0000 |
commit | 35dc817c008cd54175cd2d6c747119a7cf1922c1 (patch) | |
tree | 51c71fd31fe5a4c3be901dc30e2c721fbc324b40 /plugins | |
parent | 565c2b5cd87cd31781abf2116edef48afecdf9d4 (diff) | |
download | rsyslog-35dc817c008cd54175cd2d6c747119a7cf1922c1.tar.gz rsyslog-35dc817c008cd54175cd2d6c747119a7cf1922c1.tar.xz rsyslog-35dc817c008cd54175cd2d6c747119a7cf1922c1.zip |
added librelp check via PKG_CHECK thanks to Michael Biebl's patch
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/imrelp/Makefile.am | 4 | ||||
-rw-r--r-- | plugins/omrelp/Makefile.am | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/plugins/imrelp/Makefile.am b/plugins/imrelp/Makefile.am index 167065b0..53c9322c 100644 --- a/plugins/imrelp/Makefile.am +++ b/plugins/imrelp/Makefile.am @@ -1,6 +1,6 @@ pkglib_LTLIBRARIES = imrelp.la imrelp_la_SOURCES = imrelp.c -imrelp_la_CPPFLAGS = -I$(top_srcdir) $(pthreads_cflags) $(relp_cflags) +imrelp_la_CPPFLAGS = -I$(top_srcdir) $(pthreads_cflags) $(RELP_CFLAGS) imrelp_la_LDFLAGS = -module -avoid-version -imrelp_la_LIBADD = $(relp_libs) +imrelp_la_LIBADD = $(RELP_LIBS) diff --git a/plugins/omrelp/Makefile.am b/plugins/omrelp/Makefile.am index edec5de9..dfc2111f 100644 --- a/plugins/omrelp/Makefile.am +++ b/plugins/omrelp/Makefile.am @@ -1,6 +1,6 @@ pkglib_LTLIBRARIES = omrelp.la omrelp_la_SOURCES = omrelp.c -omrelp_la_CPPFLAGS = -I$(top_srcdir) $(pthreads_cflags) $(relp_cflags) +omrelp_la_CPPFLAGS = -I$(top_srcdir) $(pthreads_cflags) $(RELP_CFLAGS) omrelp_la_LDFLAGS = -module -avoid-version -omrelp_la_LIBADD = $(relp_libs) +omrelp_la_LIBADD = $(RELP_LIBS) |