diff options
author | Andreas Boll <[email protected]> | 2013-04-19 20:41:08 +0200 |
---|---|---|
committer | Andreas Boll <[email protected]> | 2013-05-01 21:34:48 +0200 |
commit | 6b8f55c4da11f892bcbc878fc92c7119aaabf674 (patch) | |
tree | c3100ca99703c363c8070f07a34a641cce83bfc0 /src/mesa/drivers/dri/i915 | |
parent | afa33a001a39c44238ba8fd76f8eeabad041459e (diff) |
intel: use automake conditionals for defining FEATURE_{ES1,ES2}
Removes the need of API_DEFINES.
Reviewed-by: Matt Turner <[email protected]>
Diffstat (limited to 'src/mesa/drivers/dri/i915')
-rw-r--r-- | src/mesa/drivers/dri/i915/Makefile.am | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/i915/Makefile.am b/src/mesa/drivers/dri/i915/Makefile.am index 72e0659530a..95017191949 100644 --- a/src/mesa/drivers/dri/i915/Makefile.am +++ b/src/mesa/drivers/dri/i915/Makefile.am @@ -34,10 +34,19 @@ AM_CFLAGS = \ -I$(top_srcdir)/src/mesa/drivers/dri/intel/server \ -I$(top_builddir)/src/mesa/drivers/dri/common \ $(DEFINES) \ - $(API_DEFINES) \ $(VISIBILITY_CFLAGS) \ $(INTEL_CFLAGS) +if HAVE_OPENGL_ES1 +AM_CFLAGS += \ + -DFEATURE_ES1=1 +endif + +if HAVE_OPENGL_ES2 +AM_CFLAGS += \ + -DFEATURE_ES2=1 +endif + dridir = $(DRI_DRIVER_INSTALL_DIR) if HAVE_I915_DRI |