diff options
author | Jonathan Gray <[email protected]> | 2014-03-23 15:53:07 +1100 |
---|---|---|
committer | Emil Velikov <[email protected]> | 2014-04-05 13:33:48 +0100 |
commit | 0295953c5de6a4b2394530235ca1d61cf16f4e8c (patch) | |
tree | d125565e567212a48ed761cf801b17b78a6d1ea7 /src/egl/drivers/dri2 | |
parent | 11623be934f8573910484de2a5fb50c95f0a1d44 (diff) |
egl/dri2: don't require libudev to build drm/wayland platforms
After the loader changes libudev is no longer required to
build gbm or the egl drm/wayland platforms.
Remove a libudev ifdef which allows the the drm egl driver
to be loaded on OpenBSD.
Signed-off-by: Jonathan Gray <[email protected]>
Cc: "10.1" <[email protected]>
Reviewed-by: Emil Velikov <[email protected]>
Diffstat (limited to 'src/egl/drivers/dri2')
-rw-r--r-- | src/egl/drivers/dri2/egl_dri2.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/egl/drivers/dri2/egl_dri2.c b/src/egl/drivers/dri2/egl_dri2.c index 8abe8acdd34..dc541add54e 100644 --- a/src/egl/drivers/dri2/egl_dri2.c +++ b/src/egl/drivers/dri2/egl_dri2.c @@ -630,7 +630,6 @@ dri2_initialize(_EGLDriver *drv, _EGLDisplay *disp) return dri2_initialize_x11(drv, disp); #endif -#ifdef HAVE_LIBUDEV #ifdef HAVE_DRM_PLATFORM case _EGL_PLATFORM_DRM: if (disp->Options.TestOnly) @@ -643,7 +642,6 @@ dri2_initialize(_EGLDriver *drv, _EGLDisplay *disp) return EGL_TRUE; return dri2_initialize_wayland(drv, disp); #endif -#endif #ifdef HAVE_ANDROID_PLATFORM case _EGL_PLATFORM_ANDROID: if (disp->Options.TestOnly) |