billiob pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=0c5c1c97da8f589deeb838506c8c05b77ae04f58
commit 0c5c1c97da8f589deeb838506c8c05b77ae04f58 Author: Boris Faure <bill...@gmail.com> Date: Thu Feb 19 22:51:14 2015 +0100 evas gl: fix build when GL_COVERAGE_SAMPLES_NV is defined byg <GL/gl.h> --- src/lib/evas/Evas_GL.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/lib/evas/Evas_GL.h b/src/lib/evas/Evas_GL.h index c3ce92a..eaaaf92 100644 --- a/src/lib/evas/Evas_GL.h +++ b/src/lib/evas/Evas_GL.h @@ -2226,7 +2226,9 @@ typedef signed int GLfixed; // Changed khronos_int32_t #define GL_COVERAGE_COMPONENT4_NV 0x8ED1 #define GL_COVERAGE_ATTACHMENT_NV 0x8ED2 #define GL_COVERAGE_BUFFERS_NV 0x8ED3 +#ifndef GL_COVERAGE_SAMPLES_NV #define GL_COVERAGE_SAMPLES_NV 0x8ED4 +#endif #define GL_COVERAGE_ALL_FRAGMENTS_NV 0x8ED5 #define GL_COVERAGE_EDGE_FRAGMENTS_NV 0x8ED6 #define GL_COVERAGE_AUTOMATIC_NV 0x8ED7 --