diff options
-rw-r--r-- | ChangeLog | 2 | ||||
-rw-r--r-- | runtime/Makefile.am | 2 |
2 files changed, 3 insertions, 1 deletions
@@ -2,6 +2,8 @@ Version 3.19.3 (rgerhards), 2008-05-?? - bugfix: default syslog port was no longer used if none was configured. Thanks to varmojfekoj for the patch +- bugfix: missing linker options caused build to fail on some + systems. Thanks to Tiziano Mueller for the patch. --------------------------------------------------------------------------- Version 3.19.2 (rgerhards), 2008-05-16 - bugfix: TCP input modules did incorrectly set fromhost property 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 |