From 859a6da0fac5d214230f8a52777277b5147532fb Mon Sep 17 00:00:00 2001 From: Natanael Copa Date: Tue, 25 Dec 2012 10:53:50 +0100 Subject: [PATCH] define MS_SHARED if needed MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Fixes build on uClibc. Signed-off-by: Natanael Copa Acked-by: Stéphane Graber --- src/lxc/conf.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/lxc/conf.c b/src/lxc/conf.c index 96940b3c8..c82e7591f 100644 --- a/src/lxc/conf.c +++ b/src/lxc/conf.c @@ -87,6 +87,10 @@ lxc_log_define(lxc_conf, lxc); #define MNT_DETACH 2 #endif +#ifndef MS_SLAVE +#define MS_SLAVE (1<<19) +#endif + #ifndef MS_RELATIME #define MS_RELATIME (1 << 21) #endif -- 2.47.2