From: Damien Lespiau Date: Thu, 14 Oct 2010 14:33:17 +0000 (+0100) Subject: build: Fix CLUTTER_EGL_BACKEND definition for eglnative and cex100 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1c9dcdaeb295867d86a447cfc3df44d4e74d3ae0;p=profile%2Fivi%2Fclutter.git build: Fix CLUTTER_EGL_BACKEND definition for eglnative and cex100 CLUTTER_EGL_BACKEND is used to define a special EGL native backend to use and was introduced for the CEX100 EGL backend. Unfortunately CLUTTER_EGL_BACKEND was defined to "cex100" for eglnative, which is obviously wrong. The paches defines the right values for CLUTTER_EGL_BACKEND for the eglnative and cex100 flavours. --- diff --git a/configure.ac b/configure.ac index 665797d..bb5d2ea 100644 --- a/configure.ac +++ b/configure.ac @@ -272,7 +272,7 @@ AS_CASE([$CLUTTER_FLAVOUR], [ # the GL header is defined in the COGL checks above CLUTTER_STAGE_TYPE="CLUTTER_TYPE_STAGE_EGLNATIVE" - CLUTTER_EGL_BACKEND="cex100" + CLUTTER_EGL_BACKEND="generic" SUPPORT_EGL=1 SUPPORT_EGL_PLATFORM_POWERVR_NULL=1 @@ -294,6 +294,7 @@ AS_CASE([$CLUTTER_FLAVOUR], [cex100], [ CLUTTER_STAGE_TYPE="CLUTTER_TYPE_STAGE_EGL" + CLUTTER_EGL_BACKEND="cex100" SUPPORT_EGL=1 SUPPORT_EGL_PLATFORM_POWERVR_GDL=1