diff options
author | George Sapountzis <[email protected]> | 2010-03-19 02:38:09 +0200 |
---|---|---|
committer | George Sapountzis <[email protected]> | 2010-03-21 13:21:45 +0200 |
commit | 0b932284f2294a1dc02004d3b6ef6dfb633bc4bb (patch) | |
tree | d2a4bd954402c84f1ead40eba98034b9e62828e8 /src/mesa | |
parent | 2b5a6e083c1e6e45757a2192721d8675309835c1 (diff) |
dri_inteface: add define for checking presence of drm.h
__NOT_HAVE_DRM_H is a like a feature, defined by default on specific platforms
and allows to be defined externally as well.
__NOT_HAVE_DRM_H should only be used by xserver and mesa swrast_dri drivers
Diffstat (limited to 'src/mesa')
-rw-r--r-- | src/mesa/drivers/dri/swrast/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mesa/drivers/dri/swrast/Makefile b/src/mesa/drivers/dri/swrast/Makefile index cc59eefdb2d..aeefece4402 100644 --- a/src/mesa/drivers/dri/swrast/Makefile +++ b/src/mesa/drivers/dri/swrast/Makefile @@ -5,6 +5,8 @@ include $(TOP)/configs/current LIBNAME = swrast_dri.so +DRIVER_DEFINES = -D__NOT_HAVE_DRM_H + DRIVER_SOURCES = \ swrast.c \ swrast_span.c |