mirror of
https://github.com/rsyslog/rsyslog.git
synced 2025-12-18 19:10:42 +01: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
362 B
Makefile
12 lines
362 B
Makefile
pkglib_LTLIBRARIES = imuxsock.la
|
|
|
|
imuxsock_la_SOURCES = imuxsock.c
|
|
imuxsock_la_CPPFLAGS = -DSD_EXPORT_SYMBOLS -I$(top_srcdir) $(PTHREADS_CFLAGS) $(RSRT_CFLAGS)
|
|
imuxsock_la_LDFLAGS = -module -avoid-version
|
|
imuxsock_la_LIBADD =
|
|
|
|
if ENABLE_LIBLOGGING_STDLOG
|
|
imuxsock_la_CPPFLAGS += $(LIBLOGGING_STDLOG_CFLAGS)
|
|
imuxsock_la_LDFLAGS += $(LIBLOGGING_STDLOG_LIBS)
|
|
endif
|