Title: [164796] trunk
- Revision
- 164796
- Author
- [email protected]
- Date
- 2014-02-27 05:48:53 -0800 (Thu, 27 Feb 2014)
Log Message
Fallback on checking for libz manualy if zlib.pc isn't available.
https://bugs.webkit.org/show_bug.cgi?id=127061
Patch by Koop Mast <[email protected]> on 2014-02-27
Reviewed by Gustavo Noronha Silva.
* Source/autotools/FindDependencies.m4:
Modified Paths
Diff
Modified: trunk/ChangeLog (164795 => 164796)
--- trunk/ChangeLog 2014-02-27 13:15:25 UTC (rev 164795)
+++ trunk/ChangeLog 2014-02-27 13:48:53 UTC (rev 164796)
@@ -1,3 +1,12 @@
+2014-02-27 Koop Mast <[email protected]>
+
+ Fallback on checking for libz manualy if zlib.pc isn't available.
+ https://bugs.webkit.org/show_bug.cgi?id=127061
+
+ Reviewed by Gustavo Noronha Silva.
+
+ * Source/autotools/FindDependencies.m4:
+
2014-02-25 Sergio Villar Senin <[email protected]>
[CSS Grid Layout] Add ENABLE flag
Modified: trunk/Source/autotools/FindDependencies.m4 (164795 => 164796)
--- trunk/Source/autotools/FindDependencies.m4 2014-02-27 13:15:25 UTC (rev 164795)
+++ trunk/Source/autotools/FindDependencies.m4 2014-02-27 13:48:53 UTC (rev 164796)
@@ -129,7 +129,10 @@
AC_SUBST([UNICODE_CFLAGS])
AC_SUBST([UNICODE_LIBS])
-PKG_CHECK_MODULES([ZLIB], [zlib])
+PKG_CHECK_MODULES([ZLIB], [zlib], [], [
+ AC_CHECK_LIB([z], [gzread], ,
+ [AC_MSG_ERROR([unable to find the libz library])]
+ )])
AC_SUBST([ZLIB_CFLAGS])
AC_SUBST([ZLIB_LIBS])
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes