[systemd-commits] src/core

Lennart Poettering lennart at kemper.freedesktop.org
Thu Feb 13 02:26:04 CET 2014


 src/core/main.c |    2 ++
 1 file changed, 2 insertions(+)

New commits:
commit 89fffa2735ea975b3716ee47820d194bd86cce5f
Author: Lennart Poettering <lennart at poettering.net>
Date:   Thu Feb 13 02:25:45 2014 +0100

    seccomp: fix build again if libseccomp is missing

diff --git a/src/core/main.c b/src/core/main.c
index 99cf9a1..14e21d6 100644
--- a/src/core/main.c
+++ b/src/core/main.c
@@ -642,7 +642,9 @@ static int parse_config_file(void) {
                 { "Manager", "RuntimeWatchdogSec",        config_parse_sec,              0, &arg_runtime_watchdog                  },
                 { "Manager", "ShutdownWatchdogSec",       config_parse_sec,              0, &arg_shutdown_watchdog                 },
                 { "Manager", "CapabilityBoundingSet",     config_parse_bounding_set,     0, &arg_capability_bounding_set_drop      },
+#ifdef HAVE_SECCOMP
                 { "Manager", "SystemCallArchitectures",   config_parse_syscall_archs,    0, &arg_syscall_archs                     },
+#endif
                 { "Manager", "TimerSlackNSec",            config_parse_nsec,             0, &arg_timer_slack_nsec                  },
                 { "Manager", "DefaultStandardOutput",     config_parse_output,           0, &arg_default_std_output                },
                 { "Manager", "DefaultStandardError",      config_parse_output,           0, &arg_default_std_error                 },



More information about the systemd-commits mailing list