Title: [119874] trunk
Revision
119874
Author
[email protected]
Date
2012-06-08 16:13:35 -0700 (Fri, 08 Jun 2012)

Log Message

Fix the GTK+ build when OpenGL is enabled.

* configure.ac: Fix the build.

Modified Paths

Diff

Modified: trunk/ChangeLog (119873 => 119874)


--- trunk/ChangeLog	2012-06-08 23:13:03 UTC (rev 119873)
+++ trunk/ChangeLog	2012-06-08 23:13:35 UTC (rev 119874)
@@ -1,5 +1,11 @@
 2012-06-08  Martin Robinson  <[email protected]>
 
+        Fix the GTK+ build when OpenGL is enabled.
+
+        * configure.ac: Fix the build.
+
+2012-06-08  Martin Robinson  <[email protected]>
+
         [GTK] build accelerated compositing on by default if OpenGL is present
         https://bugs.webkit.org/show_bug.cgi?id=88677
 

Modified: trunk/configure.ac (119873 => 119874)


--- trunk/configure.ac	2012-06-08 23:13:03 UTC (rev 119873)
+++ trunk/configure.ac	2012-06-08 23:13:35 UTC (rev 119874)
@@ -1365,8 +1365,8 @@
 AM_CONDITIONAL([USE_CLUTTER], [test "$with_acceleration_backend" = "clutter"])
 
 # These are the same now, but they will soon be separate.
-AM_CONDITIONAL([USE_GLX], [test "$enable_opengl" = "yes"])
-AM_CONDITIONAL([USE_OPENGL], [test "$enable_opengl" = "yes"])
+AM_CONDITIONAL([USE_GLX], [test "$with_acceleration_backend" = "opengl"])
+AM_CONDITIONAL([USE_OPENGL], [test "$with_acceleration_backend" = "opengl"])
 
 # IndexedDB implies LevelDB, but other features may one day require LevelDB.
 AM_CONDITIONAL([ENABLE_INDEXED_DATABASE],[test "$enable_indexed_database" = "yes"])
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to