From 94d8298589f06de596fbc0a4bc9b50072a2a0536 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Mon, 14 Mar 2011 03:27:28 +0100 Subject: [PATCH 1/1] nspawn: define MS_MOVE manually if needed --- src/missing.h | 4 ++++ src/nspawn.c | 1 + 2 files changed, 5 insertions(+) diff --git a/src/missing.h b/src/missing.h index ff5dcb409..c0cb3eaea 100644 --- a/src/missing.h +++ b/src/missing.h @@ -122,4 +122,8 @@ struct btrfs_ioctl_vol_args { #define BTRFS_SUPER_MAGIC 0x9123683E #endif +#ifndef MS_MOVE +#define MS_MOVE 8192 +#endif + #endif diff --git a/src/nspawn.c b/src/nspawn.c index fa70e86c4..bf4e6de2a 100644 --- a/src/nspawn.c +++ b/src/nspawn.c @@ -36,6 +36,7 @@ #include "log.h" #include "util.h" +#include "missing.h" static char *arg_directory = NULL; -- 2.30.2