Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(31)

Unified Diff: third_party/libxml/linux/xml2-config

Issue 1977213002: Roll libxml to 8effcb578e0590cc01bbcab0f9dccefc6bdbcdbd (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Update README.chromium. Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/libxml/linux/xml2-config
diff --git a/third_party/libxml/linux/xml2-config b/third_party/libxml/linux/xml2-config
index 59cf2d56a661b4698cefde26c55eefe4ad1c83e5..2efbfd728150d4533dd8e3d592ab0ce50ceb5b8b 100755
--- a/third_party/libxml/linux/xml2-config
+++ b/third_party/libxml/linux/xml2-config
@@ -58,7 +58,7 @@ while test $# -gt 0; do
;;
--version)
- echo 2.9.3
+ echo 2.9.4
exit 0
;;
@@ -86,12 +86,12 @@ while test $# -gt 0; do
then
if [ "-L${libdir}" = "-L/usr/lib" -o "-L${libdir}" = "-L/usr/lib64" ]
then
- echo -lxml2 -lz -lm -ldl
+ echo -lxml2 -lz -licui18n -licuuc -licudata -lm -ldl
else
- echo -L${libdir} -lxml2 -lz -lm -ldl
+ echo -L${libdir} -lxml2 -lz -licui18n -licuuc -licudata -lm -ldl
fi
else
- echo -L${libdir} -lxml2 -lz -lm -ldl
+ echo -L${libdir} -lxml2 -lz -licui18n -licuuc -licudata -lm -ldl
fi
;;

Powered by Google App Engine
This is Rietveld 408576698