diff options
author | Emil Velikov <[email protected]> | 2013-10-12 00:19:55 +0100 |
---|---|---|
committer | Andreas Boll <[email protected]> | 2013-10-15 21:54:20 +0200 |
commit | b1e7cd037e42255a249391547ce24cf4a3faba25 (patch) | |
tree | b6d7db2e39d852b912f85858800ceec2c21abcd8 /src/mesa | |
parent | cd3fa176a8dbae3e14c9426e7fbe13baa6e84256 (diff) |
configure.ac: drop obsolete variable HAVE_COMMON_DRI
The original intent of the variable was to prevent adding
libdrm dependency for non drm drivers (swrast). This is
already handled with __NOT_HAVE_DRM_H, and with the recent
merge of the dri_util and drisw_util code this variable has
started causing build issues.
Eg. the following will fail
$ ./autogen.sh --with-dri-drivers=swrast --with-gallium-drivers=
$ make
Signed-off-by: Emil Velikov <[email protected]>
Reviewed-by: Andreas Boll <[email protected]>
Diffstat (limited to 'src/mesa')
-rw-r--r-- | src/mesa/drivers/dri/Makefile.am | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/mesa/drivers/dri/Makefile.am b/src/mesa/drivers/dri/Makefile.am index 48d36858bb7..7fa0ad73d01 100644 --- a/src/mesa/drivers/dri/Makefile.am +++ b/src/mesa/drivers/dri/Makefile.am @@ -1,8 +1,6 @@ SUBDIRS = -if HAVE_COMMON_DRI SUBDIRS+=common -endif if HAVE_I915_DRI SUBDIRS+=i915 |