From: Benjamin Franzke Date: Tue, 7 Jun 2011 19:59:02 +0000 (+0200) Subject: egl_dri2: Use libudev only if available X-Git-Tag: 062012170305~5507 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ec2b08de774a6aaeb9db201b4f363ff712b83f18;p=profile%2Fivi%2Fmesa.git egl_dri2: Use libudev only if available Broken since 7f881c43dfb4f1aeeab3a84125b5c106c191a43f. --- diff --git a/src/egl/drivers/dri2/common.c b/src/egl/drivers/dri2/common.c index 1860a3f..38f5b25 100644 --- a/src/egl/drivers/dri2/common.c +++ b/src/egl/drivers/dri2/common.c @@ -1,16 +1,19 @@ #include #include -#include - #include #include #include #include "egl_dri2.h" + +#ifdef HAVE_LIBUDEV + #define DRIVER_MAP_DRI2_ONLY #include "pci_ids/pci_id_driver_map.h" +#include + 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 */