Title: [167344] trunk
Revision
167344
Author
carlo...@webkit.org
Date
2014-04-16 03:19:59 -0700 (Wed, 16 Apr 2014)

Log Message

REGRESSION(r166779): [GTK] Printing doesn't work since r166779
https://bugs.webkit.org/show_bug.cgi?id=131725

Reviewed by Philippe Normand.

* Source/cmake/OptionsGTK.cmake: Check GTK_UNIX_PRINT_FOUND
instead of GTK_UNIX_PRINTING_FOUND and set the macro
HAVE_GTK_UNIX_PRINTING to 1 when found.

Modified Paths

Diff

Modified: trunk/ChangeLog (167343 => 167344)


--- trunk/ChangeLog	2014-04-16 05:16:36 UTC (rev 167343)
+++ trunk/ChangeLog	2014-04-16 10:19:59 UTC (rev 167344)
@@ -1,3 +1,14 @@
+2014-04-16  Carlos Garcia Campos  <cgar...@igalia.com>
+
+        REGRESSION(r166779): [GTK] Printing doesn't work since r166779
+        https://bugs.webkit.org/show_bug.cgi?id=131725
+
+        Reviewed by Philippe Normand.
+
+        * Source/cmake/OptionsGTK.cmake: Check GTK_UNIX_PRINT_FOUND
+        instead of GTK_UNIX_PRINTING_FOUND and set the macro
+        HAVE_GTK_UNIX_PRINTING to 1 when found.
+
 2014-04-11  Brian J. Burg  <b...@cs.washington.edu>
 
         Web Replay: memoize nondeterministic attributes of the Navigator interface

Modified: trunk/Source/cmake/OptionsGTK.cmake (167343 => 167344)


--- trunk/Source/cmake/OptionsGTK.cmake	2014-04-16 05:16:36 UTC (rev 167343)
+++ trunk/Source/cmake/OptionsGTK.cmake	2014-04-16 10:19:59 UTC (rev 167344)
@@ -210,8 +210,8 @@
 endif ()
 
 find_package(GTKUnixPrint)
-if (GTK_UNIX_PRINTING_FOUND)
-    set(HAVE_GTK_UNIX_PRINTING)
+if (GTK_UNIX_PRINT_FOUND)
+    set(HAVE_GTK_UNIX_PRINTING 1)
 endif ()
 
 if (ENABLE_CREDENTIAL_STORAGE)
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to