summaryrefslogtreecommitdiffstats
path: root/src/loader/loader.c
diff options
context:
space:
mode:
authorEmil Velikov <[email protected]>2014-01-28 10:15:17 +0000
committerJosé Fonseca <[email protected]>2014-01-28 14:32:03 +0000
commit61c825e862c3215f0611a6c46d6530438d72028c (patch)
tree2339185385752314ed5aeb3549bdacb182c5ba5d /src/loader/loader.c
parent2eddf91faf4abf0b3d7b81a0a486fd46d5acd1ea (diff)
loader: include dlfcn.h when building with HAVE_LIBUDEV
The code depending on the definitions is already wrapped in the same conditional so go ahead and wrap the include. Otherwise we'll brake compilation on platforms that are missing the header. Add assert.h in there as well, as it is introduced and used in the same fashon. Cc: Eric Anholt <[email protected]> Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=74122 Signed-off-by: Emil Velikov <[email protected]>
Diffstat (limited to 'src/loader/loader.c')
-rw-r--r--src/loader/loader.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/loader/loader.c b/src/loader/loader.c
index 6d179a1da96..ee4c1e08db7 100644
--- a/src/loader/loader.c
+++ b/src/loader/loader.c
@@ -67,8 +67,10 @@
#include <stdarg.h>
#include <stdio.h>
#include <string.h>
+#ifdef HAVE_LIBUDEV
#include <assert.h>
#include <dlfcn.h>
+#endif
#include "loader.h"
#ifndef __NOT_HAVE_DRM_H