From: Stéphane Graber Date: Tue, 5 Nov 2013 19:30:30 +0000 (-0500) Subject: Only include execinfo.h if MUTEX_DEBUGGING is set X-Git-Tag: lxc-1.0.0.alpha3~25 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3da0feef099c7da83352525fe4930dc9f7a3df82;p=thirdparty%2Flxc.git Only include execinfo.h if MUTEX_DEBUGGING is set Signed-off-by: Stéphane Graber --- diff --git a/src/lxc/utils.c b/src/lxc/utils.c index 590482e0b..4bc2c35e4 100644 --- a/src/lxc/utils.c +++ b/src/lxc/utils.c @@ -40,7 +40,10 @@ #include #include #include + +#ifdef MUTEX_DEBUGGING #include +#endif #ifndef HAVE_GETLINE #ifdef HAVE_FGETLN