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

Side by Side Diff: third_party/libxslt/xslt-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
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 exec_prefix_set=no 5 exec_prefix_set=no
6 includedir=@includedir@ 6 includedir=@includedir@
7 libdir=@libdir@ 7 libdir=@libdir@
8 8
9 usage() 9 usage()
10 { 10 {
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
82 ;; 82 ;;
83 83
84 *) 84 *)
85 usage 85 usage
86 exit 1 86 exit 1
87 ;; 87 ;;
88 esac 88 esac
89 shift 89 shift
90 done 90 done
91 91
92 the_libs="@XSLT_LIBDIR@ @XSLT_LIBS@" 92 the_libs="@XSLT_LIBDIR@ @XSLT_LIBS@ @EXTRA_LIBS@"
93 if test "$includedir" != "/usr/include"; then 93 if test "$includedir" != "/usr/include"; then
94 the_flags="$the_flags -I$includedir `@XML_CONFIG@ --cflags`" 94 the_flags="$the_flags -I$includedir `@XML_CONFIG@ --cflags`"
95 else 95 else
96 the_flags="$the_flags `@XML_CONFIG@ --cflags`" 96 the_flags="$the_flags `@XML_CONFIG@ --cflags`"
97 fi 97 fi
98 98
99 if $cflags; then 99 if $cflags; then
100 all_flags="$the_flags" 100 all_flags="$the_flags"
101 fi 101 fi
102 102
(...skipping 25 matching lines...) Expand all
128 for i in $rev_libs; do 128 for i in $rev_libs; do
129 case " $ord_libs " in 129 case " $ord_libs " in
130 *\ $i\ *) ;; # already there 130 *\ $i\ *) ;; # already there
131 *) ord_libs="$i $ord_libs" ;; # add it to output in reverse order 131 *) ord_libs="$i $ord_libs" ;; # add it to output in reverse order
132 esac 132 esac
133 done 133 done
134 134
135 echo $other_flags $ord_libs 135 echo $other_flags $ord_libs
136 136
137 exit 0 137 exit 0
OLDNEW
« no previous file with comments | « third_party/libxslt/win32/libxslt/xsltproc.dsp ('k') | third_party/libxslt/xsltproc/Makefile.am » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698