Merge branch 'selinux-dlfcn-fix' into 'master'

ps/output.c: include <dlfcn.h> only when necessary

dlopen() functionality is only used when SELinux support is enabled, so
<dlfcn.h> only needs to be included when ENABLE_LIBSELINUX is
defined. This fixes the build in configurations where <dlfcn.h> is not
available.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>

See merge request !21
This commit is contained in:
Craig Small 2016-08-15 11:09:13 +00:00
commit 41fee5ea66

View File

@ -46,7 +46,9 @@
*/
#include <ctype.h>
#if ENABLE_LIBSELINUX
#include <dlfcn.h>
#endif
#include <fcntl.h>
#include <grp.h>
#include <limits.h>