preparing release 1.1.15 a bit more cleanup Daniel
[platform/upstream/libxslt.git] / configure.in
1 dnl Process this file with autoconf to produce a configuration script.
2 AC_PREREQ(2.2)
3 AC_INIT(libxslt/xslt.c)
4 AM_CONFIG_HEADER(config.h)
5 AC_CANONICAL_HOST
6
7 dnl
8 dnl libxslt is the main part of the package
9 dnl libexslt is an extension
10 dnl
11 LIBXSLT_MAJOR_VERSION=1
12 LIBXSLT_MINOR_VERSION=1
13 LIBXSLT_MICRO_VERSION=15
14 PACKAGE=libxslt
15 LIBEXSLT_MAJOR_VERSION=0
16 LIBEXSLT_MINOR_VERSION=8
17 LIBEXSLT_MICRO_VERSION=12
18 LIBXML_REQUIRED_VERSION=2.6.17 # if you need module support.
19
20
21 LIBXSLT_VERSION=$LIBXSLT_MAJOR_VERSION.$LIBXSLT_MINOR_VERSION.$LIBXSLT_MICRO_VERSION
22 LIBXSLT_VERSION_INFO=`expr $LIBXSLT_MAJOR_VERSION + $LIBXSLT_MINOR_VERSION`:$LIBXSLT_MICRO_VERSION:$LIBXSLT_MINOR_VERSION
23
24 LIBXSLT_VERSION_NUMBER=`expr $LIBXSLT_MAJOR_VERSION \* 10000 + $LIBXSLT_MINOR_VERSION \* 100 + $LIBXSLT_MICRO_VERSION`
25 LIBXSLT_MAJOR_MINOR_VERSION=$LIBXSLT_MAJOR_VERSION.$LIBXSLT_MINOR_VERSION
26
27 if test -f CVS/Entries; then
28   extra=`grep ChangeLog CVS/Entries | grep -v LIBXSLT | sed -e s\%/ChangeLog/1\.%% -e s\%/.*$%%`
29   echo extra=$extra
30   if test "$extra" != ""
31   then
32       LIBXSLT_VERSION_EXTRA="-CVS$extra"
33   fi
34 fi
35
36 AC_SUBST(LIBXSLT_MAJOR_VERSION)
37 AC_SUBST(LIBXSLT_MINOR_VERSION)
38 AC_SUBST(LIBXSLT_MICRO_VERSION)
39 AC_SUBST(LIBXSLT_VERSION)
40 AC_SUBST(LIBXSLT_VERSION_INFO)
41 AC_SUBST(LIBXSLT_VERSION_NUMBER)
42 AC_SUBST(LIBXSLT_VERSION_EXTRA)
43 AC_SUBST(LIBXSLT_MAJOR_MINOR_VERSION)
44
45 dnl
46 dnl libexslt is an extension library
47 dnl
48
49 LIBEXSLT_VERSION=$LIBEXSLT_MAJOR_VERSION.$LIBEXSLT_MINOR_VERSION.$LIBEXSLT_MICRO_VERSION
50 LIBEXSLT_VERSION_INFO=`expr $LIBEXSLT_MAJOR_VERSION + $LIBEXSLT_MINOR_VERSION`:$LIBEXSLT_MICRO_VERSION:$LIBEXSLT_MINOR_VERSION
51
52 LIBEXSLT_VERSION_NUMBER=`expr $LIBEXSLT_MAJOR_VERSION \* 10000 + $LIBEXSLT_MINOR_VERSION \* 100 + $LIBEXSLT_MICRO_VERSION`
53
54 if test -f CVS/Entries; then
55   LIBEXSLT_VERSION_EXTRA=-CVS`grep ChangeLog CVS/Entries | sed -e s\%/ChangeLog/1\.%% -e s\%/.*$%%`
56 fi
57
58 AC_SUBST(LIBEXSLT_MAJOR_VERSION)
59 AC_SUBST(LIBEXSLT_MINOR_VERSION)
60 AC_SUBST(LIBEXSLT_MICRO_VERSION)
61 AC_SUBST(LIBEXSLT_VERSION)
62 AC_SUBST(LIBEXSLT_VERSION_INFO)
63 AC_SUBST(LIBEXSLT_VERSION_NUMBER)
64 AC_SUBST(LIBEXSLT_VERSION_EXTRA)
65
66 VERSION=${LIBXSLT_VERSION}
67
68 AM_INIT_AUTOMAKE($PACKAGE, $VERSION)
69
70 # AM_MAINTAINER_MODE
71
72 AC_ARG_WITH(html-dir, [  --with-html-dir=PATH path to installed docs ])
73
74 dnl
75 dnl Specific dir for HTML output ?
76 dnl
77
78 if test "x$with_html_dir" = "x" ; then
79   HTML_DIR='$(prefix)/doc'
80 else
81   HTML_DIR=$with_html_dir
82 fi
83 AC_SUBST(HTML_DIR)
84
85 dnl
86 dnl Check the environment
87 dnl
88
89 AC_ISC_POSIX
90 AC_PROG_CC
91 AC_PROG_INSTALL
92 AC_PROG_CPP
93 AC_PATH_PROG(RM, rm, /bin/rm)
94 AC_PATH_PROG(MV, mv, /bin/mv)
95 AC_PATH_PROG(TAR, tar, /bin/tar)
96
97 AC_STDC_HEADERS
98 AM_PROG_LIBTOOL
99
100 dnl
101 dnl Math detection
102 dnl
103
104 AC_CHECK_HEADERS(sys/types.h sys/time.h stdlib.h unistd.h string.h)
105 AC_CHECK_HEADERS(ieeefp.h nan.h math.h fp_class.h float.h ansidecl.h)
106 AC_CHECK_HEADERS(sys/timeb.h time.h sys/stat.h sys/select.h stdarg.h)
107 AC_CHECK_FUNCS(stat _stat)
108 AC_CHECK_FUNC(isnan, , AC_CHECK_LIB(m, isnan,
109   [M_LIBS="-lm"; AC_DEFINE(HAVE_ISNAN)]))
110
111 AC_CHECK_FUNC(isinf, , AC_CHECK_LIB(m, isinf,
112   [M_LIBS="-lm"; AC_DEFINE(HAVE_ISINF)]))
113
114 AC_CHECK_FUNC(pow, , AC_CHECK_LIB(m, pow,
115   [M_LIBS="-lm"; AC_DEFINE(HAVE_POW)]))
116
117 AC_CHECK_FUNC(floor, , AC_CHECK_LIB(m, floor,
118   [M_LIBS="-lm"; AC_DEFINE(HAVE_FLOOR)]))
119
120 AC_CHECK_FUNC(fabs, , AC_CHECK_LIB(m, fabs,
121   [M_LIBS="-lm"; AC_DEFINE(HAVE_FABS)]))
122 AC_CHECK_FUNCS(gettimeofday)
123 AC_CHECK_FUNCS(mktime localtime localtime_r asctime time gmtime_r ftime)
124
125 dnl Checking the standard string functions availability
126 AC_CHECK_FUNCS(printf sprintf fprintf snprintf vfprintf vsprintf vsnprintf sscanf,,
127                NEED_TRIO=1)
128
129 dnl
130 dnl Check for trio string functions
131 dnl
132
133 if test "${NEED_TRIO}" = "1" ; then
134     echo Reusing trio library for string functions
135     WITH_TRIO=1
136 else    
137     WITH_TRIO=0
138 fi
139 AC_SUBST(WITH_TRIO)
140
141 dnl
142 dnl Some packages need to be checked against version numbers so we
143 dnl define a function here for later use
144 dnl
145 AC_DEFUN([VERSION_TO_NUMBER],
146 [`$1 | sed -e 's/libxml //' | awk 'BEGIN { FS = "."; } { printf "%d", ([$]1 * 1000 + [$]2) * 1000 + [$]3;}'`])
147
148 dnl
149 dnl Perl is just needed for generating some data for XSLtmark
150 dnl
151
152 AC_CHECK_PROG(PERL, perl, perl, false)
153 AM_CONDITIONAL(WITH_PERL, test "$PERL" != "false")
154
155 dnl
156 dnl check for python
157 dnl
158
159 PYTHON=
160 PYTHON_VERSION=
161 PYTHON_INCLUDES=
162 PYTHON_SITE_PACKAGES=
163 pythondir=
164 AC_ARG_WITH(python, [  --with-python[=DIR]    Build Python bindings if found])
165 if test "$with_python" != "no" ; then
166     if test -x "$with_python/bin/python"
167     then
168         echo Found python in $with_python/bin/python
169         PYTHON="$with_python/bin/python"
170     else
171         if test -x "$with_python"
172         then
173             echo Found python in $with_python
174             PYTHON="$with_python"
175         else
176             AC_PATH_PROG(PYTHON, python python2.4 python2.3 python2.2 python2.1 python2.0 python1.6 python1.5)
177         fi
178     fi
179     if test "$PYTHON" != ""
180     then
181         PYTHON_VERSION=`$PYTHON -c "import sys; print sys.version[[0:3]]"`
182         echo Found Python version $PYTHON_VERSION
183         LIBXML2_PYTHON=`$PYTHON -c "try : import libxml2 ; print 1
184 except: print 0"`
185         if test "$LIBXML2_PYTHON" = "1"
186         then
187             echo Found libxml2-python module
188         else
189             echo Warning: Missing libxml2-python
190         fi
191     fi
192     if test "$PYTHON_VERSION" != ""
193     then
194         if test -r $with_python/include/python$PYTHON_VERSION/Python.h -a \
195            -d $with_python/lib/python$PYTHON_VERSION/site-packages
196         then
197             PYTHON_INCLUDES=$with_python/include/python$PYTHON_VERSION
198             PYTHON_SITE_PACKAGES=$with_python/lib/python$PYTHON_VERSION/site-packages
199         else
200             if test -r $prefix/include/python$PYTHON_VERSION/Python.h
201             then
202                 PYTHON_INCLUDES='$(prefix)/include/python$(PYTHON_VERSION)'
203                 PYTHON_SITE_PACKAGES='$(libdir)/python$(PYTHON_VERSION)/site-packages'
204             else
205                 if test -r /usr/include/python$PYTHON_VERSION/Python.h
206                 then
207                     PYTHON_INCLUDES=/usr/include/python$PYTHON_VERSION
208                     PYTHON_SITE_PACKAGES='$(libdir)/python$(PYTHON_VERSION)/site-packages'
209                 else
210                     echo could not find python$PYTHON_VERSION/Python.h
211                 fi
212             fi
213             if test ! -d "$PYTHON_SITE_PACKAGES"
214             then
215                     PYTHON_SITE_PACKAGES=`$PYTHON -c "from distutils import sysconfig; print sysconfig.get_python_lib()"`
216             fi
217         fi
218     fi
219     if test "$with_python" != ""
220     then
221         pythondir='$(PYTHON_SITE_PACKAGES)'
222     else
223         pythondir='$(libdir)/python${PYTHON_VERSION}/site-packages'
224     fi
225 fi
226 AM_CONDITIONAL(WITH_PYTHON, test "$PYTHON_INCLUDES" != "")
227 if test "$PYTHON_INCLUDES" != ""
228 then
229     PYTHON_SUBDIR=python
230 else
231     PYTHON_SUBDIR=
232 fi
233 AC_SUBST(pythondir)
234 AC_SUBST(PYTHON_SUBDIR)
235
236 AC_ARG_WITH(crypto, [  --with-crypto           Add crypto support to exslt (on)])
237 WITH_CRYPTO=0
238 if test "$with_crypto" = "no" ; then
239     echo Disabling crypto support
240     LIBGCRYPT_CFLAGS=""
241     LIBGCRYPT_LIBS=""
242 else
243     AC_PATH_PROG(LIBGCRYPT_CONFIG, libgcrypt-config, no)
244     if test "$LIBGCRYPT_CONFIG" != "no" ; then
245       LIBGCRYPT_VERSION=`$LIBGCRYPT_CONFIG --version`
246       if test VERSION_TO_NUMBER(echo $LIBGCRYPT_VERSION) -lt VERSION_TO_NUMBER(echo "1.1.42")
247       then
248         LIBGCRYPT_CFLAGS=""
249         LIBGCRYPT_LIBS=""
250         echo gcrypt library version < 1.1.42 - Crypto extensions will not be available.
251       else
252         LIBGCRYPT_CFLAGS=`$LIBGCRYPT_CONFIG $libgcrypt_config_args --cflags`
253         LIBGCRYPT_LIBS=`$LIBGCRYPT_CONFIG $libgcrypt_config_args --libs`
254         AC_DEFINE(HAVE_GCRYPT, 1, [Define if gcrypt library is available.])
255         echo Crypto extensions will be available.
256                 WITH_CRYPTO=1
257       fi
258     else
259       LIBGCRYPT_CFLAGS=""
260       LIBGCRYPT_LIBS=""
261       echo Crypto extensions will not be available. Install libgcrypt and reconfigure to make available.
262     fi
263 fi
264 AC_SUBST(WITH_CRYPTO)
265 AC_SUBST(LIBGCRYPT_CFLAGS)
266 AC_SUBST(LIBGCRYPT_LIBS)
267
268 dnl
269 dnl Debug for DV (-Wunreachable-code)
270 dnl
271 if [[ "${LOGNAME}" = "veillard" -a "`pwd`" = "/u/veillard/XSLT" ]] || \
272    [[ "${LOGNAME}" = "bill" -a "`pwd`" = "/home/bill/gnomecvs/xsltest" ]]
273    then
274     if test "${with_mem_debug}" = "" ;
275     then
276         with_mem_debug="yes"
277     fi
278     CFLAGS="-Wall -g -O -ansi -pedantic -W -Wunused -Wimplicit -Wreturn-type -Wswitch -Wcomment -Wtrigraphs -Wformat -Wchar-subscripts -Wuninitialized -Wparentheses -Wshadow -Wpointer-arith -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Winline "
279     if test "`uname -i`" != "x86_64" ;
280     then
281         STATIC_BINARIES="-static"
282     else
283         STATIC_BINARIES=
284     fi
285     if test "$LOGNAME" = "veillard"
286     then
287         LIBXML_SRC="/u/veillard/XML"
288         EXTRA_LIBS="$EXTRA_LIBS -ldl"
289     fi
290 else
291     STATIC_BINARIES=
292 fi
293 AC_SUBST(STATIC_BINARIES)
294
295 AC_ARG_WITH(debug, [  --with-debug            Add the debugging code (on)])
296 if test "$with_debug" = "no" ; then
297     echo Disabling debug support
298     WITH_XSLT_DEBUG=0
299 else    
300     WITH_XSLT_DEBUG=1
301 fi
302 AC_SUBST(WITH_XSLT_DEBUG)
303
304 AC_ARG_WITH(mem_debug, [  --with-mem-debug        Add the memory debugging module (off)])
305 if test "$with_mem_debug" = "yes" ; then
306     echo Enabling memory debug support
307     WITH_MEM_DEBUG=1
308 else    
309     WITH_MEM_DEBUG=0
310 fi
311 AC_SUBST(WITH_MEM_DEBUG)
312
313 dnl 
314 dnl Is debugger support requested
315 dnl
316 AC_ARG_WITH(with_debugger, [  --with-debugger        Add the debugging support (on)])
317 if test "$with_debugger" = "no" ; then
318     echo Disabling debugger
319     WITH_DEBUGGER=0
320 else
321     echo Enabling debugger
322     WITH_DEBUGGER=1
323     AC_DEFINE(WITH_DEBUGGER)
324 fi
325 AC_SUBST(WITH_DEBUGGER)
326
327 dnl
328 dnl The following new parameters were added to offer
329 dnl the ability to specify the location of the libxml
330 dnl library during linking and compilation.
331 dnl
332 dnl original work - Mathieu Lacage 30/03/2000
333 dnl some tweaking - David Härdeman 30/10/2001
334 dnl
335
336 LIBXML_CONFIG_PREFIX=""
337 LIBXML_SRC=""
338
339 AC_ARG_WITH(libxml-prefix,
340         [  --with-libxml-prefix=[PFX]           Specify location of libxml config],
341         LIBXML_CONFIG_PREFIX=$withval
342 )
343         
344 AC_ARG_WITH(libxml-include-prefix,
345         [  --with-libxml-include-prefix=[PFX]   Specify location of libxml headers],
346         LIBXML_CFLAGS="-I$withval"
347 )
348
349 AC_ARG_WITH(libxml-libs-prefix,
350         [  --with-libxml-libs-prefix=[PFX]      Specify location of libxml libs],
351         LIBXML_LIBS="-L$withval"
352 )
353
354 AC_ARG_WITH(libxml-src,
355         [  --with-libxml-src=[DIR]              For libxml thats not installed yet (sets all three above)],
356         LIBXML_SRC="$withval"
357 )
358 AC_SUBST(LIBXML_SRC)
359
360 dnl
361 dnl where is xml2-config
362 dnl
363
364 AC_SUBST(LIBXML_REQUIRED_VERSION)
365 AC_MSG_CHECKING(for libxml libraries >= $LIBXML_REQUIRED_VERSION) 
366 if test "x$LIBXML_CONFIG_PREFIX" != "x"
367 then
368         XML_CONFIG=${LIBXML_CONFIG_PREFIX}/bin/xml2-config
369 else
370         XML_CONFIG=xml2-config
371 fi
372
373 dnl
374 dnl imported from libxml2, c.f. #77827 
375 dnl
376 if test "${GCC}" != "yes" ; then
377     case "${host}" in
378           *-*-hpux* )
379                CFLAGS="${CFLAGS} -Wp,-H30000"
380                ;;
381           *-dec-osf* )
382                CFLAGS="${CFLAGS} -ieee"
383                ;;
384     esac
385 else
386     CFLAGS="${CFLAGS} -Wall"
387     case "${host}" in
388           alpha*-*-linux* )
389                CFLAGS="${CFLAGS} -mieee"
390                ;;
391           alpha*-*-osf* )
392                CFLAGS="${CFLAGS} -mieee"
393                ;;
394     esac
395 fi
396
397 dnl
398 dnl Override other variables if LIBXML_SRC is set
399 dnl
400
401 if test "x$LIBXML_SRC" != "x"
402 then
403         CWD=`pwd`
404         if cd $LIBXML_SRC
405         then
406                 SRC_DIR=`pwd`
407                 XML_CONFIG=${SRC_DIR}/xml2-config
408                 LIBXML_CFLAGS="-I${SRC_DIR}/include"
409                 LIBXML_LIBS="-L${SRC_DIR}"
410                 cd $CWD
411         else
412                 AC_MSG_ERROR([libxml source dir not found (${LIBXML_SRC}), typo?])
413         fi
414 fi
415
416 dnl
417 dnl make sure xml2-config is executable,
418 dnl test version and init our variables
419 dnl
420
421 if ${XML_CONFIG} --libs print > /dev/null 2>&1
422 then
423         XMLVERS=`$XML_CONFIG --version`
424         if test VERSION_TO_NUMBER(echo $XMLVERS) -ge VERSION_TO_NUMBER(echo $LIBXML_REQUIRED_VERSION)
425         then
426                 LIBXML_LIBS="$LIBXML_LIBS `$XML_CONFIG --libs`"
427                 LIBXML_CFLAGS="$LIBXML_CFLAGS `$XML_CONFIG --cflags`"
428                 AC_MSG_RESULT($XMLVERS found)
429         else
430                 AC_MSG_ERROR(Version $XMLVERS found. You need at least libxml2 $LIBXML_REQUIRED_VERSION for this version of libxslt)
431         fi
432 else
433         AC_MSG_ERROR([Could not find libxml2 anywhere, check ftp://xmlsoft.org/.])
434 fi
435
436
437 AC_SUBST(CFLAGS)
438 AC_SUBST(CPPFLAGS)
439 AC_SUBST(LDFLAGS)
440
441 AC_ARG_WITH(plugins,
442 [  --with-plugins          Add plugin extension support (on)])
443 if test "$with_plugins" = ""
444 then
445     with_plugins=yes
446 fi
447
448 AC_MSG_CHECKING([whether shared libraries will be built (required for plugins)])
449 if test "$enable_shared" = "no" -a "$with_plugins" = "yes"; then
450          AC_MSG_RESULT(no)
451          AC_MSG_WARN([Disabling plugin support.])
452          AC_MSG_WARN([Plugins require that shared libraries be built.])
453          with_plugins=no
454 else
455          AC_MSG_RESULT(yes)
456 fi
457
458 if test "$with_plugins" = "yes" ; then
459   AC_MSG_CHECKING([libxml2 module support])
460   WITH_MODULES="`$XML_CONFIG --modules`"
461   if test "${WITH_MODULES}" = "1"; then
462     AC_MSG_RESULT(yes)
463   else
464     AC_MSG_RESULT(no)
465     WITH_MODULES="0"
466   fi
467 else
468   WITH_MODULES="0"
469 fi
470
471 AC_SUBST(WITH_MODULES)
472 AM_CONDITIONAL(WITH_MODULES, test "$WITH_MODULES" == "1")
473
474 dnl
475 dnl setup default module path
476 dnl
477 module_prefix=$prefix
478 test "x$module_prefix" = xNONE && module_prefix=$ac_default_prefix
479 LIBXSLT_DEFAULT_PLUGINS_PATH="\"$module_prefix/lib/libxslt/$LIBXSLT_MAJOR_VERSION.$LIBXSLT_MINOR_VERSION\""
480 AC_SUBST(LIBXSLT_DEFAULT_PLUGINS_PATH)
481
482 dnl
483 dnl In build tree I use a static version with memory debug enabled
484 dnl
485 if test "${LOGNAME}" = "veillard" -a "`pwd`" = "/u/veillard/XSLT" ; then
486     if test "`uname -i`" != "x86_64" -a -e $HOME/XML/.libs/libxml2.a ;
487     then
488         LIBXML_LIBS="$HOME/XML/.libs/libxml2.a -lpthread -lz"
489     fi
490     DV_LINK="1"
491     XSLTPROCDV="xsltproc.dv"
492     INSTALLED_XSLT_LIB=""
493     LIBXML_SRC="$HOME/XML/"
494 fi
495
496 WIN32_EXTRA_LIBADD=
497 WIN32_EXTRA_LDFLAGS=
498 case "$host" in
499  *-*-mingw*)
500  WIN32_EXTRA_LIBADD="-lwsock32"
501  WIN32_EXTRA_LDFLAGS="-no-undefined"
502  AC_DEFINE([_WINSOCKAPI_],1,[Using the Win32 Socket implementation])
503  AC_DEFINE([snprintf],[_snprintf],[Win32 Std C name mangling work-around])
504  AC_DEFINE([vsnprintf],[_vsnprintf],[Win32 Std C name mangling work-around])
505  ;;
506 esac
507 AC_SUBST(WIN32_EXTRA_LIBADD)
508 AC_SUBST(WIN32_EXTRA_LDFLAGS)
509
510
511 AC_SUBST(XSLTPROCDV)
512 AC_SUBST(PYTHONSODV)
513 AC_SUBST(XML_CONFIG)
514 AC_SUBST(LIBXML_LIBS)
515 AC_SUBST(LIBXML_CFLAGS)
516 AC_SUBST(PYTHON)
517 AC_SUBST(PYTHON_VERSION)
518 AC_SUBST(PYTHON_INCLUDES)
519 AC_SUBST(PYTHON_SITE_PACKAGES)
520
521 XSLT_LIBDIR='-L${libdir}'
522 XSLT_INCLUDEDIR='-I${includedir}'
523 XSLT_LIBS="-lxslt $LIBXML_LIBS $M_LIBS"
524 AC_SUBST(XSLT_LIBDIR)
525 AC_SUBST(XSLT_INCLUDEDIR)
526 AC_SUBST(XSLT_LIBS)
527
528 EXSLT_LIBDIR='-L${libdir}'
529 EXSLT_INCLUDEDIR='-I${includedir}'
530 EXSLT_LIBS="-lexslt $XSLT_LIBS $LIBGCRYPT_LIBS"
531 AC_SUBST(EXSLT_LIBDIR)
532 AC_SUBST(EXSLT_INCLUDEDIR)
533 AC_SUBST(EXSLT_LIBS)
534
535 EXTRA_LIBS="$EXTRA_LIBS $LIBXML_LIBS $M_LIBS"
536 AC_SUBST(EXTRA_LIBS)
537
538 AC_SUBST(M_LIBS)
539
540 dnl for the spec file
541 RELDATE=`date +'%a %b %e %Y'`
542 AC_SUBST(RELDATE)
543
544 ( cd $srcdir
545 rm -f COPYING.LIB COPYING
546 $LN_S Copyright COPYING
547 )
548
549
550 AC_OUTPUT([
551 Makefile
552 libxslt.pc
553 libexslt.pc
554 libxslt/Makefile
555 libxslt/xsltconfig.h
556 libxslt/xsltwin32config.h
557 libexslt/Makefile
558 libexslt/exsltconfig.h
559 xsltproc/Makefile
560 python/Makefile
561 python/tests/Makefile
562 tests/Makefile
563 tests/docs/Makefile
564 tests/REC1/Makefile
565 tests/REC2/Makefile
566 tests/REC/Makefile
567 tests/general/Makefile
568 tests/reports/Makefile
569 tests/extensions/Makefile
570 tests/namespaces/Makefile
571 tests/keys/Makefile
572 tests/numbers/Makefile
573 tests/documents/Makefile
574 tests/xmlspec/Makefile
575 tests/multiple/Makefile
576 tests/xinclude/Makefile
577 tests/XSLTMark/Makefile
578 tests/docbook/Makefile
579 tests/exslt/Makefile
580 tests/exslt/common/Makefile
581 tests/exslt/functions/Makefile
582 tests/exslt/math/Makefile
583 tests/exslt/sets/Makefile
584 tests/exslt/strings/Makefile
585 tests/exslt/date/Makefile
586 tests/exslt/dynamic/Makefile
587 tests/plugins/Makefile
588 doc/Makefile
589 xslt-config
590 libxslt.spec
591 ])