diff --git a/ChangeLog b/ChangeLog index ae0231295288..b7cf1db1de27 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,13 @@ +2018-03-12 Zan Dobersek + + Unreviewed. Unbreak the WPE layout testing that's been broken since + r229470. Due to disassociation between ENABLE(ACCESSIBILITY) and + HAVE(ACCESSIBILITY), the injected bundle for the WPE port was left with + undefined symbols. This is fixed with ENABLE_ACCESSIBILITY being enabled + for the WPE port as well. + + * Source/cmake/OptionsWPE.cmake: + 2018-03-12 Carlos Garcia Campos Unreviewed. Fix library version of JavaScriptCoreGTK. diff --git a/Source/cmake/OptionsWPE.cmake b/Source/cmake/OptionsWPE.cmake index ed7d8cceab21..4e71aee22801 100644 --- a/Source/cmake/OptionsWPE.cmake +++ b/Source/cmake/OptionsWPE.cmake @@ -24,6 +24,7 @@ WEBKIT_OPTION_DEFAULT_PORT_VALUE(USE_SYSTEM_MALLOC PUBLIC OFF) # Private options shared with other WebKit ports. Add options here only if # we need a value different from the default defined in WebKitFeatures.cmake. # Changing these options is completely unsupported. +WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_ACCESSIBILITY PRIVATE ON) WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_FULLSCREEN_API PRIVATE OFF) WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_GEOLOCATION PRIVATE OFF) WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_MHTML PRIVATE ON)