search for: have_sd_journal

Displaying 3 results from an estimated 3 matches for "have_sd_journal".

2015 Jan 19
1
[PATCH] build: check for single libsystemd before libsystemd-journal
...VE_HIVEX],[test "x$HIVEX_LIBS" != "x"]) dnl systemd journal library (optional) -PKG_CHECK_MODULES([SD_JOURNAL], [libsystemd-journal >= 196],[ +PKG_CHECK_MODULES([SD_JOURNAL], [libsystemd],[ AC_SUBST([SD_JOURNAL_CFLAGS]) AC_SUBST([SD_JOURNAL_LIBS]) AC_DEFINE([HAVE_SD_JOURNAL],[1],[systemd journal library found at compile time.]) -], - [AC_MSG_WARN([systemd journal library not found, some features will be disabled])]) +],[ + PKG_CHECK_MODULES([SD_JOURNAL], [libsystemd-journal >= 196],[ + AC_SUBST([SD_JOURNAL_CFLAGS]) + AC_SUBST([SD_JOURNAL_LIBS])...
2013 Aug 20
0
[PATCH] daemon: fix build without systemd-journal
....de> --- daemon/journal.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/daemon/journal.c b/daemon/journal.c index 0cb50e3..97e1874 100644 --- a/daemon/journal.c +++ b/daemon/journal.c @@ -216,6 +216,11 @@ do_journal_set_data_threshold (int64_t threshold) #else /* !HAVE_SD_JOURNAL */ -OPTGROUP_SD_JOURNAL_NOT_AVAILABLE +OPTGROUP_JOURNAL_NOT_AVAILABLE + +void +journal_finalize (void) +{ +} #endif /* !HAVE_SD_JOURNAL */
2015 Oct 29
16
[PATCH 00/16] Refactoring of configure.ac and guestfs.pod
Two (not related to each other) refactorings: Patches 1-12 split configure.ac into smaller files using the m4_include mechanism. Patches 13-15 split out parts of guestfs.pod (ie. guestfs(3)) into three new manual pages: guestfs-hacking(3) - how to extend and contribute to libguestfs guestfs-internals(3) - architecture and internals guestfs-security(3) - security and CVEs Patch 16 is a