summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenjamin Franzke <benjaminfranzke@googlemail.com>2011-06-07 21:59:02 +0200
committerAlex Deucher <alexdeucher@gmail.com>2011-06-07 17:58:47 -0400
commitec2b08de774a6aaeb9db201b4f363ff712b83f18 (patch)
treec0d27f8bcb52132c0f00d3afa4d2a2d33cabd5b1
parentbdf2e112856659816d000699fce606adc4ee9926 (diff)
egl_dri2: Use libudev only if available
-rw-r--r--src/egl/drivers/dri2/common.c9
1 files changed, 7 insertions, 2 deletions
diff --git a/src/egl/drivers/dri2/common.c b/src/egl/drivers/dri2/common.c
index 1860a3f738e..38f5b257400 100644
--- a/src/egl/drivers/dri2/common.c
+++ b/src/egl/drivers/dri2/common.c
@@ -1,16 +1,19 @@
#include <stdio.h>
#include <string.h>
-#include <libudev.h>
-
#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>
#include "egl_dri2.h"
+
+#ifdef HAVE_LIBUDEV
+
#define DRIVER_MAP_DRI2_ONLY
#include "pci_ids/pci_id_driver_map.h"
+#include <libudev.h>
+
static struct udev_device *
dri2_udev_device_new_from_fd(struct udev *udev, int fd)
{
@@ -109,3 +112,5 @@ out:
return driver;
}
+
+#endif /* HAVE_LIBUDEV */