applied patch from Joel Reed to ease plugin integration 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_VERSION=
160 PYTHON_INCLUDES=
161 PYTHON_SITE_PACKAGES=
162 pythondir=
163 AC_ARG_WITH(python, [  --with-python[=DIR]    Build Python bindings if found])
164 if test "$with_python" != "no" ; then
165     if test -x "$with_python/bin/python"
166     then
167         echo Found python in $with_python/bin/python
168         PYTHON="$with_python/bin/python"
169     else
170         if test -x "$with_python"
171         then
172             echo Found python in $with_python
173             PYTHON="$with_python"
174         else
175             if test -x "$PYTHON"
176             then
177                 echo Found python in environment PYTHON=$PYTHON
178             else
179                 AC_PATH_PROG(PYTHON, python python2.6 python2.5 python2.4 python2.3 python2.2 python2.1 python2.0 python1.6 python1.5)
180             fi
181         fi
182     fi
183     if test "$PYTHON" != ""
184     then
185         PYTHON_VERSION=`$PYTHON -c "import sys; print sys.version[[0:3]]"`
186         echo Found Python version $PYTHON_VERSION
187         LIBXML2_PYTHON=`$PYTHON -c "try : import libxml2 ; print 1
188 except: print 0"`
189         if test "$LIBXML2_PYTHON" = "1"
190         then
191             echo Found libxml2-python module
192         else
193             echo Warning: Missing libxml2-python
194         fi
195     fi
196     if test "$PYTHON_VERSION" != ""
197     then
198         if test -r $with_python/include/python$PYTHON_VERSION/Python.h -a \
199            -d $with_python/lib/python$PYTHON_VERSION/site-packages
200         then
201             PYTHON_INCLUDES=$with_python/include/python$PYTHON_VERSION
202             PYTHON_SITE_PACKAGES=$with_python/lib/python$PYTHON_VERSION/site-packages
203         else
204             if test -r $prefix/include/python$PYTHON_VERSION/Python.h
205             then
206                 PYTHON_INCLUDES='$(prefix)/include/python$(PYTHON_VERSION)'
207                 PYTHON_SITE_PACKAGES='$(libdir)/python$(PYTHON_VERSION)/site-packages'
208             else
209                 if test -r /usr/include/python$PYTHON_VERSION/Python.h
210                 then
211                     PYTHON_INCLUDES=/usr/include/python$PYTHON_VERSION
212                     PYTHON_SITE_PACKAGES='$(libdir)/python$(PYTHON_VERSION)/site-packages'
213                 else
214                     echo could not find python$PYTHON_VERSION/Python.h
215                 fi
216             fi
217             if test ! -d "$PYTHON_SITE_PACKAGES"
218             then
219                     PYTHON_SITE_PACKAGES=`$PYTHON -c "from distutils import sysconfig; print sysconfig.get_python_lib()"`
220             fi
221         fi
222     fi
223     if test "$with_python" != ""
224     then
225         pythondir='$(PYTHON_SITE_PACKAGES)'
226     else
227         pythondir='$(libdir)/python${PYTHON_VERSION}/site-packages'
228     fi
229 fi
230 AM_CONDITIONAL(WITH_PYTHON, test "$PYTHON_INCLUDES" != "")
231 if test "$PYTHON_INCLUDES" != ""
232 then
233     PYTHON_SUBDIR=python
234 else
235     PYTHON_SUBDIR=
236 fi
237 AC_SUBST(pythondir)
238 AC_SUBST(PYTHON_SUBDIR)
239
240 AC_ARG_WITH(crypto, [  --with-crypto           Add crypto support to exslt (on)])
241 WITH_CRYPTO=0
242 if test "$with_crypto" = "no" ; then
243     echo Disabling crypto support
244     LIBGCRYPT_CFLAGS=""
245     LIBGCRYPT_LIBS=""
246 else
247     AC_PATH_PROG(LIBGCRYPT_CONFIG, libgcrypt-config, no)
248     if test "$LIBGCRYPT_CONFIG" != "no" ; then
249       LIBGCRYPT_VERSION=`$LIBGCRYPT_CONFIG --version`
250       if test VERSION_TO_NUMBER(echo $LIBGCRYPT_VERSION) -lt VERSION_TO_NUMBER(echo "1.1.42")
251       then
252         LIBGCRYPT_CFLAGS=""
253         LIBGCRYPT_LIBS=""
254         echo gcrypt library version < 1.1.42 - Crypto extensions will not be available.
255       else
256         LIBGCRYPT_CFLAGS=`$LIBGCRYPT_CONFIG $libgcrypt_config_args --cflags`
257         LIBGCRYPT_LIBS=`$LIBGCRYPT_CONFIG $libgcrypt_config_args --libs`
258         AC_DEFINE(HAVE_GCRYPT, 1, [Define if gcrypt library is available.])
259         echo Crypto extensions will be available.
260                 WITH_CRYPTO=1
261       fi
262     else
263       LIBGCRYPT_CFLAGS=""
264       LIBGCRYPT_LIBS=""
265       echo Crypto extensions will not be available. Install libgcrypt and reconfigure to make available.
266     fi
267 fi
268 AC_SUBST(WITH_CRYPTO)
269 AC_SUBST(LIBGCRYPT_CFLAGS)
270 AC_SUBST(LIBGCRYPT_LIBS)
271
272 dnl
273 dnl Debug for DV (-Wunreachable-code)
274 dnl
275 if [[ "${LOGNAME}" = "veillard" -a "`pwd`" = "/u/veillard/XSLT" ]] || \
276    [[ "${LOGNAME}" = "bill" -a "`pwd`" = "/home/bill/gnomecvs/xsltest" ]]
277    then
278     if test "${with_mem_debug}" = "" ;
279     then
280         with_mem_debug="yes"
281     fi
282     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 "
283     if test "`uname -i`" != "x86_64" ;
284     then
285         STATIC_BINARIES="-static"
286     else
287         STATIC_BINARIES=
288     fi
289     if test "$LOGNAME" = "veillard"
290     then
291         LIBXML_SRC="/u/veillard/XML"
292         EXTRA_LIBS="$EXTRA_LIBS -ldl"
293     fi
294 else
295     STATIC_BINARIES=
296 fi
297 AC_SUBST(STATIC_BINARIES)
298
299 AC_ARG_WITH(debug, [  --with-debug            Add the debugging code (on)])
300 if test "$with_debug" = "no" ; then
301     echo Disabling debug support
302     WITH_XSLT_DEBUG=0
303 else    
304     WITH_XSLT_DEBUG=1
305 fi
306 AC_SUBST(WITH_XSLT_DEBUG)
307
308 AC_ARG_WITH(mem_debug, [  --with-mem-debug        Add the memory debugging module (off)])
309 if test "$with_mem_debug" = "yes" ; then
310     echo Enabling memory debug support
311     WITH_MEM_DEBUG=1
312 else    
313     WITH_MEM_DEBUG=0
314 fi
315 AC_SUBST(WITH_MEM_DEBUG)
316
317 dnl 
318 dnl Is debugger support requested
319 dnl
320 AC_ARG_WITH(with_debugger, [  --with-debugger        Add the debugging support (on)])
321 if test "$with_debugger" = "no" ; then
322     echo Disabling debugger
323     WITH_DEBUGGER=0
324 else
325     echo Enabling debugger
326     WITH_DEBUGGER=1
327     AC_DEFINE(WITH_DEBUGGER)
328 fi
329 AC_SUBST(WITH_DEBUGGER)
330
331 dnl
332 dnl The following new parameters were added to offer
333 dnl the ability to specify the location of the libxml
334 dnl library during linking and compilation.
335 dnl
336 dnl original work - Mathieu Lacage 30/03/2000
337 dnl some tweaking - David Härdeman 30/10/2001
338 dnl
339
340 LIBXML_CONFIG_PREFIX=""
341 LIBXML_SRC=""
342
343 AC_ARG_WITH(libxml-prefix,
344         [  --with-libxml-prefix=[PFX]           Specify location of libxml config],
345         LIBXML_CONFIG_PREFIX=$withval
346 )
347         
348 AC_ARG_WITH(libxml-include-prefix,
349         [  --with-libxml-include-prefix=[PFX]   Specify location of libxml headers],
350         LIBXML_CFLAGS="-I$withval"
351 )
352
353 AC_ARG_WITH(libxml-libs-prefix,
354         [  --with-libxml-libs-prefix=[PFX]      Specify location of libxml libs],
355         LIBXML_LIBS="-L$withval"
356 )
357
358 AC_ARG_WITH(libxml-src,
359         [  --with-libxml-src=[DIR]              For libxml thats not installed yet (sets all three above)],
360         LIBXML_SRC="$withval"
361 )
362 AC_SUBST(LIBXML_SRC)
363
364 dnl
365 dnl where is xml2-config
366 dnl
367
368 AC_SUBST(LIBXML_REQUIRED_VERSION)
369 AC_MSG_CHECKING(for libxml libraries >= $LIBXML_REQUIRED_VERSION) 
370 if test "x$LIBXML_CONFIG_PREFIX" != "x"
371 then
372         XML_CONFIG=${LIBXML_CONFIG_PREFIX}/bin/xml2-config
373 else
374         XML_CONFIG=xml2-config
375 fi
376
377 dnl
378 dnl imported from libxml2, c.f. #77827 
379 dnl
380 if test "${GCC}" != "yes" ; then
381     case "${host}" in
382           *-*-hpux* )
383                CFLAGS="${CFLAGS} -Wp,-H30000"
384                ;;
385           *-dec-osf* )
386                CFLAGS="${CFLAGS} -ieee"
387                ;;
388     esac
389 else
390     CFLAGS="${CFLAGS} -Wall"
391     case "${host}" in
392           alpha*-*-linux* )
393                CFLAGS="${CFLAGS} -mieee"
394                ;;
395           alpha*-*-osf* )
396                CFLAGS="${CFLAGS} -mieee"
397                ;;
398     esac
399 fi
400
401 dnl
402 dnl Override other variables if LIBXML_SRC is set
403 dnl
404
405 if test "x$LIBXML_SRC" != "x"
406 then
407         CWD=`pwd`
408         if cd $LIBXML_SRC
409         then
410                 SRC_DIR=`pwd`
411                 XML_CONFIG=${SRC_DIR}/xml2-config
412                 LIBXML_CFLAGS="-I${SRC_DIR}/include"
413                 LIBXML_LIBS="-L${SRC_DIR}"
414                 cd $CWD
415         else
416                 AC_MSG_ERROR([libxml source dir not found (${LIBXML_SRC}), typo?])
417         fi
418 fi
419
420 dnl
421 dnl make sure xml2-config is executable,
422 dnl test version and init our variables
423 dnl
424
425 if ${XML_CONFIG} --libs print > /dev/null 2>&1
426 then
427         XMLVERS=`$XML_CONFIG --version`
428         if test VERSION_TO_NUMBER(echo $XMLVERS) -ge VERSION_TO_NUMBER(echo $LIBXML_REQUIRED_VERSION)
429         then
430                 LIBXML_LIBS="$LIBXML_LIBS `$XML_CONFIG --libs`"
431                 LIBXML_CFLAGS="$LIBXML_CFLAGS `$XML_CONFIG --cflags`"
432                 AC_MSG_RESULT($XMLVERS found)
433         else
434                 AC_MSG_ERROR(Version $XMLVERS found. You need at least libxml2 $LIBXML_REQUIRED_VERSION for this version of libxslt)
435         fi
436 else
437         AC_MSG_ERROR([Could not find libxml2 anywhere, check ftp://xmlsoft.org/.])
438 fi
439
440
441 AC_SUBST(CFLAGS)
442 AC_SUBST(CPPFLAGS)
443 AC_SUBST(LDFLAGS)
444
445 AC_ARG_WITH(plugins,
446 [  --with-plugins          Add plugin extension support (on)])
447 if test "$with_plugins" = ""
448 then
449     with_plugins=yes
450 fi
451
452 AC_MSG_CHECKING([whether shared libraries will be built (required for plugins)])
453 if test "$enable_shared" = "no" -a "$with_plugins" = "yes"; then
454          AC_MSG_RESULT(no)
455          AC_MSG_WARN([Disabling plugin support.])
456          AC_MSG_WARN([Plugins require that shared libraries be built.])
457          with_plugins=no
458 else
459          AC_MSG_RESULT(yes)
460 fi
461
462 if test "$with_plugins" = "yes" ; then
463   AC_MSG_CHECKING([libxml2 module support])
464   WITH_MODULES="`$XML_CONFIG --modules`"
465   if test "${WITH_MODULES}" = "1"; then
466     AC_MSG_RESULT(yes)
467   else
468     AC_MSG_RESULT(no)
469     WITH_MODULES="0"
470   fi
471 else
472   WITH_MODULES="0"
473 fi
474
475 AC_SUBST(WITH_MODULES)
476 AM_CONDITIONAL(WITH_MODULES, test "$WITH_MODULES" == "1")
477
478 dnl
479 dnl setup default module path
480 dnl
481 module_prefix=$prefix
482 test "x$module_prefix" = xNONE && module_prefix=$ac_default_prefix
483 LIBXSLT_DEFAULT_PLUGINS_PATH="$module_prefix/lib/libxslt-plugins"
484 AC_SUBST(LIBXSLT_DEFAULT_PLUGINS_PATH)
485
486 dnl
487 dnl In build tree I use a static version with memory debug enabled
488 dnl
489 if test "${LOGNAME}" = "veillard" -a "`pwd`" = "/u/veillard/XSLT" ; then
490     if test "`uname -i`" != "x86_64" -a -e $HOME/XML/.libs/libxml2.a ;
491     then
492         LIBXML_LIBS="$HOME/XML/.libs/libxml2.a -lpthread -lz"
493     fi
494     DV_LINK="1"
495     XSLTPROCDV="xsltproc.dv"
496     INSTALLED_XSLT_LIB=""
497     LIBXML_SRC="$HOME/XML/"
498 fi
499
500 WIN32_EXTRA_LIBADD=
501 WIN32_EXTRA_LDFLAGS=
502 case "$host" in
503  *-*-mingw*)
504  WIN32_EXTRA_LIBADD="-lwsock32"
505  WIN32_EXTRA_LDFLAGS="-no-undefined"
506  AC_DEFINE([_WINSOCKAPI_],1,[Using the Win32 Socket implementation])
507  AC_DEFINE([snprintf],[_snprintf],[Win32 Std C name mangling work-around])
508  AC_DEFINE([vsnprintf],[_vsnprintf],[Win32 Std C name mangling work-around])
509  ;;
510 esac
511 AC_SUBST(WIN32_EXTRA_LIBADD)
512 AC_SUBST(WIN32_EXTRA_LDFLAGS)
513
514
515 AC_SUBST(XSLTPROCDV)
516 AC_SUBST(PYTHONSODV)
517 AC_SUBST(XML_CONFIG)
518 AC_SUBST(LIBXML_LIBS)
519 AC_SUBST(LIBXML_CFLAGS)
520 AC_SUBST(PYTHON)
521 AC_SUBST(PYTHON_VERSION)
522 AC_SUBST(PYTHON_INCLUDES)
523 AC_SUBST(PYTHON_SITE_PACKAGES)
524
525 XSLT_LIBDIR='-L${libdir}'
526 XSLT_INCLUDEDIR='-I${includedir}'
527 XSLT_LIBS="-lxslt $LIBXML_LIBS $M_LIBS"
528 AC_SUBST(XSLT_LIBDIR)
529 AC_SUBST(XSLT_INCLUDEDIR)
530 AC_SUBST(XSLT_LIBS)
531
532 EXSLT_LIBDIR='-L${libdir}'
533 EXSLT_INCLUDEDIR='-I${includedir}'
534 EXSLT_LIBS="-lexslt $XSLT_LIBS $LIBGCRYPT_LIBS"
535 AC_SUBST(EXSLT_LIBDIR)
536 AC_SUBST(EXSLT_INCLUDEDIR)
537 AC_SUBST(EXSLT_LIBS)
538
539 EXTRA_LIBS="$EXTRA_LIBS $LIBXML_LIBS $M_LIBS"
540 AC_SUBST(EXTRA_LIBS)
541
542 AC_SUBST(M_LIBS)
543
544 dnl for the spec file
545 RELDATE=`date +'%a %b %e %Y'`
546 AC_SUBST(RELDATE)
547
548 ( cd $srcdir
549 rm -f COPYING.LIB COPYING
550 $LN_S Copyright COPYING
551 )
552
553
554 AC_OUTPUT([
555 Makefile
556 libxslt.pc
557 libexslt.pc
558 libxslt/Makefile
559 libxslt/xsltconfig.h
560 libxslt/xsltwin32config.h
561 libexslt/Makefile
562 libexslt/exsltconfig.h
563 xsltproc/Makefile
564 python/Makefile
565 python/tests/Makefile
566 tests/Makefile
567 tests/docs/Makefile
568 tests/REC1/Makefile
569 tests/REC2/Makefile
570 tests/REC/Makefile
571 tests/general/Makefile
572 tests/reports/Makefile
573 tests/extensions/Makefile
574 tests/namespaces/Makefile
575 tests/keys/Makefile
576 tests/numbers/Makefile
577 tests/documents/Makefile
578 tests/xmlspec/Makefile
579 tests/multiple/Makefile
580 tests/xinclude/Makefile
581 tests/XSLTMark/Makefile
582 tests/docbook/Makefile
583 tests/exslt/Makefile
584 tests/exslt/common/Makefile
585 tests/exslt/functions/Makefile
586 tests/exslt/math/Makefile
587 tests/exslt/sets/Makefile
588 tests/exslt/strings/Makefile
589 tests/exslt/date/Makefile
590 tests/exslt/dynamic/Makefile
591 tests/plugins/Makefile
592 doc/Makefile
593 xslt-config
594 libxslt.spec
595 ])