chiark / gitweb /
nspawn: define MS_MOVE manually if needed
authorLennart Poettering <lennart@poettering.net>
Mon, 14 Mar 2011 02:27:28 +0000 (03:27 +0100)
committerLennart Poettering <lennart@poettering.net>
Mon, 14 Mar 2011 02:27:28 +0000 (03:27 +0100)
src/missing.h
src/nspawn.c

index ff5dcb40925bb640f9a124cfdde1ee5190616d6b..c0cb3eaea7cf186b18cef8a8df600a9da3e870f0 100644 (file)
@@ -122,4 +122,8 @@ struct btrfs_ioctl_vol_args {
 #define BTRFS_SUPER_MAGIC 0x9123683E
 #endif
 
+#ifndef MS_MOVE
+#define MS_MOVE 8192
+#endif
+
 #endif
index fa70e86c469a96da81868f2a6726e5e9c272cac7..bf4e6de2ab1d6ffc73206bbd730e3626cb825914 100644 (file)
@@ -36,6 +36,7 @@
 
 #include "log.h"
 #include "util.h"
+#include "missing.h"
 
 static char *arg_directory = NULL;