Title: [111150] trunk/Source/_javascript_Core
- Revision
- 111150
- Author
- [email protected]
- Date
- 2012-03-18 20:36:39 -0700 (Sun, 18 Mar 2012)
Log Message
[EFL] Include ICU_INCLUDE_DIRS when building.
https://bugs.webkit.org/show_bug.cgi?id=81483
Reviewed by Daniel Bates.
So far, only the ICU libraries were being included when building
_javascript_Core, however the include path is also needed, otherwise the
build will fail when ICU is installed into a non-standard location.
* PlatformEfl.cmake: Include ${ICU_INCLUDE_DIRS}.
Modified Paths
Diff
Modified: trunk/Source/_javascript_Core/ChangeLog (111149 => 111150)
--- trunk/Source/_javascript_Core/ChangeLog 2012-03-19 02:40:19 UTC (rev 111149)
+++ trunk/Source/_javascript_Core/ChangeLog 2012-03-19 03:36:39 UTC (rev 111150)
@@ -1,3 +1,16 @@
+2012-03-18 Raphael Kubo da Costa <[email protected]>
+
+ [EFL] Include ICU_INCLUDE_DIRS when building.
+ https://bugs.webkit.org/show_bug.cgi?id=81483
+
+ Reviewed by Daniel Bates.
+
+ So far, only the ICU libraries were being included when building
+ _javascript_Core, however the include path is also needed, otherwise the
+ build will fail when ICU is installed into a non-standard location.
+
+ * PlatformEfl.cmake: Include ${ICU_INCLUDE_DIRS}.
+
2012-03-17 Gavin Barraclough <[email protected]>
Strength reduction, RegExp.exec -> RegExp.test
Modified: trunk/Source/_javascript_Core/PlatformEfl.cmake (111149 => 111150)
--- trunk/Source/_javascript_Core/PlatformEfl.cmake 2012-03-19 02:40:19 UTC (rev 111149)
+++ trunk/Source/_javascript_Core/PlatformEfl.cmake 2012-03-19 03:36:39 UTC (rev 111150)
@@ -7,6 +7,10 @@
${ICU_I18N_LIBRARIES}
)
+LIST(APPEND _javascript_Core_INCLUDE_DIRECTORIES
+ ${ICU_INCLUDE_DIRS}
+)
+
IF (ENABLE_GLIB_SUPPORT)
LIST(APPEND _javascript_Core_INCLUDE_DIRECTORIES
${_javascript_CORE_DIR}/wtf/gobject
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes