Title: [147951] trunk
- Revision
- 147951
- Author
- [email protected]
- Date
- 2013-04-08 14:07:45 -0700 (Mon, 08 Apr 2013)
Log Message
[GTK] Configure should verify ICU is installed on mingw
https://bugs.webkit.org/show_bug.cgi?id=113645
Patch by Martin Robinson <[email protected]> on 2013-04-08
Reviewed by Gustavo Noronha Silva.
* Source/autotools/FindDependencies.m4: When falling back to hard-coded compiler flags
for ICU and mingw, check that headers do exist on the system and error out otherwise.
Modified Paths
Diff
Modified: trunk/ChangeLog (147950 => 147951)
--- trunk/ChangeLog 2013-04-08 21:01:50 UTC (rev 147950)
+++ trunk/ChangeLog 2013-04-08 21:07:45 UTC (rev 147951)
@@ -1,3 +1,13 @@
+2013-04-08 Martin Robinson <[email protected]>
+
+ [GTK] Configure should verify ICU is installed on mingw
+ https://bugs.webkit.org/show_bug.cgi?id=113645
+
+ Reviewed by Gustavo Noronha Silva.
+
+ * Source/autotools/FindDependencies.m4: When falling back to hard-coded compiler flags
+ for ICU and mingw, check that headers do exist on the system and error out otherwise.
+
2013-04-08 Carlos Garcia Campos <[email protected]>
[GTK] Build Platform as a separate static library
Modified: trunk/Source/autotools/FindDependencies.m4 (147950 => 147951)
--- trunk/Source/autotools/FindDependencies.m4 2013-04-08 21:01:50 UTC (rev 147950)
+++ trunk/Source/autotools/FindDependencies.m4 2013-04-08 21:07:45 UTC (rev 147951)
@@ -115,6 +115,7 @@
*-*-mingw*)
UNICODE_CFLAGS=""
UNICODE_LIBS="-licui18n -licuuc"
+ AC_CHECK_HEADERS([unicode/uchar.h], [], [AC_MSG_ERROR([Could not find ICU headers.])])
;;
*)
AC_PATH_PROG(icu_config, icu-config, no)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes