From: Natanael Copa Date: Tue, 25 Dec 2012 09:53:50 +0000 (+0100) Subject: define MS_SHARED if needed X-Git-Tag: lxc-0.9.0.alpha3~1^2~100 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=859a6da0fac5d214230f8a52777277b5147532fb;p=thirdparty%2Flxc.git define MS_SHARED if needed Fixes build on uClibc. Signed-off-by: Natanael Copa Acked-by: Stéphane Graber --- 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