From: Andreas Boll Date: Wed, 17 Apr 2013 09:16:27 +0000 (+0200) Subject: egl-static: use automake conditionals for defining FEATURE_{GL,ES1,ES2} X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=afa33a001a39c44238ba8fd76f8eeabad041459e;p=mesa.git egl-static: use automake conditionals for defining FEATURE_{GL,ES1,ES2} Removes the need of API_DEFINES. Reviewed-by: Matt Turner --- diff --git a/src/gallium/targets/egl-static/Makefile.am b/src/gallium/targets/egl-static/Makefile.am index 789aa30d60d..e5bf7fca383 100644 --- a/src/gallium/targets/egl-static/Makefile.am +++ b/src/gallium/targets/egl-static/Makefile.am @@ -101,7 +101,7 @@ endif if HAVE_OPENGL AM_CPPFLAGS += \ -I$(top_srcdir)/src/mesa \ - $(API_DEFINES) + -DFEATURE_GL=1 egl_gallium_la_LIBADD += \ $(top_builddir)/src/mesa/libmesagallium.la @@ -132,6 +132,16 @@ st_GL_la_LIBADD = \ endif endif +if HAVE_OPENGL_ES1 +AM_CPPFLAGS += \ + -DFEATURE_ES1=1 +endif + +if HAVE_OPENGL_ES2 +AM_CPPFLAGS += \ + -DFEATURE_ES2=1 +endif + if HAVE_OPENVG AM_CPPFLAGS += \ -I$(top_srcdir)/src/gallium/state_trackers/vega \