blob: cab221d615ade0c2e5e25c7843c0b7d94dee81f6 [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 Veillard6927b102004-10-27 17:29:04 +00008LIBXML_MICRO_VERSION=15
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])
Dodji Seketeli8eba3f32004-11-09 18:30:30 +0000246 have_broken_ss_family=no
247
248 dnl *********************************************************************
249 dnl on some platforms (like AIX 5L), the structure sockaddr doesn't have
250 dnl a ss_family member, but rather __ss_family. Let's detect that
251 dnl and define the HAVE_BROKEN_SS_FAMILY when we are on one of these platforms.
252 dnl ********************************************************************
253 AC_MSG_CHECKING([broken struct sockaddr::ss_family])
254 AC_TRY_COMPILE([
255 #include <sys/socket.h>
256 #include <sys/types.h>], [
257 struct sockaddr_storage ss ;
258 ss.__ss_family = 0 ;
259 ],
260 have_broken_ss_family=yes,
261 have_broken_ss_family=no
262 )
263 AC_MSG_RESULT($have_broken_ss_family)
264 if test x$have_broken_ss_family = xyes ; then
265 AC_DEFINE(HAVE_BROKEN_SS_FAMILY, [], [Whether struct sockaddr::__ss_family exists])
266 AC_DEFINE(ss_family, __ss_family, [ss_family is not defined here, use __ss_family instead])
267 fi
Daniel Veillardde2a67b2003-06-21 14:20:04 +0000268
269 have_getaddrinfo=no
270 AC_CHECK_FUNC(getaddrinfo, have_getaddrinfo=yes)
271 if test $have_getaddrinfo != yes; then
272 for lib in bsd socket inet; do
273 AC_CHECK_LIB($lib, getaddrinfo, [LIBS="$LIBS -l$lib";have_getaddrinfo=yes;break])
274 done
275 fi
276
William M. Brack476cd962003-08-13 11:09:42 +0000277 if test $have_getaddrinfo = yes; then
Daniel Veillardc790bf42003-10-11 10:50:10 +0000278 AC_DEFINE([HAVE_GETADDRINFO], [], [Define if getaddrinfo is there])
Daniel Veillardde2a67b2003-06-21 14:20:04 +0000279 fi
280 fi
281fi
282
283dnl ******************************End IPv6 checks******************************
284
Daniel Veillardb05deb71999-08-10 19:04:08 +0000285dnl Checks for isnan in libm if not in libc
Daniel Veillard6984e6d2003-12-09 14:20:17 +0000286AC_CHECK_FUNC(isnan, AC_DEFINE([HAVE_ISNAN],[], [Define if isnan is there]) , AC_CHECK_LIB(m, isnan,
Daniel Veillardc790bf42003-10-11 10:50:10 +0000287 [AC_DEFINE([HAVE_ISNAN],[], [Define if isnan is there])]))
Daniel Veillardb05deb71999-08-10 19:04:08 +0000288
Daniel Veillardc790bf42003-10-11 10:50:10 +0000289AC_CHECK_FUNC(isinf, AC_DEFINE([HAVE_ISINF], [], [Define if isinf is there]) , AC_CHECK_LIB(m, isinf,
290 [AC_DEFINE([HAVE_ISINF], [], [Define if isinf is there])]))
Daniel Veillardb05deb71999-08-10 19:04:08 +0000291
292XML_LIBDIR='-L${libdir}'
Daniel Veillarde7dd2b82002-03-15 18:44:02 +0000293XML_INCLUDEDIR='-I${includedir}/libxml2'
Daniel Veillardb05deb71999-08-10 19:04:08 +0000294
Daniel Veillardd7e200c1999-11-15 17:53:11 +0000295dnl
Daniel Veillardf5c2c871999-12-01 09:51:45 +0000296dnl Extra flags
297dnl
298XML_CFLAGS=""
Daniel Veillard357c9602001-05-03 10:49:20 +0000299RDL_LIBS=""
Daniel Veillardf5c2c871999-12-01 09:51:45 +0000300
Daniel Veillardd94849b2003-07-28 13:02:24 +0000301AC_ARG_WITH(fexceptions,
302[ --with-fexceptions add GCC flag -fexceptions for C++ exceptions (off)])
Daniel Veillard4432df22003-09-28 18:58:27 +0000303if test "$with_minimum" = "yes" -a "$with_fexceptions" = ""
304then
305 with_fexceptions=no
306fi
Daniel Veillardf5c2c871999-12-01 09:51:45 +0000307dnl
Daniel Veillardb45c43b2001-04-28 17:02:11 +0000308dnl Workaround for native compilers
309dnl HP : http://bugs.gnome.org/db/31/3163.html
310dnl DEC : Enable NaN/Inf
Daniel Veillardd7e200c1999-11-15 17:53:11 +0000311dnl
Daniel Veillard03109292000-08-14 14:58:22 +0000312if test "${GCC}" != "yes" ; then
Daniel Veillardd7e200c1999-11-15 17:53:11 +0000313 case "${host}" in
314 *-*-hpux* )
Daniel Veillard03109292000-08-14 14:58:22 +0000315 CFLAGS="${CFLAGS} -Wp,-H30000"
Daniel Veillardd7e200c1999-11-15 17:53:11 +0000316 ;;
Daniel Veillardb45c43b2001-04-28 17:02:11 +0000317 *-dec-osf* )
318 CFLAGS="${CFLAGS} -ieee"
319 ;;
William M. Brack476cd962003-08-13 11:09:42 +0000320 alpha*-*-linux* )
321 CFLAGS="${CFLAGS} -ieee"
322 ;;
Daniel Veillardd7e200c1999-11-15 17:53:11 +0000323 esac
Daniel Veillardd574f782001-03-14 19:40:17 +0000324else
Daniel Veillardd94849b2003-07-28 13:02:24 +0000325 if test "$with_fexceptions" = "yes"
326 then
327 #
328 # Not activated by default because this inflates the code size
329 # Used to allow propagation of C++ exceptions through the library
330 #
331 CFLAGS="${CFLAGS} -fexceptions"
332 fi
333
Daniel Veillard05f97352004-10-31 15:35:32 +0000334 CFLAGS="${CFLAGS} -pedantic -W -Wformat -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 +0000335 case "${host}" in
336 alpha*-*-linux* )
337 CFLAGS="${CFLAGS} -mieee"
338 ;;
Daniel Veillardcb5b4d62002-04-11 08:24:26 +0000339 alpha*-*-osf* )
340 CFLAGS="${CFLAGS} -mieee"
341 ;;
Daniel Veillard14839d52001-06-06 16:11:56 +0000342 esac
Daniel Veillardd7e200c1999-11-15 17:53:11 +0000343fi
Daniel Veillardb0426ca2000-10-11 23:39:43 +0000344case ${host} in
345 *-*-solaris*)
Daniel Veillardd2ade932000-09-30 14:39:55 +0000346 XML_LIBDIR="${XML_LIBDIR} -R${libdir}"
347 ;;
Daniel Veillardd30be4a2002-03-28 18:25:31 +0000348 hppa*-hp-mpeix)
349 NEED_TRIO=1
350 ;;
Daniel Veillardd2ade932000-09-30 14:39:55 +0000351esac
352
Daniel Veillardf5c2c871999-12-01 09:51:45 +0000353
Daniel Veillardf1d0e6b2002-01-31 23:42:44 +0000354dnl
355dnl check for python
356dnl
357
358PYTHON=
359PYTHON_VERSION=
360PYTHON_INCLUDES=
Daniel Veillard253aa2c2002-02-02 09:17:16 +0000361PYTHON_SITE_PACKAGES=
Daniel Veillard6dc91962004-03-22 19:10:02 +0000362PYTHON_TESTS=
Daniel Veillard38b80a82003-05-14 18:59:00 +0000363pythondir=
William M. Brack97ad4c72003-05-13 08:08:36 +0000364AC_ARG_WITH(python,
365[ --with-python[[=DIR]] build Python bindings if found])
Daniel Veillard4432df22003-09-28 18:58:27 +0000366if test "$with_minimum" = "yes" -a "$with_python" = ""
367then
368 with_python=no
369fi
Daniel Veillardf1d0e6b2002-01-31 23:42:44 +0000370if test "$with_python" != "no" ; then
371 if test -x "$with_python/bin/python"
372 then
373 echo Found python in $with_python/bin/python
374 PYTHON="$with_python/bin/python"
Daniel Veillard9b731d72002-04-14 12:56:08 +0000375 else
Daniel Veillarda8a89fe2002-04-12 21:03:34 +0000376 if test -x "$with_python"
377 then
Daniel Veillard4efd3be2002-11-18 09:11:13 +0000378 echo Found python in $with_python
379 PYTHON="$with_python"
Daniel Veillarda8a89fe2002-04-12 21:03:34 +0000380 else
Daniel Veillard4efd3be2002-11-18 09:11:13 +0000381 AC_PATH_PROG(PYTHON, python python2.3 python2.2 python2.1 python2.0 python1.6 python1.5)
Daniel Veillarda8a89fe2002-04-12 21:03:34 +0000382 fi
Daniel Veillardf1d0e6b2002-01-31 23:42:44 +0000383 fi
384 if test "$PYTHON" != ""
385 then
386 PYTHON_VERSION=`$PYTHON -c "import sys; print sys.version[[0:3]]"`
387 echo Found Python version $PYTHON_VERSION
388 fi
389 if test "$PYTHON_VERSION" != ""
390 then
Daniel Veillard253aa2c2002-02-02 09:17:16 +0000391 if test -r $with_python/include/python$PYTHON_VERSION/Python.h -a \
392 -d $with_python/lib/python$PYTHON_VERSION/site-packages
Daniel Veillardf1d0e6b2002-01-31 23:42:44 +0000393 then
394 PYTHON_INCLUDES=$with_python/include/python$PYTHON_VERSION
Daniel Veillard253aa2c2002-02-02 09:17:16 +0000395 PYTHON_SITE_PACKAGES=$with_python/lib/python$PYTHON_VERSION/site-packages
Daniel Veillardf1d0e6b2002-01-31 23:42:44 +0000396 else
397 if test -r $prefix/include/python$PYTHON_VERSION/Python.h
398 then
Daniel Veillard253aa2c2002-02-02 09:17:16 +0000399 PYTHON_INCLUDES='$(prefix)/include/python$(PYTHON_VERSION)'
Daniel Veillarde3b7d9a2002-08-14 14:11:30 +0000400 PYTHON_SITE_PACKAGES='$(libdir)/python$(PYTHON_VERSION)/site-packages'
Daniel Veillardf1d0e6b2002-01-31 23:42:44 +0000401 else
402 if test -r /usr/include/python$PYTHON_VERSION/Python.h
403 then
404 PYTHON_INCLUDES=/usr/include/python$PYTHON_VERSION
Daniel Veillarde3b7d9a2002-08-14 14:11:30 +0000405 PYTHON_SITE_PACKAGES='$(libdir)/python$(PYTHON_VERSION)/site-packages'
Daniel Veillardf1d0e6b2002-01-31 23:42:44 +0000406 else
407 echo could not find python$PYTHON_VERSION/Python.h
408 fi
409 fi
William M. Brack5d4cba42004-01-06 15:19:12 +0000410 if test ! -d "$PYTHON_SITE_PACKAGES"
Daniel Veillardb6984ef2002-08-14 16:55:31 +0000411 then
412 PYTHON_SITE_PACKAGES=`$PYTHON -c "from distutils import sysconfig; print sysconfig.get_python_lib()"`
413 fi
Daniel Veillardf1d0e6b2002-01-31 23:42:44 +0000414 fi
415 fi
Daniel Veillard38b80a82003-05-14 18:59:00 +0000416 if test "$with_python" != ""
417 then
418 pythondir='$(PYTHON_SITE_PACKAGES)'
419 else
420 pythondir='$(libdir)/python${PYTHON_VERSION}/site-packages'
421 fi
Daniel Veillardf1d0e6b2002-01-31 23:42:44 +0000422fi
423AM_CONDITIONAL(WITH_PYTHON, test "$PYTHON_INCLUDES" != "")
Daniel Veillard40b11342002-09-20 12:01:39 +0000424if test "$PYTHON_INCLUDES" != ""
425then
426 PYTHON_SUBDIR=python
427else
428 PYTHON_SUBDIR=
429fi
Daniel Veillard38b80a82003-05-14 18:59:00 +0000430AC_SUBST(pythondir)
Daniel Veillard40b11342002-09-20 12:01:39 +0000431AC_SUBST(PYTHON_SUBDIR)
Daniel Veillardf1d0e6b2002-01-31 23:42:44 +0000432
Daniel Veillard437b87b2000-01-03 17:30:46 +0000433dnl
434dnl Tester makes use of readline if present
435dnl
Daniel Veillard03109292000-08-14 14:58:22 +0000436_cppflags="${CPPFLAGS}"
437_ldflags="${LDFLAGS}"
Daniel Veillard437b87b2000-01-03 17:30:46 +0000438
Daniel Veillard03109292000-08-14 14:58:22 +0000439AC_ARG_WITH(readline,
440[ --with-readline=DIR use readline in DIR],[
441 if test "$withval" != "no" -a "$withval" != "yes"; then
442 RDL_DIR=$withval
443 CPPFLAGS="${CPPFLAGS} -I$withval/include"
444 LDFLAGS="${LDFLAGS} -L$withval/lib"
445 fi
446])
Daniel Veillard4432df22003-09-28 18:58:27 +0000447if test "$with_minimum" = "yes" -a "$with_readline" = ""
448then
449 with_readline=no
450fi
Daniel Veillard03109292000-08-14 14:58:22 +0000451
Daniel Veillard361d8452000-04-03 19:48:13 +0000452dnl
Daniel Veillardf6eea272001-01-18 12:17:12 +0000453dnl specific tests to setup DV's devel environment with debug etc ...
Daniel Veillard81418e32001-05-22 15:08:55 +0000454dnl (-Wunreachable-code)
Daniel Veillardf6eea272001-01-18 12:17:12 +0000455dnl
William M. Brack871611b2003-10-18 04:53:14 +0000456if [[ "${LOGNAME}" = "veillard" -a "`pwd`" = "/u/veillard/XML" ]] || \
Daniel Veillardb7c6ac42004-06-29 22:01:27 +0000457 [[ "${LOGNAME}" = "veillard" -a "`pwd`" = "/home/veillard/libxml2" ]] || \
William M. Bracka2e844a2004-01-06 11:52:13 +0000458 [[ "${LOGNAME}" = "bill" -a "`pwd`" = "/home/bill/gnomecvs/xmltest" ]] || \
William M. Brack4119d1c2004-06-24 02:24:44 +0000459 [[ "${LOGNAME}" = "wbrack" -a "`pwd`" = "/Users/wbrack/gnomecvs/xmltest" ]]
William M. Brack871611b2003-10-18 04:53:14 +0000460 then
Daniel Veillard4432df22003-09-28 18:58:27 +0000461 if test "$with_minimum" != "yes"
462 then
463 if test "${with_mem_debug}" = "" ; then
464 with_mem_debug="yes"
Daniel Veillard22cdb842004-10-04 14:09:17 +0000465 with_run_debug="yes"
Daniel Veillard4432df22003-09-28 18:58:27 +0000466 fi
467 if test "${with_docbook}" = "" ; then
468 with_docbook="yes"
469 fi
Daniel Veillardeae522a2001-04-23 13:41:34 +0000470 fi
Daniel Veillardeff45a92004-10-29 12:10:55 +0000471 if test "${CC}" = "gcc" ; then
Daniel Veillard05f97352004-10-31 15:35:32 +0000472 CFLAGS="-g -O -pedantic -W -Wformat -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 -Wall"
Daniel Veillardeff45a92004-10-29 12:10:55 +0000473 fi
Daniel Veillard2e9b1652003-02-19 13:29:45 +0000474 STATIC_BINARIES="-static"
Daniel Veillardc86a4fa2001-03-26 16:28:29 +0000475dnl -Wcast-qual -ansi
Daniel Veillard2e9b1652003-02-19 13:29:45 +0000476else
477 STATIC_BINARIES=
Daniel Veillardf6eea272001-01-18 12:17:12 +0000478fi
Daniel Veillard2e9b1652003-02-19 13:29:45 +0000479AC_SUBST(STATIC_BINARIES)
Daniel Veillard92ad2102001-03-27 12:47:33 +0000480
481dnl
482dnl Check for trio string functions
483dnl
484
485if test "${NEED_TRIO}" = "1" ; then
486 echo Adding trio library for string functions
487 WITH_TRIO=1
488else
489 WITH_TRIO=0
490fi
Daniel Veillard01ef7382001-05-08 07:31:43 +0000491AM_CONDITIONAL(WITH_TRIO_SOURCES, test "${NEED_TRIO}" = "1")
Daniel Veillard92ad2102001-03-27 12:47:33 +0000492AC_SUBST(WITH_TRIO)
493
Daniel Veillardf6eea272001-01-18 12:17:12 +0000494dnl
William M. Brack97ad4c72003-05-13 08:08:36 +0000495dnl Allow to enable/disable various pieces
Daniel Veillard361d8452000-04-03 19:48:13 +0000496dnl
497
Daniel Veillardb8478642001-10-12 17:29:10 +0000498THREAD_LIBS=""
499WITH_THREADS=0
500THREAD_CFLAGS=""
Daniel Veillardab7488e2001-10-17 11:30:37 +0000501TEST_THREADS=""
Daniel Veillard6984e6d2003-12-09 14:20:17 +0000502THREADS_W32=""
Daniel Veillard64a411c2001-10-15 12:32:07 +0000503
William M. Brack97ad4c72003-05-13 08:08:36 +0000504AC_ARG_WITH(threads,
505[ --with-threads add multithread support(on)])
Daniel Veillard4432df22003-09-28 18:58:27 +0000506if test "$with_minimum" = "yes" -a "$with_threads" = ""
507then
508 with_threads=no
509fi
Daniel Veillard84942712003-04-18 14:40:05 +0000510if test "$with_threads" = "no" ; then
511 echo Disabling multithreaded support
512else
Daniel Veillardb8478642001-10-12 17:29:10 +0000513 echo Enabling multithreaded support
514
515 AC_CHECK_HEADER(pthread.h,
Daniel Veillardcbaf3992001-12-31 16:16:02 +0000516 AC_CHECK_LIB(pthread, pthread_join,[
Daniel Veillardb8478642001-10-12 17:29:10 +0000517 THREAD_LIBS="-lpthread"
Daniel Veillardc790bf42003-10-11 10:50:10 +0000518 AC_DEFINE([HAVE_LIBPTHREAD], [], [Define if pthread library is there (-lpthread)])
519 AC_DEFINE([HAVE_PTHREAD_H], [], [Define if <pthread.h> is there])
Daniel Veillardab7488e2001-10-17 11:30:37 +0000520 WITH_THREADS="1"]))
Daniel Veillard6984e6d2003-12-09 14:20:17 +0000521 case $host_os in
522 *mingw32*) WITH_THREADS="1"
523 THREADS_W32="Win32"
524 THREAD_CFLAGS="$THREAD_CFLAGS -DHAVE_WIN32_THREADS"
525 ;;
526 esac
Daniel Veillardb8478642001-10-12 17:29:10 +0000527 if test "$WITH_THREADS" = "1" ; then
Daniel Veillardab7488e2001-10-17 11:30:37 +0000528 THREAD_CFLAGS="$THREAD_CFLAGS -D_REENTRANT"
529 TEST_THREADS="Threadtests"
Daniel Veillardb8478642001-10-12 17:29:10 +0000530 fi
531fi
William M. Brack97ad4c72003-05-13 08:08:36 +0000532AC_ARG_WITH(thread-alloc,
533[ --with-thread-alloc add per-thread memory(off)])
Daniel Veillard4432df22003-09-28 18:58:27 +0000534if test "$with_minimum" = "yes" -a "$with_thread_alloc" = ""
535then
536 with_thread_alloc=no
537fi
William M. Brack306e33c2004-06-12 01:01:22 +0000538if test "$with_thread_alloc" = "yes" -a "$WITH_THREADS" = "1" ; then
Daniel Veillardab7488e2001-10-17 11:30:37 +0000539 THREAD_CFLAGS="$THREAD_CFLAGS -DLIBXML_THREAD_ALLOC_ENABLED"
Daniel Veillard64a411c2001-10-15 12:32:07 +0000540fi
541
Daniel Veillardb8478642001-10-12 17:29:10 +0000542AC_SUBST(THREAD_LIBS)
543AC_SUBST(WITH_THREADS)
544AC_SUBST(THREAD_CFLAGS)
Daniel Veillardab7488e2001-10-17 11:30:37 +0000545AC_SUBST(TEST_THREADS)
Daniel Veillard6984e6d2003-12-09 14:20:17 +0000546AC_SUBST(THREADS_W32)
Daniel Veillardb8478642001-10-12 17:29:10 +0000547
William M. Brack97ad4c72003-05-13 08:08:36 +0000548AC_ARG_WITH(history,
549[ --with-history add history support to xmllint shell(off)])
Daniel Veillard4432df22003-09-28 18:58:27 +0000550if test "$with_minimum" = "yes" -a "$with_history" = ""
551then
552 with_history=no
553fi
Daniel Veillard259ff742001-10-06 13:49:59 +0000554if test "$with_history" = "yes" ; then
Daniel Veillardf012a642001-07-23 19:10:52 +0000555 echo Enabling xmllint shell history
556 dnl check for terminal library. this is a very cool solution
557 dnl from octave's configure.in
558 unset tcap
559 for termlib in ncurses curses termcap terminfo termlib; do
560 AC_CHECK_LIB(${termlib}, tputs, [tcap="-l$termlib"])
561 test -n "$tcap" && break
562 done
563
564 AC_CHECK_HEADER(readline/history.h,
565 AC_CHECK_LIB(history, append_history,[
566 RDL_LIBS="-lhistory"
Daniel Veillardc790bf42003-10-11 10:50:10 +0000567 AC_DEFINE([HAVE_LIBHISTORY], [], [Define if history library is there (-lhistory)])]))
Daniel Veillardf012a642001-07-23 19:10:52 +0000568 AC_CHECK_HEADER(readline/readline.h,
569 AC_CHECK_LIB(readline, readline,[
570 RDL_LIBS="-lreadline $RDL_LIBS $tcap"
Daniel Veillardc790bf42003-10-11 10:50:10 +0000571 AC_DEFINE([HAVE_LIBREADLINE], [], [Define if readline library is there (-lreadline)])], , $tcap))
Daniel Veillardf012a642001-07-23 19:10:52 +0000572 if test -n "$RDL_DIR" -a -n "$RDL_LIBS"; then
573 CPPFLAGS="$CPPFLAGS -I${RDL_DIR}/include"
574 RDL_LIBS="-L${RDL_DIR}/lib $RDL_LIBS"
575 else
576 CPPFLAGS=${_cppflags}
577 fi
578 LDFLAGS=${_ldflags}
579fi
580
Daniel Veillarda9cce9c2003-09-29 13:20:24 +0000581AC_ARG_WITH(output,
Daniel Veillard652327a2003-09-29 18:02:38 +0000582[ --with-output add the serialization support (on)])
Daniel Veillarda9cce9c2003-09-29 13:20:24 +0000583if test "$with_minimum" = "yes" -a "$with_output" = ""
584then
585 with_output=no
586fi
587if test "$with_output" = "no" ; then
588 echo Disabling serialization/saving support
589 WITH_OUTPUT=0
590else
591 WITH_OUTPUT=1
592fi
593AC_SUBST(WITH_OUTPUT)
594
Daniel Veillard652327a2003-09-29 18:02:38 +0000595AC_ARG_WITH(tree,
596[ --with-tree add the DOM like tree manipulation APIs (on)])
597if test "$with_minimum" = "yes" -a "$with_tree" = ""
598then
599 with_tree=no
600fi
601if test "$with_tree" = "no" ; then
602 echo Disabling DOM like tree manipulation APIs
603 WITH_TREE=0
604else
605 WITH_TREE=1
606fi
607AC_SUBST(WITH_TREE)
608
William M. Brack97ad4c72003-05-13 08:08:36 +0000609AC_ARG_WITH(ftp,
610[ --with-ftp add the FTP support (on)])
Daniel Veillard4432df22003-09-28 18:58:27 +0000611if test "$with_minimum" = "yes" -a "$with_ftp" = ""
612then
613 with_ftp=no
614fi
Daniel Veillard361d8452000-04-03 19:48:13 +0000615if test "$with_ftp" = "no" ; then
616 echo Disabling FTP support
617 WITH_FTP=0
618 FTP_OBJ=
619else
620 WITH_FTP=1
621 FTP_OBJ=nanoftp.o
622fi
623AC_SUBST(WITH_FTP)
624AC_SUBST(FTP_OBJ)
625
William M. Brack97ad4c72003-05-13 08:08:36 +0000626AC_ARG_WITH(http,
627[ --with-http add the HTTP support (on)])
Daniel Veillard4432df22003-09-28 18:58:27 +0000628if test "$with_minimum" = "yes" -a "$with_http" = ""
629then
630 with_http=no
631fi
Daniel Veillard361d8452000-04-03 19:48:13 +0000632if test "$with_http" = "no" ; then
633 echo Disabling HTTP support
634 WITH_HTTP=0
635 HTTP_OBJ=
636else
637 WITH_HTTP=1
638 HTTP_OBJ=nanohttp.o
639fi
640AC_SUBST(WITH_HTTP)
641AC_SUBST(HTTP_OBJ)
642
Daniel Veillard4432df22003-09-28 18:58:27 +0000643AC_ARG_WITH(legacy,
Daniel Veillard652327a2003-09-29 18:02:38 +0000644[ --with-legacy add deprecated APIs for compatibility (on)])
Daniel Veillard4432df22003-09-28 18:58:27 +0000645if test "$with_minimum" = "yes" -a "$with_legacy" = ""
646then
647 with_legacy=no
648fi
649if test "$with_legacy" = "no" ; then
650 echo Disabling deprecated APIs
651 WITH_LEGACY=0
652else
653 WITH_LEGACY=1
654fi
655AC_SUBST(WITH_LEGACY)
656
Daniel Veillard81273902003-09-30 00:43:48 +0000657AC_ARG_WITH(reader,
658[ --with-reader add the xmlReader parsing interface (on)])
659if test "$with_minimum" = "yes" -a "$with_reader" = ""
660then
661 with_reader=no
662fi
663if test "$with_reader" = "no" ; then
664 echo Disabling the xmlReader parsing interface
665 WITH_READER=0
Daniel Veillard73b013f2003-09-30 12:36:01 +0000666 READER_TEST=
Daniel Veillard81273902003-09-30 00:43:48 +0000667else
668 WITH_READER=1
Daniel Veillard73b013f2003-09-30 12:36:01 +0000669 READER_TEST=Readertests
Daniel Veillard81273902003-09-30 00:43:48 +0000670fi
671AC_SUBST(WITH_READER)
Daniel Veillard73b013f2003-09-30 12:36:01 +0000672AC_SUBST(READER_TEST)
Daniel Veillard81273902003-09-30 00:43:48 +0000673
Daniel Veillardb3de70c2003-12-02 22:32:15 +0000674AC_ARG_WITH(pattern,
675[ --with-pattern add the xmlPattern selection interface (on)])
676if test "$with_minimum" = "yes" -a "$with_pattern" = ""
677then
678 with_pattern=no
679fi
680if test "$with_pattern" = "no" ; then
681 echo Disabling the xmlPattern parsing interface
682 WITH_PATTERN=0
683 PATTERN_TEST=
684else
685 WITH_PATTERN=1
686 PATTERN_TEST=Patterntests
687fi
688AC_SUBST(WITH_PATTERN)
689AC_SUBST(PATTERN_TEST)
690
Daniel Veillard1d211e22003-10-20 22:32:39 +0000691AC_ARG_WITH(writer,
692[ --with-writer add the xmlWriter saving interface (on)])
693if test "$with_minimum" = "yes" -a "$with_writer" = ""
694then
695 with_writer=no
696fi
697if test "$with_writer" = "no" ; then
698 echo Disabling the xmlWriter saving interface
699 WITH_WRITER=0
700# WRITER_TEST=
701else
702 WITH_WRITER=1
703# WRITER_TEST=Writertests
704fi
705AC_SUBST(WITH_WRITER)
706#AC_SUBST(WRITER_TEST)
707
Daniel Veillard81273902003-09-30 00:43:48 +0000708AC_ARG_WITH(sax1,
709[ --with-sax1 add the older SAX1 interface (on)])
710if test "$with_minimum" = "yes" -a "$with_sax1" = ""
711then
712 with_sax1=no
713fi
714if test "$with_sax1" = "no" ; then
715 echo Disabling the older SAX1 interface
716 WITH_SAX1=0
717 TEST_SAX=
718else
719 WITH_SAX1=1
720 TEST_SAX=SAXtests
721fi
722AC_SUBST(WITH_SAX1)
723AC_SUBST(TEST_SAX)
724
Daniel Veillard73b013f2003-09-30 12:36:01 +0000725AC_ARG_WITH(push,
726[ --with-push add the PUSH parser interfaces (on)])
727if test "$with_minimum" = "yes" -a "$with_push" = ""
728then
729 with_push=no
730fi
731if test "$with_push" = "no" ; then
732 echo Disabling the PUSH parser interfaces
733 WITH_PUSH=0
734 TEST_PUSH=
735else
736 WITH_PUSH=1
737 TEST_PUSH="XMLPushtests"
738fi
739AC_SUBST(WITH_PUSH)
740AC_SUBST(TEST_PUSH)
741
742AC_ARG_WITH(html,
743[ --with-html add the HTML support (on)])
744if test "$with_minimum" = "yes" -a "$with_html" = ""
745then
746 with_html=no
747fi
748if test "$with_html" = "no" ; then
749 echo Disabling HTML support
750 WITH_HTML=0
751 HTML_OBJ=
752 TEST_HTML=
753else
754 WITH_HTML=1
755 HTML_OBJ="HTMLparser.o HTMLtree.o"
756 TEST_HTML=HTMLtests
William M. Brack871611b2003-10-18 04:53:14 +0000757 if test "$with_push" != "no" ; then
Daniel Veillard73b013f2003-09-30 12:36:01 +0000758 TEST_PHTML=HTMLPushtests
759 else
760 TEST_PHTML=
761 fi
762fi
763AC_SUBST(WITH_HTML)
764AC_SUBST(HTML_OBJ)
765AC_SUBST(TEST_HTML)
766AC_SUBST(TEST_PHTML)
767
Daniel Veillard4432df22003-09-28 18:58:27 +0000768AC_ARG_WITH(valid,
769[ --with-valid add the DTD validation support (on)])
770if test "$with_minimum" = "yes" -a "$with_valid" = ""
771then
772 with_valid=no
773fi
Daniel Veillard73b013f2003-09-30 12:36:01 +0000774if test "$with_valid" = "no" ; then
Daniel Veillard4432df22003-09-28 18:58:27 +0000775 echo Disabling DTD validation support
776 WITH_VALID=0
777 TEST_VALID=
778 TEST_VTIME=
779else
780 WITH_VALID=1
781 TEST_VALID=Validtests
782 TEST_VTIME=VTimingtests
783fi
784AC_SUBST(WITH_VALID)
785AC_SUBST(TEST_VALID)
786AC_SUBST(TEST_VTIME)
Daniel Veillard361d8452000-04-03 19:48:13 +0000787
William M. Brack97ad4c72003-05-13 08:08:36 +0000788AC_ARG_WITH(catalog,
789[ --with-catalog add the Catalog support (on)])
Daniel Veillard4432df22003-09-28 18:58:27 +0000790if test "$with_minimum" = "yes" -a "$with_catalog" = ""
791then
792 with_catalog=no
793fi
Daniel Veillarda7374592001-05-10 14:17:55 +0000794if test "$with_catalog" = "no" ; then
795 echo Disabling Catalog support
796 WITH_CATALOG=0
797 CATALOG_OBJ=
Daniel Veillard4432df22003-09-28 18:58:27 +0000798 TEST_CATALOG=
Daniel Veillarda7374592001-05-10 14:17:55 +0000799else
800 WITH_CATALOG=1
801 CATALOG_OBJ="catalog.o"
Daniel Veillard4432df22003-09-28 18:58:27 +0000802 TEST_CATALOG=Catatests
Daniel Veillarda7374592001-05-10 14:17:55 +0000803fi
804AC_SUBST(WITH_CATALOG)
805AC_SUBST(CATALOG_OBJ)
Daniel Veillard4432df22003-09-28 18:58:27 +0000806AC_SUBST(TEST_CATALOG)
Daniel Veillarda7374592001-05-10 14:17:55 +0000807
William M. Brack97ad4c72003-05-13 08:08:36 +0000808AC_ARG_WITH(docbook,
809[ --with-docbook add Docbook SGML support (on)])
Daniel Veillard4432df22003-09-28 18:58:27 +0000810if test "$with_minimum" = "yes" -a "$with_docbook" = ""
811then
812 with_docbook=no
813fi
Daniel Veillardb59076b2001-04-29 17:04:07 +0000814if test "$with_docbook" = "no" ; then
815 echo Disabling Docbook support
Daniel Veillardeae522a2001-04-23 13:41:34 +0000816 WITH_DOCB=0
817 DOCB_OBJ=
Daniel Veillardb59076b2001-04-29 17:04:07 +0000818else
819 WITH_DOCB=1
820 DOCB_OBJ="DOCBparser.o"
Daniel Veillardeae522a2001-04-23 13:41:34 +0000821fi
822AC_SUBST(WITH_DOCB)
823AC_SUBST(DOCB_OBJ)
824
825
William M. Brack97ad4c72003-05-13 08:08:36 +0000826AC_ARG_WITH(xpath,
827[ --with-xpath add the XPATH support (on)])
Daniel Veillard4432df22003-09-28 18:58:27 +0000828if test "$with_minimum" = "yes" -a "$with_xpath" = ""
829then
830 with_xpath=no
831fi
Daniel Veillard361d8452000-04-03 19:48:13 +0000832if test "$with_xpath" = "no" ; then
833 echo Disabling XPATH support
Daniel Veillard52afe802000-10-22 16:56:02 +0000834 with_xptr="no"
Daniel Veillard34de97f2002-04-30 14:29:22 +0000835 with_c14n="no"
Daniel Veillard070803b2002-05-03 07:29:38 +0000836 with_xinclude="no"
Daniel Veillard361d8452000-04-03 19:48:13 +0000837 WITH_XPATH=0
838 XPATH_OBJ=
Daniel Veillard4432df22003-09-28 18:58:27 +0000839 TEST_XPATH=
Daniel Veillard361d8452000-04-03 19:48:13 +0000840else
841 WITH_XPATH=1
842 XPATH_OBJ=xpath.o
Daniel Veillard4432df22003-09-28 18:58:27 +0000843 TEST_XPATH=XPathtests
Daniel Veillard361d8452000-04-03 19:48:13 +0000844fi
845AC_SUBST(WITH_XPATH)
846AC_SUBST(XPATH_OBJ)
Daniel Veillard4432df22003-09-28 18:58:27 +0000847AC_SUBST(TEST_XPATH)
Daniel Veillard361d8452000-04-03 19:48:13 +0000848
William M. Brack97ad4c72003-05-13 08:08:36 +0000849AC_ARG_WITH(xptr,
850[ --with-xptr add the XPointer support (on)])
Daniel Veillard4432df22003-09-28 18:58:27 +0000851if test "$with_minimum" = "yes" -a "$with_xptr" = ""
852then
853 with_xptr=no
854fi
Daniel Veillardc8df0aa2000-10-10 23:50:30 +0000855if test "$with_xptr" = "no" ; then
856 echo Disabling XPointer support
857 WITH_XPTR=0
858 XPTR_OBJ=
Daniel Veillard4432df22003-09-28 18:58:27 +0000859 TEST_XPTR=
Daniel Veillardc8df0aa2000-10-10 23:50:30 +0000860else
861 WITH_XPTR=1
862 XPTR_OBJ=xpointer.o
Daniel Veillard4432df22003-09-28 18:58:27 +0000863 TEST_XPTR=XPtrtests
Daniel Veillardc8df0aa2000-10-10 23:50:30 +0000864fi
865AC_SUBST(WITH_XPTR)
866AC_SUBST(XPTR_OBJ)
Daniel Veillard4432df22003-09-28 18:58:27 +0000867AC_SUBST(TEST_XPTR)
Daniel Veillardc8df0aa2000-10-10 23:50:30 +0000868
William M. Brack97ad4c72003-05-13 08:08:36 +0000869AC_ARG_WITH(c14n,
870[ --with-c14n add the Canonicalization support (on)])
Daniel Veillard4432df22003-09-28 18:58:27 +0000871if test "$with_minimum" = "yes" -a "$with_c14n" = ""
872then
873 with_c14n=no
874fi
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000875if test "$with_c14n" = "no" ; then
876 echo Disabling C14N support
877 WITH_C14N=0
878 C14N_OBJ=
Daniel Veillard4432df22003-09-28 18:58:27 +0000879 TEST_C14N=
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000880else
881 WITH_C14N=1
882 C14N_OBJ="c14n.c"
Daniel Veillard4432df22003-09-28 18:58:27 +0000883 TEST_C14N=C14Ntests
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000884fi
885AC_SUBST(WITH_C14N)
886AC_SUBST(C14N_OBJ)
Daniel Veillard4432df22003-09-28 18:58:27 +0000887AC_SUBST(TEST_C14N)
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000888
William M. Brack97ad4c72003-05-13 08:08:36 +0000889AC_ARG_WITH(xinclude,
890[ --with-xinclude add the XInclude support (on)])
Daniel Veillard4432df22003-09-28 18:58:27 +0000891if test "$with_minimum" = "yes" -a "$with_xinclude" = ""
892then
893 with_xinclude=no
894fi
Daniel Veillard9e8bfae2000-11-06 16:43:11 +0000895if test "$with_xinclude" = "no" ; then
896 echo Disabling XInclude support
897 WITH_XINCLUDE=0
898 XINCLUDE_OBJ=
899 with_xinclude="no"
Daniel Veillard4432df22003-09-28 18:58:27 +0000900 TEST_XINCLUDE=
Daniel Veillard9e8bfae2000-11-06 16:43:11 +0000901else
902 WITH_XINCLUDE=1
903 XINCLUDE_OBJ=xinclude.o
Daniel Veillard4432df22003-09-28 18:58:27 +0000904 TEST_XINCLUDE=XIncludetests
Daniel Veillard9e8bfae2000-11-06 16:43:11 +0000905fi
906AC_SUBST(WITH_XINCLUDE)
907AC_SUBST(XINCLUDE_OBJ)
Daniel Veillard4432df22003-09-28 18:58:27 +0000908AC_SUBST(TEST_XINCLUDE)
Daniel Veillard9e8bfae2000-11-06 16:43:11 +0000909
Daniel Veillard6e90d192001-07-03 16:37:49 +0000910WITH_ICONV=0
William M. Brack97ad4c72003-05-13 08:08:36 +0000911AC_ARG_WITH(iconv,
912[ --with-iconv[[=DIR]] add ICONV support (on)])
Daniel Veillard4432df22003-09-28 18:58:27 +0000913if test "$with_minimum" = "yes" -a "$with_iconv" = ""
914then
915 with_iconv=no
916fi
Daniel Veillard496a1cf2000-05-03 14:20:55 +0000917if test "$with_iconv" = "no" ; then
918 echo Disabling ICONV support
Daniel Veillardd574f782001-03-14 19:40:17 +0000919else
Daniel Veillard220346d2001-12-07 11:33:54 +0000920 if test "$with_iconv" != "yes" -a "$with_iconv" != "" ; then
Daniel Veillard6e90d192001-07-03 16:37:49 +0000921 CPPFLAGS="${CPPFLAGS} -I$with_iconv/include"
Daniel Veillardf5b44e42001-09-17 17:19:54 +0000922 # Export this since our headers include iconv.h
923 XML_INCLUDEDIR="${XML_INCLUDEDIR} -I$with_iconv/include"
Daniel Veillard6e90d192001-07-03 16:37:49 +0000924 ICONV_LIBS="-L$with_iconv/lib"
Daniel Veillard496a1cf2000-05-03 14:20:55 +0000925 fi
Daniel Veillard6e90d192001-07-03 16:37:49 +0000926
927 AC_CHECK_HEADER(iconv.h,
928 AC_MSG_CHECKING(for iconv)
929 AC_TRY_LINK([#include <stdlib.h>
930#include <iconv.h>],[
931iconv_t cd = iconv_open ("","");
932iconv (cd, NULL, NULL, NULL, NULL);],[
933 AC_MSG_RESULT(yes)
934 WITH_ICONV=1],[
935 AC_MSG_RESULT(no)
936 AC_MSG_CHECKING(for iconv in -liconv)
937
938 _ldflags="${LDFLAGS}"
939 _libs="${LIBS}"
940 LDFLAGS="${LDFLAGS} ${ICONV_LIBS}"
941 LIBS="${LIBS} -liconv"
942
943 AC_TRY_LINK([#include <stdlib.h>
944#include <iconv.h>],[
945iconv_t cd = iconv_open ("","");
946iconv (cd, NULL, NULL, NULL, NULL);],[
947 AC_MSG_RESULT(yes)
948 WITH_ICONV=1
949 ICONV_LIBS="${ICONV_LIBS} -liconv"
950 LIBS="${_libs}"
951 LDFLAGS="${_ldflags}"],[
952 AC_MSG_RESULT(no)
953 LIBS="${_libs}"
954 LDFLAGS="${_ldflags}"])]))
955fi
Daniel Veillard6984e6d2003-12-09 14:20:17 +0000956case "$host" in
957 *mingw*) M_LIBS=""
958 ;;
959 *) M_LIBS="-lm"
960 ;;
961esac
Daniel Veillardb82c1662001-12-09 14:00:54 +0000962XML_LIBS="-lxml2 $Z_LIBS $THREAD_LIBS $ICONV_LIBS $M_LIBS $LIBS"
Daniel Veillard90d165b2003-09-01 20:33:13 +0000963XML_LIBTOOLLIBS="libxml2.la"
Daniel Veillard496a1cf2000-05-03 14:20:55 +0000964AC_SUBST(WITH_ICONV)
965
Daniel Veillard01fc1a92003-07-30 15:12:01 +0000966WITH_ISO8859X=1
967AC_ARG_WITH(iso8859x,
968[ --with-iso8859x add ISO8859X support if no iconv (on)])
Daniel Veillard4432df22003-09-28 18:58:27 +0000969if test "$with_minimum" = "yes" -a "$with_iso8859x" = ""
970then
971 with_iso8859x=no
972fi
Daniel Veillard01fc1a92003-07-30 15:12:01 +0000973if test "$WITH_ICONV" != "1" ; then
974if test "$with_iso8859x" = "no" ; then
975 echo Disabling ISO8859X support
976 WITH_ISO8859X=0
977fi
978fi
979AC_SUBST(WITH_ISO8859X)
980
William M. Brack97ad4c72003-05-13 08:08:36 +0000981AC_ARG_WITH(schemas,
Daniel Veillard73b013f2003-09-30 12:36:01 +0000982[ --with-schemas add Relax-NG and experimental Schemas support (on)])
Daniel Veillard4432df22003-09-28 18:58:27 +0000983if test "$with_minimum" = "yes" -a "$with_schemas" = ""
984then
985 with_schemas=no
986fi
Daniel Veillardef4d3bc2003-02-07 12:38:22 +0000987if test "$with_schemas" = "no" ; then
988 echo "Disabled Schemas/Relax-NG support"
989 WITH_SCHEMAS=0
990 TEST_SCHEMAS=
991else
Daniel Veillard71531f32003-02-05 13:19:53 +0000992 echo "Enabled Schemas/Relax-NG support"
Daniel Veillard4255d502002-04-16 15:50:10 +0000993 WITH_SCHEMAS=1
Daniel Veillard6eadf632003-01-23 18:29:16 +0000994 TEST_SCHEMAS="Schemastests Relaxtests"
Daniel Veillard6dc91962004-03-22 19:10:02 +0000995 if test "$PYTHON_INCLUDES" != "" ; then
996 PYTHON_TESTS="$PYTHON_TESTS RelaxNGPythonTests SchemasPythonTests"
997 fi
Daniel Veillard23e73572002-09-19 19:56:43 +0000998 with_regexps=yes
Daniel Veillard4255d502002-04-16 15:50:10 +0000999fi
1000AC_SUBST(WITH_SCHEMAS)
1001AC_SUBST(TEST_SCHEMAS)
1002
William M. Brack97ad4c72003-05-13 08:08:36 +00001003AC_ARG_WITH(regexps,
1004[ --with-regexps add Regular Expressions support (on)])
Daniel Veillard4432df22003-09-28 18:58:27 +00001005if test "$with_minimum" = "yes" -a "$with_regexps" = ""
1006then
1007 with_regexps=no
1008fi
Daniel Veillard23e73572002-09-19 19:56:43 +00001009if test "$with_regexps" = "no" ; then
1010 echo Disabling Regexps support
1011 WITH_REGEXPS=0
1012 TEST_REGEXPS=
1013else
1014 WITH_REGEXPS=1
1015 TEST_REGEXPS="Regexptests Automatatests"
1016fi
1017AC_SUBST(WITH_REGEXPS)
1018AC_SUBST(TEST_REGEXPS)
1019
William M. Brack97ad4c72003-05-13 08:08:36 +00001020AC_ARG_WITH(debug,
1021[ --with-debug add the debugging module (on)])
Daniel Veillard4432df22003-09-28 18:58:27 +00001022if test "$with_minimum" = "yes" -a "$with_debug" = ""
1023then
1024 with_debug=no
1025fi
Daniel Veillard361d8452000-04-03 19:48:13 +00001026if test "$with_debug" = "no" ; then
1027 echo Disabling DEBUG support
1028 WITH_DEBUG=0
1029 DEBUG_OBJ=
Daniel Veillard4432df22003-09-28 18:58:27 +00001030 TEST_DEBUG=
Daniel Veillard361d8452000-04-03 19:48:13 +00001031else
1032 WITH_DEBUG=1
1033 DEBUG_OBJ=debugXML.o
Daniel Veillard4432df22003-09-28 18:58:27 +00001034 TEST_DEBUG=Scripttests
Daniel Veillard361d8452000-04-03 19:48:13 +00001035fi
1036AC_SUBST(WITH_DEBUG)
1037AC_SUBST(DEBUG_OBJ)
Daniel Veillard4432df22003-09-28 18:58:27 +00001038AC_SUBST(TEST_DEBUG)
Daniel Veillard361d8452000-04-03 19:48:13 +00001039
William M. Brack97ad4c72003-05-13 08:08:36 +00001040AC_ARG_WITH(mem_debug,
1041[ --with-mem-debug add the memory debugging module (off)])
Daniel Veillard4432df22003-09-28 18:58:27 +00001042if test "$with_minimum" = "yes" -a "$with_mem_debug" = ""
1043then
1044 with_mem_debug=no
1045fi
Daniel Veillard361d8452000-04-03 19:48:13 +00001046if test "$with_mem_debug" = "yes" ; then
William M. Brack306e33c2004-06-12 01:01:22 +00001047 if test "$with_thread_alloc" = "yes" ; then
1048 echo Disabling memory debug - cannot use mem-debug with thread-alloc!
1049 WITH_MEM_DEBUG=0
1050 else
1051 echo Enabling memory debug support
1052 WITH_MEM_DEBUG=1
1053 fi
Daniel Veillard361d8452000-04-03 19:48:13 +00001054else
1055 WITH_MEM_DEBUG=0
1056fi
1057AC_SUBST(WITH_MEM_DEBUG)
1058
Daniel Veillard22cdb842004-10-04 14:09:17 +00001059AC_ARG_WITH(run_debug,
1060[ --with-run-debug add the runtime debugging module (off)])
1061if test "$with_minimum" = "yes" -a "$with_run_debug" = ""
1062then
1063 with_run_debug=no
1064fi
1065if test "$with_run_debug" = "yes" ; then
1066 echo Enabling runtime debug support
1067 WITH_RUN_DEBUG=1
1068else
1069 WITH_RUN_DEBUG=0
1070fi
1071AC_SUBST(WITH_RUN_DEBUG)
Daniel Veillard1638a472003-08-14 01:23:25 +00001072
1073WIN32_EXTRA_LIBADD=
1074WIN32_EXTRA_LDFLAGS=
1075case "$host" in
1076 *-*-mingw*)
Daniel Veillard6984e6d2003-12-09 14:20:17 +00001077 CPPFLAGS="$CPPFLAGS -DWIN32"
1078 WIN32_EXTRA_LIBADD="-lws2_32"
Daniel Veillard1638a472003-08-14 01:23:25 +00001079 WIN32_EXTRA_LDFLAGS="-no-undefined"
1080 AC_DEFINE([_WINSOCKAPI_],1,[Using the Win32 Socket implementation])
1081 AC_DEFINE([snprintf],[_snprintf],[Win32 Std C name mangling work-around])
1082 AC_DEFINE([vsnprintf],[_vsnprintf],[Win32 Std C name mangling work-around])
1083 ;;
Daniel Veillardd392ba72004-08-04 14:56:45 +00001084 *-*-cygwin*)
1085 CYGWIN_EXTRA_LDFLAGS="-no-undefined"
1086 CYGWIN_EXTRA_PYTHON_LIBADD="-L/usr/lib/python2.3/config -lpython2.3"
1087 ;;
Daniel Veillard1638a472003-08-14 01:23:25 +00001088esac
1089AC_SUBST(WIN32_EXTRA_LIBADD)
1090AC_SUBST(WIN32_EXTRA_LDFLAGS)
Daniel Veillardd392ba72004-08-04 14:56:45 +00001091AC_SUBST(CYGWIN_EXTRA_LDFLAGS)
1092AC_SUBST(CYGWIN_EXTRA_PYTHON_LIBADD)
Daniel Veillard1638a472003-08-14 01:23:25 +00001093
Daniel Veillard6984e6d2003-12-09 14:20:17 +00001094AC_SUBST(CPPFLAGS)
Daniel Veillardd7e200c1999-11-15 17:53:11 +00001095AC_SUBST(CFLAGS)
Daniel Veillardf5c2c871999-12-01 09:51:45 +00001096AC_SUBST(XML_CFLAGS)
Daniel Veillardd7e200c1999-11-15 17:53:11 +00001097
Daniel Veillardb05deb71999-08-10 19:04:08 +00001098AC_SUBST(XML_LIBDIR)
1099AC_SUBST(XML_LIBS)
Daniel Veillard90d165b2003-09-01 20:33:13 +00001100AC_SUBST(XML_LIBTOOLLIBS)
Daniel Veillard81418e32001-05-22 15:08:55 +00001101AC_SUBST(ICONV_LIBS)
Daniel Veillardb05deb71999-08-10 19:04:08 +00001102AC_SUBST(XML_INCLUDEDIR)
1103AC_SUBST(HTML_DIR)
1104AC_SUBST(HAVE_ISNAN)
1105AC_SUBST(HAVE_ISINF)
Daniel Veillardf1d0e6b2002-01-31 23:42:44 +00001106AC_SUBST(PYTHON)
1107AC_SUBST(PYTHON_VERSION)
1108AC_SUBST(PYTHON_INCLUDES)
Daniel Veillard253aa2c2002-02-02 09:17:16 +00001109AC_SUBST(PYTHON_SITE_PACKAGES)
Daniel Veillardb05deb71999-08-10 19:04:08 +00001110
Daniel Veillardb05deb71999-08-10 19:04:08 +00001111AC_SUBST(M_LIBS)
Daniel Veillard437b87b2000-01-03 17:30:46 +00001112AC_SUBST(RDL_LIBS)
Daniel Veillard361d8452000-04-03 19:48:13 +00001113
Daniel Veillard9715c172002-11-25 16:33:40 +00001114dnl for the spec file
1115RELDATE=`date +'%a %b %e %Y'`
1116AC_SUBST(RELDATE)
Daniel Veillard6dc91962004-03-22 19:10:02 +00001117AC_SUBST(PYTHON_TESTS)
Daniel Veillard9715c172002-11-25 16:33:40 +00001118
Daniel Veillardc6e997c2003-01-27 12:35:42 +00001119rm -f COPYING.LIB COPYING
Daniel Veillardc575b992002-02-08 13:28:40 +00001120ln -s Copyright COPYING
1121
Daniel Veillarde4177a52004-01-08 16:43:57 +00001122# keep on one line for cygwin c.f. #130896
Daniel Veillardb1da40c2004-09-06 11:57:44 +00001123AC_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 +00001124
Daniel Veillard06d25242004-02-25 13:01:42 +00001125chmod +x xml2-config python/setup.py