blob: c5930729ea4e15cfab0e4579ddd11f1badcd49f8 [file] [log] [blame]
Daniel Veillard01791d51998-07-24 19:24:09 +00001dnl Process this file with autoconf to produce a configure script.
Owen Taylor3473f882001-02-23 17:55:21 +00002AC_INIT(entities.c)
Daniel Veillard01791d51998-07-24 19:24:09 +00003AM_CONFIG_HEADER(config.h)
Daniel Veillardd2ade932000-09-30 14:39:55 +00004AC_CANONICAL_HOST
Daniel Veillard14fff061999-06-22 21:49:07 +00005
Daniel Veillardcf461992000-03-14 18:30:20 +00006LIBXML_MAJOR_VERSION=2
Daniel Veillard4fc52812003-09-01 20:33:13 +00007LIBXML_MINOR_VERSION=6
Daniel Veillard210818b2004-09-29 15:50:37 +00008LIBXML_MICRO_VERSION=14
Daniel Veillard3e35f8e2003-10-21 00:05:38 +00009LIBXML_MICRO_VERSION_SUFFIX=
Daniel Veillard4fc52812003-09-01 20:33:13 +000010LIBXML_VERSION=$LIBXML_MAJOR_VERSION.$LIBXML_MINOR_VERSION.$LIBXML_MICRO_VERSION$LIBXML_MICRO_VERSION_SUFFIX
Daniel Veillard14fff061999-06-22 21:49:07 +000011LIBXML_VERSION_INFO=`expr $LIBXML_MAJOR_VERSION + $LIBXML_MINOR_VERSION`:$LIBXML_MICRO_VERSION:$LIBXML_MINOR_VERSION
12
Daniel Veillard361d8452000-04-03 19:48:13 +000013LIBXML_VERSION_NUMBER=`expr $LIBXML_MAJOR_VERSION \* 10000 + $LIBXML_MINOR_VERSION \* 100 + $LIBXML_MICRO_VERSION`
14
William M. Brackf4025492004-08-18 21:08:46 +000015if test -f CVS/Entries; then
Daniel Veillarddab93ea2004-08-20 16:47:10 +000016 extra=`grep ChangeLog CVS/Entries | grep -v LIBXML | sed -e s\%/ChangeLog/1\.%% -e s\%/.*$%%`
17 echo extra=$extra
18 if test "$extra" != ""
19 then
20 LIBXML_VERSION_EXTRA="-CVS$extra"
21 fi
William M. Brackf4025492004-08-18 21:08:46 +000022fi
Daniel Veillard14fff061999-06-22 21:49:07 +000023AC_SUBST(LIBXML_MAJOR_VERSION)
24AC_SUBST(LIBXML_MINOR_VERSION)
25AC_SUBST(LIBXML_MICRO_VERSION)
26AC_SUBST(LIBXML_VERSION)
27AC_SUBST(LIBXML_VERSION_INFO)
Daniel Veillard361d8452000-04-03 19:48:13 +000028AC_SUBST(LIBXML_VERSION_NUMBER)
William M. Brackf4025492004-08-18 21:08:46 +000029AC_SUBST(LIBXML_VERSION_EXTRA)
Daniel Veillard14fff061999-06-22 21:49:07 +000030
Daniel Veillard361d8452000-04-03 19:48:13 +000031VERSION=${LIBXML_VERSION}
Daniel Veillard14fff061999-06-22 21:49:07 +000032
Daniel Veillardedfb29b2000-03-14 19:59:05 +000033AM_INIT_AUTOMAKE(libxml2, $VERSION)
Daniel Veillard1164e751999-02-16 16:29:17 +000034
Daniel Veillard01791d51998-07-24 19:24:09 +000035dnl Checks for programs.
36AC_PROG_CC
37AC_PROG_INSTALL
Sebastian Wilhelmia44c8a41998-08-07 08:38:58 +000038AC_PROG_CPP
Daniel Veillard01791d51998-07-24 19:24:09 +000039AC_PATH_PROG(RM, rm, /bin/rm)
40AC_PATH_PROG(MV, mv, /bin/mv)
41AC_PATH_PROG(TAR, tar, /bin/tar)
William M. Brack1826d0a2004-07-21 09:03:57 +000042AC_PATH_PROG(PERL, perl, /usr/bin/perl)
Daniel Veillard8b817da2004-09-30 09:19:33 +000043AC_PATH_PROG(XMLLINT, xmllint, /usr/bin/xmllint)
Daniel Veillard06500c82004-09-07 09:12:44 +000044AC_PATH_PROG(XSLTPROC, xsltproc, /usr/bin/xsltproc)
Daniel Veillard01791d51998-07-24 19:24:09 +000045
Daniel Veillard03109292000-08-14 14:58:22 +000046dnl Make sure we have an ANSI compiler
47AM_C_PROTOTYPES
48test "x$U" != "x" && AC_MSG_ERROR(Compiler not ANSI compliant)
49
Daniel Veillard6984e6d2003-12-09 14:20:17 +000050AC_LIBTOOL_WIN32_DLL
Daniel Veillard01791d51998-07-24 19:24:09 +000051AM_PROG_LIBTOOL
52
Daniel Veillardd8cf9062003-11-11 21:12:36 +000053# AM_MAINTAINER_MODE
Daniel Veillard01791d51998-07-24 19:24:09 +000054
Daniel Veillard4432df22003-09-28 18:58:27 +000055dnl
56dnl option to build a minimal libxml2 library
57dnl
58AC_ARG_WITH(minimum, [ --with-minimum build a minimally sized library (off)])
59if test "$with_minimum" = "yes"
60then
61 echo "Configuring for a minimal library"
62fi
63
Daniel Veillard71b656e2000-01-05 14:46:17 +000064dnl Checks for zlib library.
Owen Taylor3473f882001-02-23 17:55:21 +000065_cppflags="${CPPFLAGS}"
66_ldflags="${LDFLAGS}"
Daniel Veillard71b656e2000-01-05 14:46:17 +000067
Daniel Veillard259ff742001-10-06 13:49:59 +000068
Owen Taylor3473f882001-02-23 17:55:21 +000069AC_ARG_WITH(zlib,
William M. Brack97ad4c72003-05-13 08:08:36 +000070[ --with-zlib[[=DIR]] use libz in DIR],[
Owen Taylor3473f882001-02-23 17:55:21 +000071 if test "$withval" != "no" -a "$withval" != "yes"; then
72 Z_DIR=$withval
73 CPPFLAGS="${CPPFLAGS} -I$withval/include"
74 LDFLAGS="${LDFLAGS} -L$withval/lib"
75 fi
Daniel Veillard259ff742001-10-06 13:49:59 +000076])
Daniel Veillard4432df22003-09-28 18:58:27 +000077if test "$with_minimum" = "yes" -a "$with_zlib" = ""
78then
79 with_zlib=no
80fi
Daniel Veillard259ff742001-10-06 13:49:59 +000081if test "$with_zlib" = "no"; then
82 echo "Disabling compression support"
83else
Daniel Veillard3fbe8e32001-10-06 13:30:33 +000084 AC_CHECK_HEADERS(zlib.h,
85 AC_CHECK_LIB(z, gzread,[
Daniel Veillardc790bf42003-10-11 10:50:10 +000086 AC_DEFINE([HAVE_LIBZ], [], [Have compression library])
Daniel Veillard3fbe8e32001-10-06 13:30:33 +000087 if test "x${Z_DIR}" != "x"; then
88 Z_CFLAGS="-I${Z_DIR}/include"
89 Z_LIBS="-L${Z_DIR}/lib -lz"
90 [case ${host} in
91 *-*-solaris*)
92 Z_LIBS="-L${Z_DIR}/lib -R${Z_DIR}/lib -lz"
93 ;;
94 esac]
95 else
96 Z_LIBS="-lz"
97 fi]))
Daniel Veillard259ff742001-10-06 13:49:59 +000098fi
Owen Taylor3473f882001-02-23 17:55:21 +000099
Owen Taylor3473f882001-02-23 17:55:21 +0000100AC_SUBST(Z_CFLAGS)
101AC_SUBST(Z_LIBS)
102
103CPPFLAGS=${_cppflags}
104LDFLAGS=${_ldflags}
Daniel Veillardb05deb71999-08-10 19:04:08 +0000105
Daniel Veillard01791d51998-07-24 19:24:09 +0000106dnl Checks for header files.
107AC_HEADER_DIRENT
108AC_HEADER_STDC
Daniel Veillard817e70b2002-11-19 22:28:48 +0000109AC_CHECK_HEADERS([fcntl.h])
110AC_CHECK_HEADERS([unistd.h])
111AC_CHECK_HEADERS([ctype.h])
112AC_CHECK_HEADERS([dirent.h])
113AC_CHECK_HEADERS([errno.h])
114AC_CHECK_HEADERS([malloc.h])
115AC_CHECK_HEADERS([stdarg.h])
116AC_CHECK_HEADERS([sys/stat.h])
117AC_CHECK_HEADERS([sys/types.h])
118AC_CHECK_HEADERS([time.h])
119AC_CHECK_HEADERS([ansidecl.h])
120AC_CHECK_HEADERS([ieeefp.h])
121AC_CHECK_HEADERS([nan.h])
122AC_CHECK_HEADERS([math.h])
Daniel Veillardebe48c62003-12-03 12:12:27 +0000123AC_CHECK_HEADERS([limits.h])
Daniel Veillard817e70b2002-11-19 22:28:48 +0000124AC_CHECK_HEADERS([fp_class.h])
125AC_CHECK_HEADERS([float.h])
126AC_CHECK_HEADERS([stdlib.h])
127AC_CHECK_HEADERS([sys/socket.h], [], [],
128[#if HAVE_SYS_TYPES_H
129# include <sys/types.h>
130# endif
131])
132AC_CHECK_HEADERS([netinet/in.h], [], [],
133[#if HAVE_SYS_TYPES_H
134# include <sys/types.h>
135# endif
136])
137AC_CHECK_HEADERS([arpa/inet.h], [], [],
138[#if HAVE_SYS_TYPES_H
139# include <sys/types.h>
140# endif
141#if HAVE_ARPA_INET_H
142# include <arpa/inet.h>
143# endif
144])
145AC_CHECK_HEADERS([netdb.h])
146AC_CHECK_HEADERS([sys/time.h])
147AC_CHECK_HEADERS([sys/select.h])
148AC_CHECK_HEADERS([sys/mman.h])
149AC_CHECK_HEADERS([sys/timeb.h])
150AC_CHECK_HEADERS([signal.h])
151AC_CHECK_HEADERS([arpa/nameser.h], [], [],
152[#if HAVE_SYS_TYPES_H
153# include <sys/types.h>
154# endif
155])
156AC_CHECK_HEADERS([resolv.h], [], [],
157[#if HAVE_SYS_TYPES_H
158# include <sys/types.h>
159# endif
160#if HAVE_NETINET_IN_H
161# include <netinet/in.h>
162# endif
163#if HAVE_ARPA_NAMESER_H
164# include <arpa/nameser.h>
165# endif
166])
Daniel Veillard01791d51998-07-24 19:24:09 +0000167
Daniel Veillard1164e751999-02-16 16:29:17 +0000168dnl Specific dir for HTML output ?
Daniel Veillardfc979062004-03-04 22:07:16 +0000169AC_ARG_WITH(html-dir, AC_HELP_STRING([--with-html-dir=path],
170 [path to base html directory, default $datadir/doc/html]),
171 [HTML_DIR=$withval], [HTML_DIR='$(datadir)/doc'])
172
173AC_ARG_WITH(html-subdir, AC_HELP_STRING([--with-html-subdir=path],
174 [directory used under html-dir, default $PACKAGE-$VERSION/html]),
175 [test "x$withval" != "x" && HTML_DIR="$HTML_DIR/$withval"],
176 [HTML_DIR="$HTML_DIR/\$(PACKAGE)-\$(VERSION)/html"])
Daniel Veillard1164e751999-02-16 16:29:17 +0000177
178AC_SUBST(HTML_DIR)
179
Daniel Veillard01791d51998-07-24 19:24:09 +0000180dnl Checks for library functions.
181AC_FUNC_STRFTIME
Daniel Veillard92ad2102001-03-27 12:47:33 +0000182AC_CHECK_FUNCS(strdup strndup strerror)
Daniel Veillard71b656e2000-01-05 14:46:17 +0000183AC_CHECK_FUNCS(finite isnand fp_class class fpclass)
Daniel Veillard90bc3712002-03-07 15:12:58 +0000184AC_CHECK_FUNCS(strftime localtime gettimeofday ftime)
Daniel Veillard068a9652001-06-07 15:30:26 +0000185AC_CHECK_FUNCS(stat _stat signal)
Daniel Veillard7f7d1111999-09-22 09:46:25 +0000186
Daniel Veillard92ad2102001-03-27 12:47:33 +0000187dnl Checking the standard string functions availability
188AC_CHECK_FUNCS(printf sprintf fprintf snprintf vfprintf vsprintf vsnprintf sscanf,,
189 NEED_TRIO=1)
190
Daniel Veillard7f7d1111999-09-22 09:46:25 +0000191dnl Checks for inet libraries:
Daniel Veillard71b656e2000-01-05 14:46:17 +0000192AC_CHECK_FUNC(gethostent, , AC_CHECK_LIB(nsl, gethostent))
193AC_CHECK_FUNC(setsockopt, , AC_CHECK_LIB(socket, setsockopt))
194AC_CHECK_FUNC(connect, , AC_CHECK_LIB(inet, connect))
Daniel Veillardb05deb71999-08-10 19:04:08 +0000195
Daniel Veillardb0426ca2000-10-11 23:39:43 +0000196dnl Determine what socket length (socklen_t) data type is
197AC_MSG_CHECKING([for type of socket length (socklen_t)])
198AC_TRY_COMPILE2([
199#include <stddef.h>
200#include <sys/types.h>
201#include <sys/socket.h>],[
202(void)getsockopt (1, 1, 1, NULL, (socklen_t *)NULL)],[
203 AC_MSG_RESULT(socklen_t *)
204 SOCKLEN_T=socklen_t],[
205 AC_TRY_COMPILE2([
206#include <stddef.h>
207#include <sys/types.h>
208#include <sys/socket.h>],[
209(void)getsockopt (1, 1, 1, NULL, (size_t *)NULL)],[
210 AC_MSG_RESULT(size_t *)
211 SOCKLEN_T=size_t],[
212 AC_TRY_COMPILE2([
213#include <stddef.h>
214#include <sys/types.h>
215#include <sys/socket.h>],[
216(void)getsockopt (1, 1, 1, NULL, (int *)NULL)],[
217 AC_MSG_RESULT(int *)
218 SOCKLEN_T=int],[
William M. Brack2e6b1432004-02-09 15:10:28 +0000219 AC_MSG_WARN(could not determine)
Daniel Veillardc7e3cc42004-09-28 12:33:52 +0000220 SOCKLEN_T="int"])])])
Daniel Veillardc790bf42003-10-11 10:50:10 +0000221AC_DEFINE_UNQUOTED(SOCKLEN_T, $SOCKLEN_T, [Determine what socket length (socklen_t) data type is])
Daniel Veillardb0426ca2000-10-11 23:39:43 +0000222
Daniel Veillardde2a67b2003-06-21 14:20:04 +0000223dnl ***********************Checking for availability of IPv6*******************
224
225AC_MSG_CHECKING([whether to enable IPv6])
226AC_ARG_ENABLE(ipv6, [ --enable-ipv6=[yes/no] enables compilation of IPv6 code],, enable_ipv6=yes)
Daniel Veillard4432df22003-09-28 18:58:27 +0000227if test "$with_minimum" = "yes"
228then
229 enable_ipv6=no
230fi
Daniel Veillardde2a67b2003-06-21 14:20:04 +0000231if test $enable_ipv6 = yes; then
232 have_ipv6=no
233 AC_TRY_COMPILE([
234 #include <sys/socket.h>
235 #include <sys/types.h>], [
236 struct sockaddr_storage ss;
237 socket(AF_INET6, SOCK_STREAM, 0)
238 ],
239 have_ipv6=yes,
240 have_ipv6=no
241 )
242 AC_MSG_RESULT($have_ipv6)
243
William M. Brack476cd962003-08-13 11:09:42 +0000244 if test $have_ipv6 = yes; then
Daniel Veillardc790bf42003-10-11 10:50:10 +0000245 AC_DEFINE([SUPPORT_IP6], [], [Support for IPv6])
Daniel Veillardde2a67b2003-06-21 14:20:04 +0000246
247 have_getaddrinfo=no
248 AC_CHECK_FUNC(getaddrinfo, have_getaddrinfo=yes)
249 if test $have_getaddrinfo != yes; then
250 for lib in bsd socket inet; do
251 AC_CHECK_LIB($lib, getaddrinfo, [LIBS="$LIBS -l$lib";have_getaddrinfo=yes;break])
252 done
253 fi
254
William M. Brack476cd962003-08-13 11:09:42 +0000255 if test $have_getaddrinfo = yes; then
Daniel Veillardc790bf42003-10-11 10:50:10 +0000256 AC_DEFINE([HAVE_GETADDRINFO], [], [Define if getaddrinfo is there])
Daniel Veillardde2a67b2003-06-21 14:20:04 +0000257 fi
258 fi
259fi
260
261dnl ******************************End IPv6 checks******************************
262
Daniel Veillardb05deb71999-08-10 19:04:08 +0000263dnl Checks for isnan in libm if not in libc
Daniel Veillard6984e6d2003-12-09 14:20:17 +0000264AC_CHECK_FUNC(isnan, AC_DEFINE([HAVE_ISNAN],[], [Define if isnan is there]) , AC_CHECK_LIB(m, isnan,
Daniel Veillardc790bf42003-10-11 10:50:10 +0000265 [AC_DEFINE([HAVE_ISNAN],[], [Define if isnan is there])]))
Daniel Veillardb05deb71999-08-10 19:04:08 +0000266
Daniel Veillardc790bf42003-10-11 10:50:10 +0000267AC_CHECK_FUNC(isinf, AC_DEFINE([HAVE_ISINF], [], [Define if isinf is there]) , AC_CHECK_LIB(m, isinf,
268 [AC_DEFINE([HAVE_ISINF], [], [Define if isinf is there])]))
Daniel Veillardb05deb71999-08-10 19:04:08 +0000269
270XML_LIBDIR='-L${libdir}'
Daniel Veillarde7dd2b82002-03-15 18:44:02 +0000271XML_INCLUDEDIR='-I${includedir}/libxml2'
Daniel Veillardb05deb71999-08-10 19:04:08 +0000272
Daniel Veillardd7e200c1999-11-15 17:53:11 +0000273dnl
Daniel Veillardf5c2c871999-12-01 09:51:45 +0000274dnl Extra flags
275dnl
276XML_CFLAGS=""
Daniel Veillard357c9602001-05-03 10:49:20 +0000277RDL_LIBS=""
Daniel Veillardf5c2c871999-12-01 09:51:45 +0000278
Daniel Veillardd94849b2003-07-28 13:02:24 +0000279AC_ARG_WITH(fexceptions,
280[ --with-fexceptions add GCC flag -fexceptions for C++ exceptions (off)])
Daniel Veillard4432df22003-09-28 18:58:27 +0000281if test "$with_minimum" = "yes" -a "$with_fexceptions" = ""
282then
283 with_fexceptions=no
284fi
Daniel Veillardf5c2c871999-12-01 09:51:45 +0000285dnl
Daniel Veillardb45c43b2001-04-28 17:02:11 +0000286dnl Workaround for native compilers
287dnl HP : http://bugs.gnome.org/db/31/3163.html
288dnl DEC : Enable NaN/Inf
Daniel Veillardd7e200c1999-11-15 17:53:11 +0000289dnl
Daniel Veillard03109292000-08-14 14:58:22 +0000290if test "${GCC}" != "yes" ; then
Daniel Veillardd7e200c1999-11-15 17:53:11 +0000291 case "${host}" in
292 *-*-hpux* )
Daniel Veillard03109292000-08-14 14:58:22 +0000293 CFLAGS="${CFLAGS} -Wp,-H30000"
Daniel Veillardd7e200c1999-11-15 17:53:11 +0000294 ;;
Daniel Veillardb45c43b2001-04-28 17:02:11 +0000295 *-dec-osf* )
296 CFLAGS="${CFLAGS} -ieee"
297 ;;
William M. Brack476cd962003-08-13 11:09:42 +0000298 alpha*-*-linux* )
299 CFLAGS="${CFLAGS} -ieee"
300 ;;
Daniel Veillardd7e200c1999-11-15 17:53:11 +0000301 esac
Daniel Veillardd574f782001-03-14 19:40:17 +0000302else
Daniel Veillardd94849b2003-07-28 13:02:24 +0000303 if test "$with_fexceptions" = "yes"
304 then
305 #
306 # Not activated by default because this inflates the code size
307 # Used to allow propagation of C++ exceptions through the library
308 #
309 CFLAGS="${CFLAGS} -fexceptions"
310 fi
311
Daniel Veillard4918efe2004-08-23 12:35:14 +0000312 CFLAGS="${CFLAGS} -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 -Wredundant-decls"
Daniel Veillard14839d52001-06-06 16:11:56 +0000313 case "${host}" in
314 alpha*-*-linux* )
315 CFLAGS="${CFLAGS} -mieee"
316 ;;
Daniel Veillardcb5b4d62002-04-11 08:24:26 +0000317 alpha*-*-osf* )
318 CFLAGS="${CFLAGS} -mieee"
319 ;;
Daniel Veillard14839d52001-06-06 16:11:56 +0000320 esac
Daniel Veillardd7e200c1999-11-15 17:53:11 +0000321fi
Daniel Veillardb0426ca2000-10-11 23:39:43 +0000322case ${host} in
323 *-*-solaris*)
Daniel Veillardd2ade932000-09-30 14:39:55 +0000324 XML_LIBDIR="${XML_LIBDIR} -R${libdir}"
325 ;;
Daniel Veillardd30be4a2002-03-28 18:25:31 +0000326 hppa*-hp-mpeix)
327 NEED_TRIO=1
328 ;;
Daniel Veillardd2ade932000-09-30 14:39:55 +0000329esac
330
Daniel Veillardf5c2c871999-12-01 09:51:45 +0000331
Daniel Veillardf1d0e6b2002-01-31 23:42:44 +0000332dnl
333dnl check for python
334dnl
335
336PYTHON=
337PYTHON_VERSION=
338PYTHON_INCLUDES=
Daniel Veillard253aa2c2002-02-02 09:17:16 +0000339PYTHON_SITE_PACKAGES=
Daniel Veillard6dc91962004-03-22 19:10:02 +0000340PYTHON_TESTS=
Daniel Veillard38b80a82003-05-14 18:59:00 +0000341pythondir=
William M. Brack97ad4c72003-05-13 08:08:36 +0000342AC_ARG_WITH(python,
343[ --with-python[[=DIR]] build Python bindings if found])
Daniel Veillard4432df22003-09-28 18:58:27 +0000344if test "$with_minimum" = "yes" -a "$with_python" = ""
345then
346 with_python=no
347fi
Daniel Veillardf1d0e6b2002-01-31 23:42:44 +0000348if test "$with_python" != "no" ; then
349 if test -x "$with_python/bin/python"
350 then
351 echo Found python in $with_python/bin/python
352 PYTHON="$with_python/bin/python"
Daniel Veillard9b731d72002-04-14 12:56:08 +0000353 else
Daniel Veillarda8a89fe2002-04-12 21:03:34 +0000354 if test -x "$with_python"
355 then
Daniel Veillard4efd3be2002-11-18 09:11:13 +0000356 echo Found python in $with_python
357 PYTHON="$with_python"
Daniel Veillarda8a89fe2002-04-12 21:03:34 +0000358 else
Daniel Veillard4efd3be2002-11-18 09:11:13 +0000359 AC_PATH_PROG(PYTHON, python python2.3 python2.2 python2.1 python2.0 python1.6 python1.5)
Daniel Veillarda8a89fe2002-04-12 21:03:34 +0000360 fi
Daniel Veillardf1d0e6b2002-01-31 23:42:44 +0000361 fi
362 if test "$PYTHON" != ""
363 then
364 PYTHON_VERSION=`$PYTHON -c "import sys; print sys.version[[0:3]]"`
365 echo Found Python version $PYTHON_VERSION
366 fi
367 if test "$PYTHON_VERSION" != ""
368 then
Daniel Veillard253aa2c2002-02-02 09:17:16 +0000369 if test -r $with_python/include/python$PYTHON_VERSION/Python.h -a \
370 -d $with_python/lib/python$PYTHON_VERSION/site-packages
Daniel Veillardf1d0e6b2002-01-31 23:42:44 +0000371 then
372 PYTHON_INCLUDES=$with_python/include/python$PYTHON_VERSION
Daniel Veillard253aa2c2002-02-02 09:17:16 +0000373 PYTHON_SITE_PACKAGES=$with_python/lib/python$PYTHON_VERSION/site-packages
Daniel Veillardf1d0e6b2002-01-31 23:42:44 +0000374 else
375 if test -r $prefix/include/python$PYTHON_VERSION/Python.h
376 then
Daniel Veillard253aa2c2002-02-02 09:17:16 +0000377 PYTHON_INCLUDES='$(prefix)/include/python$(PYTHON_VERSION)'
Daniel Veillarde3b7d9a2002-08-14 14:11:30 +0000378 PYTHON_SITE_PACKAGES='$(libdir)/python$(PYTHON_VERSION)/site-packages'
Daniel Veillardf1d0e6b2002-01-31 23:42:44 +0000379 else
380 if test -r /usr/include/python$PYTHON_VERSION/Python.h
381 then
382 PYTHON_INCLUDES=/usr/include/python$PYTHON_VERSION
Daniel Veillarde3b7d9a2002-08-14 14:11:30 +0000383 PYTHON_SITE_PACKAGES='$(libdir)/python$(PYTHON_VERSION)/site-packages'
Daniel Veillardf1d0e6b2002-01-31 23:42:44 +0000384 else
385 echo could not find python$PYTHON_VERSION/Python.h
386 fi
387 fi
William M. Brack5d4cba42004-01-06 15:19:12 +0000388 if test ! -d "$PYTHON_SITE_PACKAGES"
Daniel Veillardb6984ef2002-08-14 16:55:31 +0000389 then
390 PYTHON_SITE_PACKAGES=`$PYTHON -c "from distutils import sysconfig; print sysconfig.get_python_lib()"`
391 fi
Daniel Veillardf1d0e6b2002-01-31 23:42:44 +0000392 fi
393 fi
Daniel Veillard38b80a82003-05-14 18:59:00 +0000394 if test "$with_python" != ""
395 then
396 pythondir='$(PYTHON_SITE_PACKAGES)'
397 else
398 pythondir='$(libdir)/python${PYTHON_VERSION}/site-packages'
399 fi
Daniel Veillardf1d0e6b2002-01-31 23:42:44 +0000400fi
401AM_CONDITIONAL(WITH_PYTHON, test "$PYTHON_INCLUDES" != "")
Daniel Veillard40b11342002-09-20 12:01:39 +0000402if test "$PYTHON_INCLUDES" != ""
403then
404 PYTHON_SUBDIR=python
405else
406 PYTHON_SUBDIR=
407fi
Daniel Veillard38b80a82003-05-14 18:59:00 +0000408AC_SUBST(pythondir)
Daniel Veillard40b11342002-09-20 12:01:39 +0000409AC_SUBST(PYTHON_SUBDIR)
Daniel Veillardf1d0e6b2002-01-31 23:42:44 +0000410
Daniel Veillard437b87b2000-01-03 17:30:46 +0000411dnl
412dnl Tester makes use of readline if present
413dnl
Daniel Veillard03109292000-08-14 14:58:22 +0000414_cppflags="${CPPFLAGS}"
415_ldflags="${LDFLAGS}"
Daniel Veillard437b87b2000-01-03 17:30:46 +0000416
Daniel Veillard03109292000-08-14 14:58:22 +0000417AC_ARG_WITH(readline,
418[ --with-readline=DIR use readline in DIR],[
419 if test "$withval" != "no" -a "$withval" != "yes"; then
420 RDL_DIR=$withval
421 CPPFLAGS="${CPPFLAGS} -I$withval/include"
422 LDFLAGS="${LDFLAGS} -L$withval/lib"
423 fi
424])
Daniel Veillard4432df22003-09-28 18:58:27 +0000425if test "$with_minimum" = "yes" -a "$with_readline" = ""
426then
427 with_readline=no
428fi
Daniel Veillard03109292000-08-14 14:58:22 +0000429
Daniel Veillard361d8452000-04-03 19:48:13 +0000430dnl
Daniel Veillardf6eea272001-01-18 12:17:12 +0000431dnl specific tests to setup DV's devel environment with debug etc ...
Daniel Veillard81418e32001-05-22 15:08:55 +0000432dnl (-Wunreachable-code)
Daniel Veillardf6eea272001-01-18 12:17:12 +0000433dnl
William M. Brack871611b2003-10-18 04:53:14 +0000434if [[ "${LOGNAME}" = "veillard" -a "`pwd`" = "/u/veillard/XML" ]] || \
Daniel Veillardb7c6ac42004-06-29 22:01:27 +0000435 [[ "${LOGNAME}" = "veillard" -a "`pwd`" = "/home/veillard/libxml2" ]] || \
William M. Bracka2e844a2004-01-06 11:52:13 +0000436 [[ "${LOGNAME}" = "bill" -a "`pwd`" = "/home/bill/gnomecvs/xmltest" ]] || \
William M. Brack4119d1c2004-06-24 02:24:44 +0000437 [[ "${LOGNAME}" = "wbrack" -a "`pwd`" = "/Users/wbrack/gnomecvs/xmltest" ]]
William M. Brack871611b2003-10-18 04:53:14 +0000438 then
Daniel Veillard4432df22003-09-28 18:58:27 +0000439 if test "$with_minimum" != "yes"
440 then
441 if test "${with_mem_debug}" = "" ; then
442 with_mem_debug="yes"
Daniel Veillard22cdb842004-10-04 14:09:17 +0000443 with_run_debug="yes"
Daniel Veillard4432df22003-09-28 18:58:27 +0000444 fi
445 if test "${with_docbook}" = "" ; then
446 with_docbook="yes"
447 fi
Daniel Veillardeae522a2001-04-23 13:41:34 +0000448 fi
Daniel Veillard0ba59232002-02-10 13:20:39 +0000449 CFLAGS="-g -O -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 -Wredundant-decls "
Daniel Veillard2e9b1652003-02-19 13:29:45 +0000450 STATIC_BINARIES="-static"
Daniel Veillardc86a4fa2001-03-26 16:28:29 +0000451dnl -Wcast-qual -ansi
Daniel Veillard2e9b1652003-02-19 13:29:45 +0000452else
453 STATIC_BINARIES=
Daniel Veillardf6eea272001-01-18 12:17:12 +0000454fi
Daniel Veillard2e9b1652003-02-19 13:29:45 +0000455AC_SUBST(STATIC_BINARIES)
Daniel Veillard92ad2102001-03-27 12:47:33 +0000456
457dnl
458dnl Check for trio string functions
459dnl
460
461if test "${NEED_TRIO}" = "1" ; then
462 echo Adding trio library for string functions
463 WITH_TRIO=1
464else
465 WITH_TRIO=0
466fi
Daniel Veillard01ef7382001-05-08 07:31:43 +0000467AM_CONDITIONAL(WITH_TRIO_SOURCES, test "${NEED_TRIO}" = "1")
Daniel Veillard92ad2102001-03-27 12:47:33 +0000468AC_SUBST(WITH_TRIO)
469
Daniel Veillardf6eea272001-01-18 12:17:12 +0000470dnl
William M. Brack97ad4c72003-05-13 08:08:36 +0000471dnl Allow to enable/disable various pieces
Daniel Veillard361d8452000-04-03 19:48:13 +0000472dnl
473
Daniel Veillardb8478642001-10-12 17:29:10 +0000474THREAD_LIBS=""
475WITH_THREADS=0
476THREAD_CFLAGS=""
Daniel Veillardab7488e2001-10-17 11:30:37 +0000477TEST_THREADS=""
Daniel Veillard6984e6d2003-12-09 14:20:17 +0000478THREADS_W32=""
Daniel Veillard64a411c2001-10-15 12:32:07 +0000479
William M. Brack97ad4c72003-05-13 08:08:36 +0000480AC_ARG_WITH(threads,
481[ --with-threads add multithread support(on)])
Daniel Veillard4432df22003-09-28 18:58:27 +0000482if test "$with_minimum" = "yes" -a "$with_threads" = ""
483then
484 with_threads=no
485fi
Daniel Veillard84942712003-04-18 14:40:05 +0000486if test "$with_threads" = "no" ; then
487 echo Disabling multithreaded support
488else
Daniel Veillardb8478642001-10-12 17:29:10 +0000489 echo Enabling multithreaded support
490
491 AC_CHECK_HEADER(pthread.h,
Daniel Veillardcbaf3992001-12-31 16:16:02 +0000492 AC_CHECK_LIB(pthread, pthread_join,[
Daniel Veillardb8478642001-10-12 17:29:10 +0000493 THREAD_LIBS="-lpthread"
Daniel Veillardc790bf42003-10-11 10:50:10 +0000494 AC_DEFINE([HAVE_LIBPTHREAD], [], [Define if pthread library is there (-lpthread)])
495 AC_DEFINE([HAVE_PTHREAD_H], [], [Define if <pthread.h> is there])
Daniel Veillardab7488e2001-10-17 11:30:37 +0000496 WITH_THREADS="1"]))
Daniel Veillard6984e6d2003-12-09 14:20:17 +0000497 case $host_os in
498 *mingw32*) WITH_THREADS="1"
499 THREADS_W32="Win32"
500 THREAD_CFLAGS="$THREAD_CFLAGS -DHAVE_WIN32_THREADS"
501 ;;
502 esac
Daniel Veillardb8478642001-10-12 17:29:10 +0000503 if test "$WITH_THREADS" = "1" ; then
Daniel Veillardab7488e2001-10-17 11:30:37 +0000504 THREAD_CFLAGS="$THREAD_CFLAGS -D_REENTRANT"
505 TEST_THREADS="Threadtests"
Daniel Veillardb8478642001-10-12 17:29:10 +0000506 fi
507fi
William M. Brack97ad4c72003-05-13 08:08:36 +0000508AC_ARG_WITH(thread-alloc,
509[ --with-thread-alloc add per-thread memory(off)])
Daniel Veillard4432df22003-09-28 18:58:27 +0000510if test "$with_minimum" = "yes" -a "$with_thread_alloc" = ""
511then
512 with_thread_alloc=no
513fi
William M. Brack306e33c2004-06-12 01:01:22 +0000514if test "$with_thread_alloc" = "yes" -a "$WITH_THREADS" = "1" ; then
Daniel Veillardab7488e2001-10-17 11:30:37 +0000515 THREAD_CFLAGS="$THREAD_CFLAGS -DLIBXML_THREAD_ALLOC_ENABLED"
Daniel Veillard64a411c2001-10-15 12:32:07 +0000516fi
517
Daniel Veillardb8478642001-10-12 17:29:10 +0000518AC_SUBST(THREAD_LIBS)
519AC_SUBST(WITH_THREADS)
520AC_SUBST(THREAD_CFLAGS)
Daniel Veillardab7488e2001-10-17 11:30:37 +0000521AC_SUBST(TEST_THREADS)
Daniel Veillard6984e6d2003-12-09 14:20:17 +0000522AC_SUBST(THREADS_W32)
Daniel Veillardb8478642001-10-12 17:29:10 +0000523
William M. Brack97ad4c72003-05-13 08:08:36 +0000524AC_ARG_WITH(history,
525[ --with-history add history support to xmllint shell(off)])
Daniel Veillard4432df22003-09-28 18:58:27 +0000526if test "$with_minimum" = "yes" -a "$with_history" = ""
527then
528 with_history=no
529fi
Daniel Veillard259ff742001-10-06 13:49:59 +0000530if test "$with_history" = "yes" ; then
Daniel Veillardf012a642001-07-23 19:10:52 +0000531 echo Enabling xmllint shell history
532 dnl check for terminal library. this is a very cool solution
533 dnl from octave's configure.in
534 unset tcap
535 for termlib in ncurses curses termcap terminfo termlib; do
536 AC_CHECK_LIB(${termlib}, tputs, [tcap="-l$termlib"])
537 test -n "$tcap" && break
538 done
539
540 AC_CHECK_HEADER(readline/history.h,
541 AC_CHECK_LIB(history, append_history,[
542 RDL_LIBS="-lhistory"
Daniel Veillardc790bf42003-10-11 10:50:10 +0000543 AC_DEFINE([HAVE_LIBHISTORY], [], [Define if history library is there (-lhistory)])]))
Daniel Veillardf012a642001-07-23 19:10:52 +0000544 AC_CHECK_HEADER(readline/readline.h,
545 AC_CHECK_LIB(readline, readline,[
546 RDL_LIBS="-lreadline $RDL_LIBS $tcap"
Daniel Veillardc790bf42003-10-11 10:50:10 +0000547 AC_DEFINE([HAVE_LIBREADLINE], [], [Define if readline library is there (-lreadline)])], , $tcap))
Daniel Veillardf012a642001-07-23 19:10:52 +0000548 if test -n "$RDL_DIR" -a -n "$RDL_LIBS"; then
549 CPPFLAGS="$CPPFLAGS -I${RDL_DIR}/include"
550 RDL_LIBS="-L${RDL_DIR}/lib $RDL_LIBS"
551 else
552 CPPFLAGS=${_cppflags}
553 fi
554 LDFLAGS=${_ldflags}
555fi
556
Daniel Veillarda9cce9c2003-09-29 13:20:24 +0000557AC_ARG_WITH(output,
Daniel Veillard652327a2003-09-29 18:02:38 +0000558[ --with-output add the serialization support (on)])
Daniel Veillarda9cce9c2003-09-29 13:20:24 +0000559if test "$with_minimum" = "yes" -a "$with_output" = ""
560then
561 with_output=no
562fi
563if test "$with_output" = "no" ; then
564 echo Disabling serialization/saving support
565 WITH_OUTPUT=0
566else
567 WITH_OUTPUT=1
568fi
569AC_SUBST(WITH_OUTPUT)
570
Daniel Veillard652327a2003-09-29 18:02:38 +0000571AC_ARG_WITH(tree,
572[ --with-tree add the DOM like tree manipulation APIs (on)])
573if test "$with_minimum" = "yes" -a "$with_tree" = ""
574then
575 with_tree=no
576fi
577if test "$with_tree" = "no" ; then
578 echo Disabling DOM like tree manipulation APIs
579 WITH_TREE=0
580else
581 WITH_TREE=1
582fi
583AC_SUBST(WITH_TREE)
584
William M. Brack97ad4c72003-05-13 08:08:36 +0000585AC_ARG_WITH(ftp,
586[ --with-ftp add the FTP support (on)])
Daniel Veillard4432df22003-09-28 18:58:27 +0000587if test "$with_minimum" = "yes" -a "$with_ftp" = ""
588then
589 with_ftp=no
590fi
Daniel Veillard361d8452000-04-03 19:48:13 +0000591if test "$with_ftp" = "no" ; then
592 echo Disabling FTP support
593 WITH_FTP=0
594 FTP_OBJ=
595else
596 WITH_FTP=1
597 FTP_OBJ=nanoftp.o
598fi
599AC_SUBST(WITH_FTP)
600AC_SUBST(FTP_OBJ)
601
William M. Brack97ad4c72003-05-13 08:08:36 +0000602AC_ARG_WITH(http,
603[ --with-http add the HTTP support (on)])
Daniel Veillard4432df22003-09-28 18:58:27 +0000604if test "$with_minimum" = "yes" -a "$with_http" = ""
605then
606 with_http=no
607fi
Daniel Veillard361d8452000-04-03 19:48:13 +0000608if test "$with_http" = "no" ; then
609 echo Disabling HTTP support
610 WITH_HTTP=0
611 HTTP_OBJ=
612else
613 WITH_HTTP=1
614 HTTP_OBJ=nanohttp.o
615fi
616AC_SUBST(WITH_HTTP)
617AC_SUBST(HTTP_OBJ)
618
Daniel Veillard4432df22003-09-28 18:58:27 +0000619AC_ARG_WITH(legacy,
Daniel Veillard652327a2003-09-29 18:02:38 +0000620[ --with-legacy add deprecated APIs for compatibility (on)])
Daniel Veillard4432df22003-09-28 18:58:27 +0000621if test "$with_minimum" = "yes" -a "$with_legacy" = ""
622then
623 with_legacy=no
624fi
625if test "$with_legacy" = "no" ; then
626 echo Disabling deprecated APIs
627 WITH_LEGACY=0
628else
629 WITH_LEGACY=1
630fi
631AC_SUBST(WITH_LEGACY)
632
Daniel Veillard81273902003-09-30 00:43:48 +0000633AC_ARG_WITH(reader,
634[ --with-reader add the xmlReader parsing interface (on)])
635if test "$with_minimum" = "yes" -a "$with_reader" = ""
636then
637 with_reader=no
638fi
639if test "$with_reader" = "no" ; then
640 echo Disabling the xmlReader parsing interface
641 WITH_READER=0
Daniel Veillard73b013f2003-09-30 12:36:01 +0000642 READER_TEST=
Daniel Veillard81273902003-09-30 00:43:48 +0000643else
644 WITH_READER=1
Daniel Veillard73b013f2003-09-30 12:36:01 +0000645 READER_TEST=Readertests
Daniel Veillard81273902003-09-30 00:43:48 +0000646fi
647AC_SUBST(WITH_READER)
Daniel Veillard73b013f2003-09-30 12:36:01 +0000648AC_SUBST(READER_TEST)
Daniel Veillard81273902003-09-30 00:43:48 +0000649
Daniel Veillardb3de70c2003-12-02 22:32:15 +0000650AC_ARG_WITH(pattern,
651[ --with-pattern add the xmlPattern selection interface (on)])
652if test "$with_minimum" = "yes" -a "$with_pattern" = ""
653then
654 with_pattern=no
655fi
656if test "$with_pattern" = "no" ; then
657 echo Disabling the xmlPattern parsing interface
658 WITH_PATTERN=0
659 PATTERN_TEST=
660else
661 WITH_PATTERN=1
662 PATTERN_TEST=Patterntests
663fi
664AC_SUBST(WITH_PATTERN)
665AC_SUBST(PATTERN_TEST)
666
Daniel Veillard1d211e22003-10-20 22:32:39 +0000667AC_ARG_WITH(writer,
668[ --with-writer add the xmlWriter saving interface (on)])
669if test "$with_minimum" = "yes" -a "$with_writer" = ""
670then
671 with_writer=no
672fi
673if test "$with_writer" = "no" ; then
674 echo Disabling the xmlWriter saving interface
675 WITH_WRITER=0
676# WRITER_TEST=
677else
678 WITH_WRITER=1
679# WRITER_TEST=Writertests
680fi
681AC_SUBST(WITH_WRITER)
682#AC_SUBST(WRITER_TEST)
683
Daniel Veillard81273902003-09-30 00:43:48 +0000684AC_ARG_WITH(sax1,
685[ --with-sax1 add the older SAX1 interface (on)])
686if test "$with_minimum" = "yes" -a "$with_sax1" = ""
687then
688 with_sax1=no
689fi
690if test "$with_sax1" = "no" ; then
691 echo Disabling the older SAX1 interface
692 WITH_SAX1=0
693 TEST_SAX=
694else
695 WITH_SAX1=1
696 TEST_SAX=SAXtests
697fi
698AC_SUBST(WITH_SAX1)
699AC_SUBST(TEST_SAX)
700
Daniel Veillard73b013f2003-09-30 12:36:01 +0000701AC_ARG_WITH(push,
702[ --with-push add the PUSH parser interfaces (on)])
703if test "$with_minimum" = "yes" -a "$with_push" = ""
704then
705 with_push=no
706fi
707if test "$with_push" = "no" ; then
708 echo Disabling the PUSH parser interfaces
709 WITH_PUSH=0
710 TEST_PUSH=
711else
712 WITH_PUSH=1
713 TEST_PUSH="XMLPushtests"
714fi
715AC_SUBST(WITH_PUSH)
716AC_SUBST(TEST_PUSH)
717
718AC_ARG_WITH(html,
719[ --with-html add the HTML support (on)])
720if test "$with_minimum" = "yes" -a "$with_html" = ""
721then
722 with_html=no
723fi
724if test "$with_html" = "no" ; then
725 echo Disabling HTML support
726 WITH_HTML=0
727 HTML_OBJ=
728 TEST_HTML=
729else
730 WITH_HTML=1
731 HTML_OBJ="HTMLparser.o HTMLtree.o"
732 TEST_HTML=HTMLtests
William M. Brack871611b2003-10-18 04:53:14 +0000733 if test "$with_push" != "no" ; then
Daniel Veillard73b013f2003-09-30 12:36:01 +0000734 TEST_PHTML=HTMLPushtests
735 else
736 TEST_PHTML=
737 fi
738fi
739AC_SUBST(WITH_HTML)
740AC_SUBST(HTML_OBJ)
741AC_SUBST(TEST_HTML)
742AC_SUBST(TEST_PHTML)
743
Daniel Veillard4432df22003-09-28 18:58:27 +0000744AC_ARG_WITH(valid,
745[ --with-valid add the DTD validation support (on)])
746if test "$with_minimum" = "yes" -a "$with_valid" = ""
747then
748 with_valid=no
749fi
Daniel Veillard73b013f2003-09-30 12:36:01 +0000750if test "$with_valid" = "no" ; then
Daniel Veillard4432df22003-09-28 18:58:27 +0000751 echo Disabling DTD validation support
752 WITH_VALID=0
753 TEST_VALID=
754 TEST_VTIME=
755else
756 WITH_VALID=1
757 TEST_VALID=Validtests
758 TEST_VTIME=VTimingtests
759fi
760AC_SUBST(WITH_VALID)
761AC_SUBST(TEST_VALID)
762AC_SUBST(TEST_VTIME)
Daniel Veillard361d8452000-04-03 19:48:13 +0000763
William M. Brack97ad4c72003-05-13 08:08:36 +0000764AC_ARG_WITH(catalog,
765[ --with-catalog add the Catalog support (on)])
Daniel Veillard4432df22003-09-28 18:58:27 +0000766if test "$with_minimum" = "yes" -a "$with_catalog" = ""
767then
768 with_catalog=no
769fi
Daniel Veillarda7374592001-05-10 14:17:55 +0000770if test "$with_catalog" = "no" ; then
771 echo Disabling Catalog support
772 WITH_CATALOG=0
773 CATALOG_OBJ=
Daniel Veillard4432df22003-09-28 18:58:27 +0000774 TEST_CATALOG=
Daniel Veillarda7374592001-05-10 14:17:55 +0000775else
776 WITH_CATALOG=1
777 CATALOG_OBJ="catalog.o"
Daniel Veillard4432df22003-09-28 18:58:27 +0000778 TEST_CATALOG=Catatests
Daniel Veillarda7374592001-05-10 14:17:55 +0000779fi
780AC_SUBST(WITH_CATALOG)
781AC_SUBST(CATALOG_OBJ)
Daniel Veillard4432df22003-09-28 18:58:27 +0000782AC_SUBST(TEST_CATALOG)
Daniel Veillarda7374592001-05-10 14:17:55 +0000783
William M. Brack97ad4c72003-05-13 08:08:36 +0000784AC_ARG_WITH(docbook,
785[ --with-docbook add Docbook SGML support (on)])
Daniel Veillard4432df22003-09-28 18:58:27 +0000786if test "$with_minimum" = "yes" -a "$with_docbook" = ""
787then
788 with_docbook=no
789fi
Daniel Veillardb59076b2001-04-29 17:04:07 +0000790if test "$with_docbook" = "no" ; then
791 echo Disabling Docbook support
Daniel Veillardeae522a2001-04-23 13:41:34 +0000792 WITH_DOCB=0
793 DOCB_OBJ=
Daniel Veillardb59076b2001-04-29 17:04:07 +0000794else
795 WITH_DOCB=1
796 DOCB_OBJ="DOCBparser.o"
Daniel Veillardeae522a2001-04-23 13:41:34 +0000797fi
798AC_SUBST(WITH_DOCB)
799AC_SUBST(DOCB_OBJ)
800
801
William M. Brack97ad4c72003-05-13 08:08:36 +0000802AC_ARG_WITH(xpath,
803[ --with-xpath add the XPATH support (on)])
Daniel Veillard4432df22003-09-28 18:58:27 +0000804if test "$with_minimum" = "yes" -a "$with_xpath" = ""
805then
806 with_xpath=no
807fi
Daniel Veillard361d8452000-04-03 19:48:13 +0000808if test "$with_xpath" = "no" ; then
809 echo Disabling XPATH support
Daniel Veillard52afe802000-10-22 16:56:02 +0000810 with_xptr="no"
Daniel Veillard34de97f2002-04-30 14:29:22 +0000811 with_c14n="no"
Daniel Veillard070803b2002-05-03 07:29:38 +0000812 with_xinclude="no"
Daniel Veillard361d8452000-04-03 19:48:13 +0000813 WITH_XPATH=0
814 XPATH_OBJ=
Daniel Veillard4432df22003-09-28 18:58:27 +0000815 TEST_XPATH=
Daniel Veillard361d8452000-04-03 19:48:13 +0000816else
817 WITH_XPATH=1
818 XPATH_OBJ=xpath.o
Daniel Veillard4432df22003-09-28 18:58:27 +0000819 TEST_XPATH=XPathtests
Daniel Veillard361d8452000-04-03 19:48:13 +0000820fi
821AC_SUBST(WITH_XPATH)
822AC_SUBST(XPATH_OBJ)
Daniel Veillard4432df22003-09-28 18:58:27 +0000823AC_SUBST(TEST_XPATH)
Daniel Veillard361d8452000-04-03 19:48:13 +0000824
William M. Brack97ad4c72003-05-13 08:08:36 +0000825AC_ARG_WITH(xptr,
826[ --with-xptr add the XPointer support (on)])
Daniel Veillard4432df22003-09-28 18:58:27 +0000827if test "$with_minimum" = "yes" -a "$with_xptr" = ""
828then
829 with_xptr=no
830fi
Daniel Veillardc8df0aa2000-10-10 23:50:30 +0000831if test "$with_xptr" = "no" ; then
832 echo Disabling XPointer support
833 WITH_XPTR=0
834 XPTR_OBJ=
Daniel Veillard4432df22003-09-28 18:58:27 +0000835 TEST_XPTR=
Daniel Veillardc8df0aa2000-10-10 23:50:30 +0000836else
837 WITH_XPTR=1
838 XPTR_OBJ=xpointer.o
Daniel Veillard4432df22003-09-28 18:58:27 +0000839 TEST_XPTR=XPtrtests
Daniel Veillardc8df0aa2000-10-10 23:50:30 +0000840fi
841AC_SUBST(WITH_XPTR)
842AC_SUBST(XPTR_OBJ)
Daniel Veillard4432df22003-09-28 18:58:27 +0000843AC_SUBST(TEST_XPTR)
Daniel Veillardc8df0aa2000-10-10 23:50:30 +0000844
William M. Brack97ad4c72003-05-13 08:08:36 +0000845AC_ARG_WITH(c14n,
846[ --with-c14n add the Canonicalization support (on)])
Daniel Veillard4432df22003-09-28 18:58:27 +0000847if test "$with_minimum" = "yes" -a "$with_c14n" = ""
848then
849 with_c14n=no
850fi
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000851if test "$with_c14n" = "no" ; then
852 echo Disabling C14N support
853 WITH_C14N=0
854 C14N_OBJ=
Daniel Veillard4432df22003-09-28 18:58:27 +0000855 TEST_C14N=
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000856else
857 WITH_C14N=1
858 C14N_OBJ="c14n.c"
Daniel Veillard4432df22003-09-28 18:58:27 +0000859 TEST_C14N=C14Ntests
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000860fi
861AC_SUBST(WITH_C14N)
862AC_SUBST(C14N_OBJ)
Daniel Veillard4432df22003-09-28 18:58:27 +0000863AC_SUBST(TEST_C14N)
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000864
William M. Brack97ad4c72003-05-13 08:08:36 +0000865AC_ARG_WITH(xinclude,
866[ --with-xinclude add the XInclude support (on)])
Daniel Veillard4432df22003-09-28 18:58:27 +0000867if test "$with_minimum" = "yes" -a "$with_xinclude" = ""
868then
869 with_xinclude=no
870fi
Daniel Veillard9e8bfae2000-11-06 16:43:11 +0000871if test "$with_xinclude" = "no" ; then
872 echo Disabling XInclude support
873 WITH_XINCLUDE=0
874 XINCLUDE_OBJ=
875 with_xinclude="no"
Daniel Veillard4432df22003-09-28 18:58:27 +0000876 TEST_XINCLUDE=
Daniel Veillard9e8bfae2000-11-06 16:43:11 +0000877else
878 WITH_XINCLUDE=1
879 XINCLUDE_OBJ=xinclude.o
Daniel Veillard4432df22003-09-28 18:58:27 +0000880 TEST_XINCLUDE=XIncludetests
Daniel Veillard9e8bfae2000-11-06 16:43:11 +0000881fi
882AC_SUBST(WITH_XINCLUDE)
883AC_SUBST(XINCLUDE_OBJ)
Daniel Veillard4432df22003-09-28 18:58:27 +0000884AC_SUBST(TEST_XINCLUDE)
Daniel Veillard9e8bfae2000-11-06 16:43:11 +0000885
Daniel Veillard6e90d192001-07-03 16:37:49 +0000886WITH_ICONV=0
William M. Brack97ad4c72003-05-13 08:08:36 +0000887AC_ARG_WITH(iconv,
888[ --with-iconv[[=DIR]] add ICONV support (on)])
Daniel Veillard4432df22003-09-28 18:58:27 +0000889if test "$with_minimum" = "yes" -a "$with_iconv" = ""
890then
891 with_iconv=no
892fi
Daniel Veillard496a1cf2000-05-03 14:20:55 +0000893if test "$with_iconv" = "no" ; then
894 echo Disabling ICONV support
Daniel Veillardd574f782001-03-14 19:40:17 +0000895else
Daniel Veillard220346d2001-12-07 11:33:54 +0000896 if test "$with_iconv" != "yes" -a "$with_iconv" != "" ; then
Daniel Veillard6e90d192001-07-03 16:37:49 +0000897 CPPFLAGS="${CPPFLAGS} -I$with_iconv/include"
Daniel Veillardf5b44e42001-09-17 17:19:54 +0000898 # Export this since our headers include iconv.h
899 XML_INCLUDEDIR="${XML_INCLUDEDIR} -I$with_iconv/include"
Daniel Veillard6e90d192001-07-03 16:37:49 +0000900 ICONV_LIBS="-L$with_iconv/lib"
Daniel Veillard496a1cf2000-05-03 14:20:55 +0000901 fi
Daniel Veillard6e90d192001-07-03 16:37:49 +0000902
903 AC_CHECK_HEADER(iconv.h,
904 AC_MSG_CHECKING(for iconv)
905 AC_TRY_LINK([#include <stdlib.h>
906#include <iconv.h>],[
907iconv_t cd = iconv_open ("","");
908iconv (cd, NULL, NULL, NULL, NULL);],[
909 AC_MSG_RESULT(yes)
910 WITH_ICONV=1],[
911 AC_MSG_RESULT(no)
912 AC_MSG_CHECKING(for iconv in -liconv)
913
914 _ldflags="${LDFLAGS}"
915 _libs="${LIBS}"
916 LDFLAGS="${LDFLAGS} ${ICONV_LIBS}"
917 LIBS="${LIBS} -liconv"
918
919 AC_TRY_LINK([#include <stdlib.h>
920#include <iconv.h>],[
921iconv_t cd = iconv_open ("","");
922iconv (cd, NULL, NULL, NULL, NULL);],[
923 AC_MSG_RESULT(yes)
924 WITH_ICONV=1
925 ICONV_LIBS="${ICONV_LIBS} -liconv"
926 LIBS="${_libs}"
927 LDFLAGS="${_ldflags}"],[
928 AC_MSG_RESULT(no)
929 LIBS="${_libs}"
930 LDFLAGS="${_ldflags}"])]))
931fi
Daniel Veillard6984e6d2003-12-09 14:20:17 +0000932case "$host" in
933 *mingw*) M_LIBS=""
934 ;;
935 *) M_LIBS="-lm"
936 ;;
937esac
Daniel Veillardb82c1662001-12-09 14:00:54 +0000938XML_LIBS="-lxml2 $Z_LIBS $THREAD_LIBS $ICONV_LIBS $M_LIBS $LIBS"
Daniel Veillard90d165b2003-09-01 20:33:13 +0000939XML_LIBTOOLLIBS="libxml2.la"
Daniel Veillard496a1cf2000-05-03 14:20:55 +0000940AC_SUBST(WITH_ICONV)
941
Daniel Veillard01fc1a92003-07-30 15:12:01 +0000942WITH_ISO8859X=1
943AC_ARG_WITH(iso8859x,
944[ --with-iso8859x add ISO8859X support if no iconv (on)])
Daniel Veillard4432df22003-09-28 18:58:27 +0000945if test "$with_minimum" = "yes" -a "$with_iso8859x" = ""
946then
947 with_iso8859x=no
948fi
Daniel Veillard01fc1a92003-07-30 15:12:01 +0000949if test "$WITH_ICONV" != "1" ; then
950if test "$with_iso8859x" = "no" ; then
951 echo Disabling ISO8859X support
952 WITH_ISO8859X=0
953fi
954fi
955AC_SUBST(WITH_ISO8859X)
956
William M. Brack97ad4c72003-05-13 08:08:36 +0000957AC_ARG_WITH(schemas,
Daniel Veillard73b013f2003-09-30 12:36:01 +0000958[ --with-schemas add Relax-NG and experimental Schemas support (on)])
Daniel Veillard4432df22003-09-28 18:58:27 +0000959if test "$with_minimum" = "yes" -a "$with_schemas" = ""
960then
961 with_schemas=no
962fi
Daniel Veillardef4d3bc2003-02-07 12:38:22 +0000963if test "$with_schemas" = "no" ; then
964 echo "Disabled Schemas/Relax-NG support"
965 WITH_SCHEMAS=0
966 TEST_SCHEMAS=
967else
Daniel Veillard71531f32003-02-05 13:19:53 +0000968 echo "Enabled Schemas/Relax-NG support"
Daniel Veillard4255d502002-04-16 15:50:10 +0000969 WITH_SCHEMAS=1
Daniel Veillard6eadf632003-01-23 18:29:16 +0000970 TEST_SCHEMAS="Schemastests Relaxtests"
Daniel Veillard6dc91962004-03-22 19:10:02 +0000971 if test "$PYTHON_INCLUDES" != "" ; then
972 PYTHON_TESTS="$PYTHON_TESTS RelaxNGPythonTests SchemasPythonTests"
973 fi
Daniel Veillard23e73572002-09-19 19:56:43 +0000974 with_regexps=yes
Daniel Veillard4255d502002-04-16 15:50:10 +0000975fi
976AC_SUBST(WITH_SCHEMAS)
977AC_SUBST(TEST_SCHEMAS)
978
William M. Brack97ad4c72003-05-13 08:08:36 +0000979AC_ARG_WITH(regexps,
980[ --with-regexps add Regular Expressions support (on)])
Daniel Veillard4432df22003-09-28 18:58:27 +0000981if test "$with_minimum" = "yes" -a "$with_regexps" = ""
982then
983 with_regexps=no
984fi
Daniel Veillard23e73572002-09-19 19:56:43 +0000985if test "$with_regexps" = "no" ; then
986 echo Disabling Regexps support
987 WITH_REGEXPS=0
988 TEST_REGEXPS=
989else
990 WITH_REGEXPS=1
991 TEST_REGEXPS="Regexptests Automatatests"
992fi
993AC_SUBST(WITH_REGEXPS)
994AC_SUBST(TEST_REGEXPS)
995
William M. Brack97ad4c72003-05-13 08:08:36 +0000996AC_ARG_WITH(debug,
997[ --with-debug add the debugging module (on)])
Daniel Veillard4432df22003-09-28 18:58:27 +0000998if test "$with_minimum" = "yes" -a "$with_debug" = ""
999then
1000 with_debug=no
1001fi
Daniel Veillard361d8452000-04-03 19:48:13 +00001002if test "$with_debug" = "no" ; then
1003 echo Disabling DEBUG support
1004 WITH_DEBUG=0
1005 DEBUG_OBJ=
Daniel Veillard4432df22003-09-28 18:58:27 +00001006 TEST_DEBUG=
Daniel Veillard361d8452000-04-03 19:48:13 +00001007else
1008 WITH_DEBUG=1
1009 DEBUG_OBJ=debugXML.o
Daniel Veillard4432df22003-09-28 18:58:27 +00001010 TEST_DEBUG=Scripttests
Daniel Veillard361d8452000-04-03 19:48:13 +00001011fi
1012AC_SUBST(WITH_DEBUG)
1013AC_SUBST(DEBUG_OBJ)
Daniel Veillard4432df22003-09-28 18:58:27 +00001014AC_SUBST(TEST_DEBUG)
Daniel Veillard361d8452000-04-03 19:48:13 +00001015
William M. Brack97ad4c72003-05-13 08:08:36 +00001016AC_ARG_WITH(mem_debug,
1017[ --with-mem-debug add the memory debugging module (off)])
Daniel Veillard4432df22003-09-28 18:58:27 +00001018if test "$with_minimum" = "yes" -a "$with_mem_debug" = ""
1019then
1020 with_mem_debug=no
1021fi
Daniel Veillard361d8452000-04-03 19:48:13 +00001022if test "$with_mem_debug" = "yes" ; then
William M. Brack306e33c2004-06-12 01:01:22 +00001023 if test "$with_thread_alloc" = "yes" ; then
1024 echo Disabling memory debug - cannot use mem-debug with thread-alloc!
1025 WITH_MEM_DEBUG=0
1026 else
1027 echo Enabling memory debug support
1028 WITH_MEM_DEBUG=1
1029 fi
Daniel Veillard361d8452000-04-03 19:48:13 +00001030else
1031 WITH_MEM_DEBUG=0
1032fi
1033AC_SUBST(WITH_MEM_DEBUG)
1034
Daniel Veillard22cdb842004-10-04 14:09:17 +00001035AC_ARG_WITH(run_debug,
1036[ --with-run-debug add the runtime debugging module (off)])
1037if test "$with_minimum" = "yes" -a "$with_run_debug" = ""
1038then
1039 with_run_debug=no
1040fi
1041if test "$with_run_debug" = "yes" ; then
1042 echo Enabling runtime debug support
1043 WITH_RUN_DEBUG=1
1044else
1045 WITH_RUN_DEBUG=0
1046fi
1047AC_SUBST(WITH_RUN_DEBUG)
Daniel Veillard1638a472003-08-14 01:23:25 +00001048
1049WIN32_EXTRA_LIBADD=
1050WIN32_EXTRA_LDFLAGS=
1051case "$host" in
1052 *-*-mingw*)
Daniel Veillard6984e6d2003-12-09 14:20:17 +00001053 CPPFLAGS="$CPPFLAGS -DWIN32"
1054 WIN32_EXTRA_LIBADD="-lws2_32"
Daniel Veillard1638a472003-08-14 01:23:25 +00001055 WIN32_EXTRA_LDFLAGS="-no-undefined"
1056 AC_DEFINE([_WINSOCKAPI_],1,[Using the Win32 Socket implementation])
1057 AC_DEFINE([snprintf],[_snprintf],[Win32 Std C name mangling work-around])
1058 AC_DEFINE([vsnprintf],[_vsnprintf],[Win32 Std C name mangling work-around])
1059 ;;
Daniel Veillardd392ba72004-08-04 14:56:45 +00001060 *-*-cygwin*)
1061 CYGWIN_EXTRA_LDFLAGS="-no-undefined"
1062 CYGWIN_EXTRA_PYTHON_LIBADD="-L/usr/lib/python2.3/config -lpython2.3"
1063 ;;
Daniel Veillard1638a472003-08-14 01:23:25 +00001064esac
1065AC_SUBST(WIN32_EXTRA_LIBADD)
1066AC_SUBST(WIN32_EXTRA_LDFLAGS)
Daniel Veillardd392ba72004-08-04 14:56:45 +00001067AC_SUBST(CYGWIN_EXTRA_LDFLAGS)
1068AC_SUBST(CYGWIN_EXTRA_PYTHON_LIBADD)
Daniel Veillard1638a472003-08-14 01:23:25 +00001069
Daniel Veillard6984e6d2003-12-09 14:20:17 +00001070AC_SUBST(CPPFLAGS)
Daniel Veillardd7e200c1999-11-15 17:53:11 +00001071AC_SUBST(CFLAGS)
Daniel Veillardf5c2c871999-12-01 09:51:45 +00001072AC_SUBST(XML_CFLAGS)
Daniel Veillardd7e200c1999-11-15 17:53:11 +00001073
Daniel Veillardb05deb71999-08-10 19:04:08 +00001074AC_SUBST(XML_LIBDIR)
1075AC_SUBST(XML_LIBS)
Daniel Veillard90d165b2003-09-01 20:33:13 +00001076AC_SUBST(XML_LIBTOOLLIBS)
Daniel Veillard81418e32001-05-22 15:08:55 +00001077AC_SUBST(ICONV_LIBS)
Daniel Veillardb05deb71999-08-10 19:04:08 +00001078AC_SUBST(XML_INCLUDEDIR)
1079AC_SUBST(HTML_DIR)
1080AC_SUBST(HAVE_ISNAN)
1081AC_SUBST(HAVE_ISINF)
Daniel Veillardf1d0e6b2002-01-31 23:42:44 +00001082AC_SUBST(PYTHON)
1083AC_SUBST(PYTHON_VERSION)
1084AC_SUBST(PYTHON_INCLUDES)
Daniel Veillard253aa2c2002-02-02 09:17:16 +00001085AC_SUBST(PYTHON_SITE_PACKAGES)
Daniel Veillardb05deb71999-08-10 19:04:08 +00001086
Daniel Veillardb05deb71999-08-10 19:04:08 +00001087AC_SUBST(M_LIBS)
Daniel Veillard437b87b2000-01-03 17:30:46 +00001088AC_SUBST(RDL_LIBS)
Daniel Veillard361d8452000-04-03 19:48:13 +00001089
Daniel Veillard9715c172002-11-25 16:33:40 +00001090dnl for the spec file
1091RELDATE=`date +'%a %b %e %Y'`
1092AC_SUBST(RELDATE)
Daniel Veillard6dc91962004-03-22 19:10:02 +00001093AC_SUBST(PYTHON_TESTS)
Daniel Veillard9715c172002-11-25 16:33:40 +00001094
Daniel Veillardc6e997c2003-01-27 12:35:42 +00001095rm -f COPYING.LIB COPYING
Daniel Veillardc575b992002-02-08 13:28:40 +00001096ln -s Copyright COPYING
1097
Daniel Veillarde4177a52004-01-08 16:43:57 +00001098# keep on one line for cygwin c.f. #130896
Daniel Veillardb1da40c2004-09-06 11:57:44 +00001099AC_OUTPUT(libxml2.spec:libxml.spec.in Makefile include/Makefile include/libxml/Makefile doc/Makefile doc/examples/Makefile example/Makefile python/Makefile python/tests/Makefile xstc/Makefile include/libxml/xmlversion.h xml2-config libxml-2.0.pc libxml-2.0-uninstalled.pc python/setup.py)
Arturo Espinosa15fe6e71998-09-07 17:27:57 +00001100
Daniel Veillard06d25242004-02-25 13:01:42 +00001101chmod +x xml2-config python/setup.py