/
githubmirror
/
libreport
Обзор
Документация
Войти
/
githubmirror
/
libreport
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/plugins/Makefile.am
288 строк
8 KB
Michal Fabik
reporter_bugzilla.py: Build, install
15 авг 2022, 14:15
15 авг 2022, 14:15
3416648
Код
Авторство
О чём код?
pluginslibdir = $(PLUGINS_LIB_DIR) reporters_bin = if BUILD_BUGZILLA reporters_bin += \ reporter-bugzilla endif if BUILD_MANTISBT reporters_bin += \ reporter-mantisbt endif if BUILD_UREPORT reporters_bin += reporter-ureport endif bin_PROGRAMS = $(reporters_bin) \ reporter-kerneloops \ reporter-upload \ reporter-mailx \ reporter-print \ reporter-systemd-journal pluginsconfdir = $(PLUGINS_CONF_DIR) reportpluginsconfdir = $(REPORT_PLUGINS_CONF_DIR) reporters_plugin_conf = reporters_plugin_format_conf = if BUILD_BUGZILLA reporters_plugin_conf += bugzilla.conf reporters_plugin_format_conf += bugzilla_format.conf \ bugzilla_formatdup.conf \ bugzilla_format_analyzer_libreport.conf \ bugzilla_formatdup_analyzer_libreport.conf \ bugzilla_format_kernel.conf \ bugzilla_format_anaconda.conf \ bugzilla_formatdup_anaconda.conf endif if BUILD_MANTISBT reporters_plugin_conf += mantisbt.conf reporters_plugin_format_conf += mantisbt_format.conf \ mantisbt_formatdup.conf \ mantisbt_format_analyzer_libreport.conf \ mantisbt_formatdup_analyzer_libreport.conf endif defaultreportpluginsconfdir = $(DEFAULT_REPORT_PLUGINS_CONF_DIR) dist_defaultreportpluginsconf_DATA = $(reporters_plugin_conf) \ mailx.conf \ upload.conf \ ureport.conf dist_reportpluginsconf_DATA = $(reporters_plugin_format_conf) \ $(dist_defaultreportpluginsconf_DATA) eventsdir = $(EVENTS_DIR) eventsconfdir = $(EVENTS_CONF_DIR) reporters_events = reporters_events_conf = if BUILD_BUGZILLA reporters_events += report_Bugzilla.xml \ watch_Bugzilla.xml reporters_events_conf += report_Bugzilla.conf endif if BUILD_MANTISBT reporters_events += report_CentOSBugTracker.xml reporters_events_conf += report_CentOSBugTracker.conf endif if BUILD_UREPORT reporters_events += report_uReport.xml endif dist_events_DATA = $(reporters_events) \ report_Logger.xml \ report_Mailx.xml \ report_Kerneloops.xml \ report_Uploader.xml dist_eventsconf_DATA = $(reporters_events_conf) \ report_Logger.conf \ report_Uploader.conf @INTLTOOL_XML_RULE@ eventsdefdir = $(EVENTS_DEFINITION_DIR) dist_eventsdef_DATA = \ mailx_event.conf \ print_event.conf \ uploader_event.conf \ centos_report_event.conf reporters_extra_dist = if BUILD_BUGZILLA dist_eventsdef_DATA += bugzilla_event.conf bugzilla_anaconda_event.conf reporters_extra_dist += report_Bugzilla.xml.in.in report_Bugzilla.conf \ watch_Bugzilla.xml.in endif if BUILD_UREPORT reporters_extra_dist += report_uReport.xml.in endif if BUILD_MANTISBT reporters_extra_dist += report_CentOSBugTracker.xml.in endif EXTRA_DIST = $(reporters_extra_dist) \ report_Logger.conf \ report_Logger.xml.in \ report_Mailx.xml.in \ report_Kerneloops.xml.in \ report_Uploader.xml.in $(DESTDIR)/$(DEBUG_INFO_DIR): $(mkdir_p) '$@' if BUILD_BUGZILLA reporter_bugzilla_SOURCES = \ reporter-bugzilla.c rhbz.c rhbz.h reporter_bugzilla_CPPFLAGS = \ -I$(srcdir)/../include \ -I$(srcdir)/../lib \ -DBIN_DIR=\"$(bindir)\" \ -DCONF_DIR=\"$(CONF_DIR)\" \ -DLOCALSTATEDIR='"$(localstatedir)"' \ -DDEBUG_DUMPS_DIR=\"$(DEBUG_DUMPS_DIR)\" \ -DDEBUG_INFO_DIR=\"$(DEBUG_INFO_DIR)\" \ -DPLUGINS_LIB_DIR=\"$(PLUGINS_LIB_DIR)\" \ -DPLUGINS_CONF_DIR=\"$(REPORT_PLUGINS_CONF_DIR)\" \ $(GLIB_CFLAGS) \ $(LIBREPORT_CFLAGS) \ $(XMLRPC_CFLAGS) $(XMLRPC_CLIENT_CFLAGS) \ -D_GNU_SOURCE reporter_bugzilla_LDADD = \ $(GLIB_LIBS) \ $(XMLRPC_LIBS) $(XMLRPC_CLIENT_LIBS) \ ../lib/libreport-web.la \ ../lib/libreport.la endif if BUILD_MANTISBT reporter_mantisbt_SOURCES = \ reporter-mantisbt.c mantisbt.c mantisbt.h reporter_mantisbt_CPPFLAGS = \ -I$(srcdir)/../include \ -I$(srcdir)/../lib \ -DBIN_DIR=\"$(bindir)\" \ -DCONF_DIR=\"$(CONF_DIR)\" \ -DLOCALSTATEDIR='"$(localstatedir)"' \ -DDEBUG_DUMPS_DIR=\"$(DEBUG_DUMPS_DIR)\" \ -DDEBUG_INFO_DIR=\"$(DEBUG_INFO_DIR)\" \ -DPLUGINS_LIB_DIR=\"$(PLUGINS_LIB_DIR)\" \ -DPLUGINS_CONF_DIR=\"$(REPORT_PLUGINS_CONF_DIR)\" \ $(GLIB_CFLAGS) \ $(LIBREPORT_CFLAGS) \ $(LIBXML_CFLAGS) \ -D_GNU_SOURCE reporter_mantisbt_LDADD = \ $(GLIB_LIBS) \ ../lib/libreport-web.la \ ../lib/libreport.la endif reporter_upload_SOURCES = \ reporter-upload.c reporter_upload_CPPFLAGS = \ -I$(srcdir)/../include \ -I$(srcdir)/../lib \ -DBIN_DIR=\"$(bindir)\" \ -DCONF_DIR=\"$(CONF_DIR)\" \ -DLOCALSTATEDIR='"$(localstatedir)"' \ -DDEBUG_DUMPS_DIR=\"$(DEBUG_DUMPS_DIR)\" \ -DDEBUG_INFO_DIR=\"$(DEBUG_INFO_DIR)\" \ -DPLUGINS_LIB_DIR=\"$(PLUGINS_LIB_DIR)\" \ -DPLUGINS_CONF_DIR=\"$(REPORT_PLUGINS_CONF_DIR)\" \ -DLARGE_DATA_TMP_DIR=\"$(LARGE_DATA_TMP_DIR)\" \ $(GLIB_CFLAGS) \ $(CURL_CFLAGS) \ $(LIBREPORT_CFLAGS) \ -D_GNU_SOURCE reporter_upload_LDADD = \ $(GLIB_LIBS) \ ../lib/libreport-web.la \ ../lib/libreport.la reporter_kerneloops_SOURCES = \ reporter-kerneloops.c reporter_kerneloops_CPPFLAGS = \ -I$(srcdir)/../include \ -I$(srcdir)/../lib \ -DBIN_DIR=\"$(bindir)\" \ -DLOCALSTATEDIR='"$(localstatedir)"' \ -DDEBUG_DUMPS_DIR=\"$(DEBUG_DUMPS_DIR)\" \ -DDEBUG_INFO_DIR=\"$(DEBUG_INFO_DIR)\" \ -DPLUGINS_LIB_DIR=\"$(PLUGINS_LIB_DIR)\" \ -DPLUGINS_CONF_DIR=\"$(REPORT_PLUGINS_CONF_DIR)\" \ $(GLIB_CFLAGS) \ $(LIBREPORT_CFLAGS) \ -D_GNU_SOURCE reporter_kerneloops_LDADD = \ ../lib/libreport-web.la \ ../lib/libreport.la reporter_mailx_SOURCES = \ reporter-mailx.c reporter_mailx_CPPFLAGS = \ -I$(srcdir)/../libreport/src/include/ -I$(srcdir)/../include \ -I$(srcdir)/../libreport/src/lib \ -I$(srcdir)/../lib \ -DBIN_DIR=\"$(bindir)\" \ -DCONF_DIR=\"$(CONF_DIR)\" \ -DLOCALSTATEDIR='"$(localstatedir)"' \ -DDEBUG_DUMPS_DIR=\"$(DEBUG_DUMPS_DIR)\" \ -DDEBUG_INFO_DIR=\"$(DEBUG_INFO_DIR)\" \ -DPLUGINS_LIB_DIR=\"$(PLUGINS_LIB_DIR)\" \ -DPLUGINS_CONF_DIR=\"$(REPORT_PLUGINS_CONF_DIR)\" \ $(GLIB_CFLAGS) \ $(LIBREPORT_CFLAGS) \ -D_GNU_SOURCE reporter_mailx_LDADD = \ ../lib/libreport.la reporter_print_SOURCES = \ reporter-print.c reporter_print_CPPFLAGS = \ -I$(srcdir)/../include \ -I$(srcdir)/../lib \ -DBIN_DIR=\"$(bindir)\" \ -DLOCALSTATEDIR='"$(localstatedir)"' \ -DDEBUG_DUMPS_DIR=\"$(DEBUG_DUMPS_DIR)\" \ -DDEBUG_INFO_DIR=\"$(DEBUG_INFO_DIR)\" \ -DPLUGINS_LIB_DIR=\"$(PLUGINS_LIB_DIR)\" \ -DPLUGINS_CONF_DIR=\"$(REPORT_PLUGINS_CONF_DIR)\" \ $(GLIB_CFLAGS) \ $(LIBREPORT_CFLAGS) \ -D_GNU_SOURCE reporter_print_LDADD = \ ../lib/libreport.la reporter_systemd_journal_SOURCES = \ reporter-systemd-journal.c reporter_systemd_journal_CPPFLAGS = \ -I$(srcdir)/../include \ -I$(srcdir)/../lib \ -DBIN_DIR=\"$(bindir)\" \ -DLOCALSTATEDIR='"$(localstatedir)"' \ -DDEBUG_DUMPS_DIR=\"$(DEBUG_DUMPS_DIR)\" \ -DDEBUG_INFO_DIR=\"$(DEBUG_INFO_DIR)\" \ -DPLUGINS_LIB_DIR=\"$(PLUGINS_LIB_DIR)\" \ -DPLUGINS_CONF_DIR=\"$(REPORT_PLUGINS_CONF_DIR)\" \ $(GLIB_CFLAGS) \ $(LIBREPORT_CFLAGS) \ -D_GNU_SOURCE reporter_systemd_journal_LDADD = \ ../lib/libreport.la \ $(JOURNAL_LIBS) if BUILD_UREPORT reporter_ureport_SOURCES = \ reporter-ureport.c reporter_ureport_CPPFLAGS = \ -I$(srcdir)/../include \ -I$(srcdir)/../lib \ $(GLIB_CFLAGS) \ $(LIBREPORT_CFLAGS) \ $(JSON_C_CFLAGS) \ -DPLUGINS_CONF_DIR=\"$(REPORT_PLUGINS_CONF_DIR)\" \ -D_GNU_SOURCE reporter_ureport_LDADD = \ $(JSON_C_LIBS) \ ../lib/libreport.la \ ../lib/libreport-web.la endif DEFS = -DLOCALEDIR=\"$(localedir)\" @DEFS@ SUBDIRS = python clean: rm -rf __pycache__