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

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

Issue 2411263002: Roll libxslt to 8345634c5482ca04293ae1862d52fa9dd764aeca (Closed)
Patch Set: config.log Created 4 years, 2 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/common.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 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
11 dnl 11 dnl
12 LIBXSLT_MAJOR_VERSION=1 12 LIBXSLT_MAJOR_VERSION=1
13 LIBXSLT_MINOR_VERSION=1 13 LIBXSLT_MINOR_VERSION=1
14 LIBXSLT_MICRO_VERSION=28 14 LIBXSLT_MICRO_VERSION=29
15 PACKAGE=libxslt 15 PACKAGE=libxslt
16 LIBEXSLT_MAJOR_VERSION=0 16 LIBEXSLT_MAJOR_VERSION=0
17 LIBEXSLT_MINOR_VERSION=8 17 LIBEXSLT_MINOR_VERSION=8
18 LIBEXSLT_MICRO_VERSION=17 18 LIBEXSLT_MICRO_VERSION=17
19 LIBXML_REQUIRED_VERSION=2.6.27 19 LIBXML_REQUIRED_VERSION=2.6.27
20 20
21 21
22 LIBXSLT_VERSION=$LIBXSLT_MAJOR_VERSION.$LIBXSLT_MINOR_VERSION.$LIBXSLT_MICRO_VER SION 22 LIBXSLT_VERSION=$LIBXSLT_MAJOR_VERSION.$LIBXSLT_MINOR_VERSION.$LIBXSLT_MICRO_VER SION
23 LIBXSLT_VERSION_INFO=`expr $LIBXSLT_MAJOR_VERSION + $LIBXSLT_MINOR_VERSION`:$LIB XSLT_MICRO_VERSION:$LIBXSLT_MINOR_VERSION 23 LIBXSLT_VERSION_INFO=`expr $LIBXSLT_MAJOR_VERSION + $LIBXSLT_MINOR_VERSION`:$LIB XSLT_MICRO_VERSION:$LIBXSLT_MINOR_VERSION
24 24
(...skipping 203 matching lines...) Expand 10 before | Expand all | Expand 10 after
228 228
229 AC_SUBST(XSLT_LOCALE_XLOCALE) 229 AC_SUBST(XSLT_LOCALE_XLOCALE)
230 AC_SUBST(XSLT_LOCALE_WINAPI) 230 AC_SUBST(XSLT_LOCALE_WINAPI)
231 231
232 dnl 232 dnl
233 dnl Math detection 233 dnl Math detection
234 dnl 234 dnl
235 235
236 AC_CHECK_HEADERS(ieeefp.h nan.h math.h fp_class.h float.h ansidecl.h) 236 AC_CHECK_HEADERS(ieeefp.h nan.h math.h fp_class.h float.h ansidecl.h)
237 AC_CHECK_HEADERS(sys/timeb.h time.h sys/stat.h sys/select.h stdarg.h) 237 AC_CHECK_HEADERS(sys/timeb.h time.h sys/stat.h sys/select.h stdarg.h)
238 AC_CHECK_HEADERS(errno.h)
238 AC_CHECK_FUNCS(stat _stat) 239 AC_CHECK_FUNCS(stat _stat)
239 AC_CHECK_FUNC(pow, , AC_CHECK_LIB(m, pow, 240 AC_CHECK_FUNC(pow, , AC_CHECK_LIB(m, pow,
240 [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])]))
241 242
242 AC_CHECK_FUNC(floor, , AC_CHECK_LIB(m, floor, 243 AC_CHECK_FUNC(floor, , AC_CHECK_LIB(m, floor,
243 [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])]))
244 245
245 AC_CHECK_FUNC(fabs, , AC_CHECK_LIB(m, fabs, 246 AC_CHECK_FUNC(fabs, , AC_CHECK_LIB(m, fabs,
246 [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])]))
247 248
(...skipping 474 matching lines...) Expand 10 before | Expand all | Expand 10 after
722 tests/exslt/date/Makefile 723 tests/exslt/date/Makefile
723 tests/exslt/dynamic/Makefile 724 tests/exslt/dynamic/Makefile
724 tests/exslt/crypto/Makefile 725 tests/exslt/crypto/Makefile
725 tests/plugins/Makefile 726 tests/plugins/Makefile
726 doc/Makefile 727 doc/Makefile
727 xslt-config 728 xslt-config
728 libxslt.spec 729 libxslt.spec
729 ]) 730 ])
730 731
731 AC_OUTPUT 732 AC_OUTPUT
OLDNEW
« no previous file with comments | « third_party/libxslt/configure ('k') | third_party/libxslt/libexslt/common.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698