mirror of
https://github.com/rsyslog/rsyslog.git
synced 2025-12-20 09:40:42 +01:00
worked on ways to provide a better test suite: - added -T rsyslogd command line option, enables to specify a directory where to chroot() into on startup. This is NOT a security feature but introduced to support testing. Thus, -T does not make sure chroot() is used in a secure way. (may be removed later) - added omstdout module for testing purposes. Spits out all messages to stdout - no config option, no other features - modified $ModLoad statement so that for modules whom's name starts with a dot, no path is prepended (this enables relative-pathes and should not break any valid current config)
9 lines
207 B
Makefile
9 lines
207 B
Makefile
pkglib_LTLIBRARIES = omstdout.la
|
|
|
|
omstdout_la_SOURCES = omstdout.c
|
|
omstdout_la_CPPFLAGS = $(RSRT_CFLAGS) $(PTHREADS_CFLAGS)
|
|
omstdout_la_LDFLAGS = -module -avoid-version
|
|
omstdout_la_LIBADD =
|
|
|
|
EXTRA_DIST =
|