VirtualBox

source: vbox/trunk/src/libs/libxslt-1.1.22/configure.in@ 14680

Last change on this file since 14680 was 7296, checked in by vboxsync, 17 years ago

Added libxslt-1.1.22 sources.

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

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette