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

Side by Side Diff: third_party/libxslt/configure.in

Issue 2777943003: Roll libxslt to ac341cbd792ee572941cc9a66e73800219a1a386 (Closed)
Patch Set: Update README.chromium. Created 3 years, 8 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/libxslt/configure ('k') | third_party/libxslt/libexslt/Makefile.am » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 dnl Process this file with autoconf to produce a configuration script. 1 dnl Process this file with autoconf to produce a configuration script.
2 AC_PREREQ(2.59) 2 AC_PREREQ(2.59)
3 AC_INIT(libxslt/xslt.c) 3 AC_INIT(libxslt/xslt.c)
4 AC_CONFIG_HEADERS(config.h) 4 AC_CONFIG_HEADERS(config.h)
5 AC_CANONICAL_HOST 5 AC_CANONICAL_HOST
6 AC_USE_SYSTEM_EXTENSIONS 6 AC_USE_SYSTEM_EXTENSIONS
7 7
8 dnl 8 dnl
9 dnl libxslt is the main part of the package 9 dnl libxslt is the main part of the package
10 dnl libexslt is an extension 10 dnl libexslt is an extension
(...skipping 230 matching lines...) Expand 10 before | Expand all | Expand 10 after
241 [M_LIBS="-lm"; AC_DEFINE([HAVE_POW],[], [Define if pow is there])])) 241 [M_LIBS="-lm"; AC_DEFINE([HAVE_POW],[], [Define if pow is there])]))
242 242
243 AC_CHECK_FUNC(floor, , AC_CHECK_LIB(m, floor, 243 AC_CHECK_FUNC(floor, , AC_CHECK_LIB(m, floor,
244 [M_LIBS="-lm"; AC_DEFINE([HAVE_FLOOR],[], [Define if floor is there])])) 244 [M_LIBS="-lm"; AC_DEFINE([HAVE_FLOOR],[], [Define if floor is there])]))
245 245
246 AC_CHECK_FUNC(fabs, , AC_CHECK_LIB(m, fabs, 246 AC_CHECK_FUNC(fabs, , AC_CHECK_LIB(m, fabs,
247 [M_LIBS="-lm"; AC_DEFINE([HAVE_FABS],[], [Define if fabs is there])])) 247 [M_LIBS="-lm"; AC_DEFINE([HAVE_FABS],[], [Define if fabs is there])]))
248 248
249 249
250 AC_CHECK_FUNCS(gettimeofday) 250 AC_CHECK_FUNCS(gettimeofday)
251 AC_CHECK_FUNCS(mktime localtime localtime_r asctime time gmtime gmtime_r ftime) 251 AC_CHECK_FUNCS(localtime localtime_r time gmtime gmtime_r ftime)
252 252
253 dnl Checking the standard string functions availability 253 dnl Checking the standard string functions availability
254 AC_CHECK_FUNCS(printf sprintf fprintf snprintf vfprintf vsprintf vsnprintf sscan f,, 254 AC_CHECK_FUNCS(printf sprintf fprintf snprintf vfprintf vsprintf vsnprintf sscan f,,
255 NEED_TRIO=1) 255 NEED_TRIO=1)
256 256
257 dnl Checking for POSIX timers 257 dnl Checking for POSIX timers
258 AC_CHECK_FUNCS(clock_gettime, [], [ 258 AC_CHECK_FUNCS(clock_gettime, [], [
259 AC_CHECK_LIB(rt, clock_gettime, [ 259 AC_CHECK_LIB(rt, clock_gettime, [
260 AC_DEFINE(HAVE_CLOCK_GETTIME, 1) 260 AC_DEFINE(HAVE_CLOCK_GETTIME, 1)
261 EXTRA_LIBS="$EXTRA_LIBS -lrt" 261 EXTRA_LIBS="$EXTRA_LIBS -lrt"
(...skipping 461 matching lines...) Expand 10 before | Expand all | Expand 10 after
723 tests/exslt/date/Makefile 723 tests/exslt/date/Makefile
724 tests/exslt/dynamic/Makefile 724 tests/exslt/dynamic/Makefile
725 tests/exslt/crypto/Makefile 725 tests/exslt/crypto/Makefile
726 tests/plugins/Makefile 726 tests/plugins/Makefile
727 doc/Makefile 727 doc/Makefile
728 xslt-config 728 xslt-config
729 libxslt.spec 729 libxslt.spec
730 ]) 730 ])
731 731
732 AC_OUTPUT 732 AC_OUTPUT
OLDNEW
« no previous file with comments | « third_party/libxslt/configure ('k') | third_party/libxslt/libexslt/Makefile.am » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698