OLD | NEW |
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 Loading... |
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 Loading... |
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 |
OLD | NEW |