Title: [132355] trunk
Revision
132355
Author
[email protected]
Date
2012-10-24 07:51:47 -0700 (Wed, 24 Oct 2012)

Log Message

[GTK] ./configure output for CSS Shaders is broken
https://bugs.webkit.org/show_bug.cgi?id=100217

Patch by Priit Laes <[email protected]> on 2012-10-24
Reviewed by Martin Robinson.

Reformat CSS Filters / Shaders check to clean configure output.

* configure.ac:

Modified Paths

Diff

Modified: trunk/ChangeLog (132354 => 132355)


--- trunk/ChangeLog	2012-10-24 14:42:54 UTC (rev 132354)
+++ trunk/ChangeLog	2012-10-24 14:51:47 UTC (rev 132355)
@@ -1,3 +1,14 @@
+2012-10-24  Priit Laes  <[email protected]>
+
+        [GTK] ./configure output for CSS Shaders is broken
+        https://bugs.webkit.org/show_bug.cgi?id=100217
+
+        Reviewed by Martin Robinson.
+
+        Reformat CSS Filters / Shaders check to clean configure output.
+
+        * configure.ac:
+
 2012-10-24  Thiago Marcos P. Santos  <[email protected]>
 
         [EFL] run-webkit-tests writes garbage on stderr when running on Xvfb

Modified: trunk/configure.ac (132354 => 132355)


--- trunk/configure.ac	2012-10-24 14:42:54 UTC (rev 132354)
+++ trunk/configure.ac	2012-10-24 14:51:47 UTC (rev 132355)
@@ -865,15 +865,15 @@
   [],[enable_introspection=no])
 AC_MSG_RESULT([$enable_introspection])
 
-# Enable css shaders if unstable_features, css_filters and
-# accelerated_compositing are turned on.
-AC_MSG_CHECKING([whether to enable CSS Shaders])
+# Enable CSS Filters and Shaders if unstable_features and accelerated_compositing are turned on.
+enable_css_filters=no;
+enable_css_shaders=no;
+AC_MSG_CHECKING([whether to enable CSS Filters and Shaders])
 if test "$enable_unstable_features" = "yes" && test "$enable_accelerated_compositing" = "yes" && test "$with_acceleration_backend" = "opengl"; then
+    enable_css_filters=yes;
     enable_css_shaders=yes;
-    enable_css_filters=yes;
 fi
 AC_MSG_RESULT([$enable_css_filters])
-AC_MSG_RESULT([$enable_css_shaders])
 
 G_IR_SCANNER=
 G_IR_COMPILER=
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to