mirror of
https://github.com/rsyslog/rsyslog.git
synced 2025-12-20 05:00:42 +01:00
... based on old omfile. Michael Biebl reported that xconsole seems to have some issues with the new pipe code, so it was best to use the old code for pipes. The optimizations were done to speed up file access, so it doesn't really matter pipes do not receive them.
39 lines
733 B
Makefile
39 lines
733 B
Makefile
sbin_PROGRAMS =
|
|
man_MANS = rsyslogd.8 rsyslog.conf.5
|
|
|
|
sbin_PROGRAMS += rsyslogd
|
|
rsyslogd_SOURCES = \
|
|
syslogd.c \
|
|
syslogd.h \
|
|
omshell.c \
|
|
omshell.h \
|
|
omusrmsg.c \
|
|
omusrmsg.h \
|
|
omfwd.c \
|
|
omfwd.h \
|
|
omfile.c \
|
|
omfile.h \
|
|
ompipe.c \
|
|
ompipe.h \
|
|
omdiscard.c \
|
|
omdiscard.h \
|
|
iminternal.c \
|
|
iminternal.h \
|
|
pidfile.c \
|
|
pidfile.h \
|
|
\
|
|
../dirty.h
|
|
rsyslogd_CPPFLAGS = $(PTHREADS_CFLAGS) $(RSRT_CFLAGS)
|
|
rsyslogd_LDADD = $(ZLIB_LIBS) $(PTHREADS_LIBS) $(RSRT_LIBS) $(SOL_LIBS)
|
|
rsyslogd_LDFLAGS = -export-dynamic
|
|
|
|
if ENABLE_DIAGTOOLS
|
|
sbin_PROGRAMS += rsyslog_diag_hostname msggen zpipe
|
|
rsyslog_diag_hostname_SOURCES = gethostn.c
|
|
zpipe_SOURCES = zpipe.c
|
|
zpipe_LDADD = -lz
|
|
msggen_SOURCES = msggen.c
|
|
endif
|
|
|
|
EXTRA_DIST = $(man_MANS)
|