Title: [183602] trunk
Revision
183602
Author
[email protected]
Date
2015-04-29 18:42:54 -0700 (Wed, 29 Apr 2015)

Log Message

Fix the GTK+ build after r183584

* Source/cmake/OptionsGTK.cmake: Properly use the USE_LIBHYPHEN and HYPHEN_FOUND variables.

Modified Paths

Diff

Modified: trunk/ChangeLog (183601 => 183602)


--- trunk/ChangeLog	2015-04-30 01:41:53 UTC (rev 183601)
+++ trunk/ChangeLog	2015-04-30 01:42:54 UTC (rev 183602)
@@ -1,5 +1,11 @@
 2015-04-29  Martin Robinson  <[email protected]>
 
+        Fix the GTK+ build after r183584
+
+        * Source/cmake/OptionsGTK.cmake: Properly use the USE_LIBHYPHEN and HYPHEN_FOUND variables.
+
+2015-04-29  Martin Robinson  <[email protected]>
+
         [GTK] Add support for automatic hyphenation
         https://bugs.webkit.org/show_bug.cgi?id=44478
 

Modified: trunk/Source/cmake/OptionsGTK.cmake (183601 => 183602)


--- trunk/Source/cmake/OptionsGTK.cmake	2015-04-30 01:41:53 UTC (rev 183601)
+++ trunk/Source/cmake/OptionsGTK.cmake	2015-04-30 01:42:54 UTC (rev 183602)
@@ -379,9 +379,9 @@
     SET_AND_EXPOSE_TO_BUILD(WTF_USE_LIBNOTIFY TRUE)
 endif ()
 
-if (HYPHEN_FOUND)
+if (USE_LIBHYPHEN)
     find_package(Hyphen)
-    if (NOT LIBHYPHEN_FOUND)
+    if (NOT HYPHEN_FOUND)
        message(FATAL_ERROR "libhyphen is needed for USE_LIBHYPHEN.")
     endif ()
     SET_AND_EXPOSE_TO_BUILD(WTF_USE_LIBHYPHEN 1)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to