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>
This commit is contained in:
parent
b4fdb27a05
commit
4fc9a34802
@ -46,7 +46,9 @@
|
||||
*/
|
||||
|
||||
#include <ctype.h>
|
||||
#if ENABLE_LIBSELINUX
|
||||
#include <dlfcn.h>
|
||||
#endif
|
||||
#include <fcntl.h>
|
||||
#include <grp.h>
|
||||
#include <limits.h>
|
||||
|
Loading…
Reference in New Issue
Block a user