diff options
author | Tiziano Mueller <tm@dev-zero.ch> | 2008-05-21 12:19:38 +0200 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2008-05-21 12:19:38 +0200 |
commit | 275595cdf8d5e18e665bfd4189f8061441595cce (patch) | |
tree | 813f6e885934a00f86ecd4a7fb72373d796509e5 /runtime/Makefile.am | |
parent | 6e97513eea1a6e282365eb01d972e0657cb36baa (diff) | |
download | rsyslog-275595cdf8d5e18e665bfd4189f8061441595cce.tar.gz rsyslog-275595cdf8d5e18e665bfd4189f8061441595cce.tar.xz rsyslog-275595cdf8d5e18e665bfd4189f8061441595cce.zip |
bugfix: missing linker options caused build to fail on some systems.
Signed-off-by: Rainer Gerhards <rgerhards@adiscon.com>
Diffstat (limited to 'runtime/Makefile.am')
-rw-r--r-- | runtime/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/Makefile.am b/runtime/Makefile.am index a7a2b91e..4a72eed8 100644 --- a/runtime/Makefile.am +++ b/runtime/Makefile.am @@ -67,7 +67,7 @@ librsyslog_la_SOURCES = \ librsyslog_la_CPPFLAGS = -D_PATH_MODDIR=\"$(pkglibdir)/\" -I$(top_srcdir) $(pthreads_cflags) #librsyslog_la_LDFLAGS = -module -avoid-version -librsyslog_la_LIBADD = +librsyslog_la_LIBADD = -ldl -lrt # # regular expression support |