diff options
author | Aleksander Morgado <aleksander@aleksander.es> | 2017-06-22 10:30:48 +0200 |
---|---|---|
committer | Aleksander Morgado <aleksander@aleksander.es> | 2017-06-22 10:40:58 +0200 |
commit | 341555504e739f7ccac11501ca874ef6b1989961 (patch) | |
tree | 50330351b416af0954987416324b575d51abb0a4 | |
parent | acf36f2ae0a10f8aeee7a1f8495d3febfba52456 (diff) |
build: only define WITH_SYSTEMD_JOURNAL if enabled
-rw-r--r-- | configure.ac | 7 | ||||
-rw-r--r-- | src/mm-context.c | 2 |
2 files changed, 3 insertions, 6 deletions
diff --git a/configure.ac b/configure.ac index c07a6be1..44730dc3 100644 --- a/configure.ac +++ b/configure.ac @@ -260,17 +260,14 @@ if test "x$with_systemd_journal" = "xauto"; then fi case $with_systemd_journal in - no) - AC_DEFINE(WITH_SYSTEMD_JOURNAL, 0, [Define if you want systemd journal support]) - ;; yes) if test "x$have_libsystemd" = "xno"; then AC_MSG_ERROR(libsystemd development headers are required) - fi + fi AC_DEFINE(WITH_SYSTEMD_JOURNAL, 1, [Define if you want systemd journal support]) ;; *) - AC_MSG_ERROR([Wrong value for --with-systemd-journal: $with_systemd_journal]) + with_systemd_journal=no ;; esac diff --git a/src/mm-context.c b/src/mm-context.c index 6b0dab79..370fe28c 100644 --- a/src/mm-context.c +++ b/src/mm-context.c @@ -104,7 +104,7 @@ static const GOptionEntry log_entries[] = { "Path to log file", "[PATH]" }, -#if WITH_SYSTEMD_JOURNAL +#if defined WITH_SYSTEMD_JOURNAL { "log-journal", 0, 0, G_OPTION_ARG_NONE, &log_journal, "Log to systemd journal", |