Changeset 183602 in webkit


Ignore:
Timestamp:
Apr 29, 2015 6:42:54 PM (9 years ago)
Author:
Martin Robinson
Message:

Fix the GTK+ build after r183584

  • Source/cmake/OptionsGTK.cmake: Properly use the USE_LIBHYPHEN and HYPHEN_FOUND variables.
Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/ChangeLog

    r183584 r183602  
     12015-04-29  Martin Robinson  <mrobinson@igalia.com>
     2
     3        Fix the GTK+ build after r183584
     4
     5        * Source/cmake/OptionsGTK.cmake: Properly use the USE_LIBHYPHEN and HYPHEN_FOUND variables.
     6
    172015-04-29  Martin Robinson  <mrobinson@igalia.com>
    28
  • trunk/Source/cmake/OptionsGTK.cmake

    r183584 r183602  
    380380endif ()
    381381
    382 if (HYPHEN_FOUND)
     382if (USE_LIBHYPHEN)
    383383    find_package(Hyphen)
    384     if (NOT LIBHYPHEN_FOUND)
     384    if (NOT HYPHEN_FOUND)
    385385       message(FATAL_ERROR "libhyphen is needed for USE_LIBHYPHEN.")
    386386    endif ()
Note: See TracChangeset for help on using the changeset viewer.