mirror of
https://github.com/rsyslog/rsyslog.git
synced 2026-08-29 20:30:17 +02:00
When liblogging-stdlog was available but configure option "--disable-liblogging-stdlog" was set, rsyslog was still linking against liblogging-stdlog. This commit will ensure that rsyslog will only link against liblogging-stdlog when "--enable-liblogging-stdlog" was set. Bug: https://bugs.gentoo.org/667836
12 lines
332 B
Makefile
12 lines
332 B
Makefile
pkglib_LTLIBRARIES = imudp.la
|
|
|
|
imudp_la_SOURCES = imudp.c
|
|
imudp_la_CPPFLAGS = -I$(top_srcdir) $(PTHREADS_CFLAGS) $(RSRT_CFLAGS)
|
|
imudp_la_LDFLAGS = -module -avoid-version
|
|
imudp_la_LIBADD = $(IMUDP_LIBS)
|
|
|
|
if ENABLE_LIBLOGGING_STDLOG
|
|
imudp_la_CPPFLAGS += $(LIBLOGGING_STDLOG_CFLAGS)
|
|
imudp_la_LDFLAGS += $(LIBLOGGING_STDLOG_LIBS)
|
|
endif
|