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

Side by Side Diff: third_party/libxml/src/xml2-config.in

Issue 1193533007: Upgrade to libxml 2.9.2 and libxslt 1.1.28 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: no iconv Created 5 years, 6 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 unified diff | Download patch
« no previous file with comments | « third_party/libxml/src/xml2-config.1 ('k') | third_party/libxml/src/xmlIO.c » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #! /bin/sh 1 #! /bin/sh
2 2
3 prefix=@prefix@ 3 prefix=@prefix@
4 exec_prefix=@exec_prefix@ 4 exec_prefix=@exec_prefix@
5 includedir=@includedir@ 5 includedir=@includedir@
6 libdir=@libdir@ 6 libdir=@libdir@
7 7
8 usage() 8 usage()
9 { 9 {
10 cat <<EOF 10 cat <<EOF
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
79 79
80 --modules) 80 --modules)
81 echo @WITH_MODULES@ 81 echo @WITH_MODULES@
82 ;; 82 ;;
83 83
84 --libs) 84 --libs)
85 if [ "`uname`" = "Linux" ] 85 if [ "`uname`" = "Linux" ]
86 then 86 then
87 if [ "@XML_LIBDIR@" = "-L/usr/lib" -o "@XML_LIBDIR@" = "-L/usr/lib64 " ] 87 if [ "@XML_LIBDIR@" = "-L/usr/lib" -o "@XML_LIBDIR@" = "-L/usr/lib64 " ]
88 then 88 then
89 » » echo @XML_LIBS@ 89 » » echo @XML_LIBS@ @MODULE_PLATFORM_LIBS@
90 else 90 else
91 » » echo @XML_LIBDIR@ @XML_LIBS@ 91 » » echo @XML_LIBDIR@ @XML_LIBS@ @MODULE_PLATFORM_LIBS@
92 fi 92 fi
93 else 93 else
94 » echo @XML_LIBDIR@ @XML_LIBS@ @WIN32_EXTRA_LIBADD@ 94 » echo @XML_LIBDIR@ @XML_LIBS@ @MODULE_PLATFORM_LIBS@ @WIN32_EXTRA_LIB ADD@
95 fi 95 fi
96 ;; 96 ;;
97 97
98 *) 98 *)
99 usage 99 usage
100 exit 1 100 exit 1
101 ;; 101 ;;
102 esac 102 esac
103 shift 103 shift
104 done 104 done
105 105
106 exit 0 106 exit 0
OLDNEW
« no previous file with comments | « third_party/libxml/src/xml2-config.1 ('k') | third_party/libxml/src/xmlIO.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698