blob: 2bff06bd9a699f55c4597f7484172a7871263a61 [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 Veillard67952602006-01-05 15:29:44 +00008LIBXML_MICRO_VERSION=23
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 Veillard4432df22003-09-28 18:58:27 +000053dnl
William M. Brack21e4ef22005-01-02 09:53:13 +000054dnl We process the AC_ARG_WITH first so that later we can modify
55dnl some of them to try to prevent impossible combinations. This
56dnl also allows up so alphabetize the choices
Daniel Veillard4432df22003-09-28 18:58:27 +000057dnl
Daniel Veillard4432df22003-09-28 18:58:27 +000058
William M. Brack21e4ef22005-01-02 09:53:13 +000059dnl
60dnl zlib option might change flags, so we save them initially
61dnl
Owen Taylor3473f882001-02-23 17:55:21 +000062_cppflags="${CPPFLAGS}"
63_ldflags="${LDFLAGS}"
Daniel Veillard71b656e2000-01-05 14:46:17 +000064
William M. Brack21e4ef22005-01-02 09:53:13 +000065AC_ARG_WITH(c14n,
66[ --with-c14n add the Canonicalization support (on)])
67AC_ARG_WITH(catalog,
68[ --with-catalog add the Catalog support (on)])
69AC_ARG_WITH(debug,
70[ --with-debug add the debugging module (on)])
71AC_ARG_WITH(docbook,
72[ --with-docbook add Docbook SGML support (on)])
73AC_ARG_WITH(fexceptions,
74[ --with-fexceptions add GCC flag -fexceptions for C++ exceptions (off)])
75AC_ARG_WITH(ftp,
76[ --with-ftp add the FTP support (on)])
77AC_ARG_WITH(history,
78[ --with-history add history support to xmllint shell(off)])
79AC_ARG_WITH(html,
80[ --with-html add the HTML support (on)])
81dnl Specific dir for HTML output ?
82AC_ARG_WITH(html-dir, AC_HELP_STRING([--with-html-dir=path],
83 [path to base html directory, default $datadir/doc/html]),
84 [HTML_DIR=$withval], [HTML_DIR='$(datadir)/doc'])
Daniel Veillard259ff742001-10-06 13:49:59 +000085
William M. Brack21e4ef22005-01-02 09:53:13 +000086AC_ARG_WITH(html-subdir, AC_HELP_STRING([--with-html-subdir=path],
87 [directory used under html-dir, default $PACKAGE-$VERSION/html]),
88 [test "x$withval" != "x" && HTML_DIR="$HTML_DIR/$withval"],
89 [HTML_DIR="$HTML_DIR/\$(PACKAGE)-\$(VERSION)/html"])
90AC_SUBST(HTML_DIR)
91AC_ARG_WITH(http,
92[ --with-http add the HTTP support (on)])
93AC_ARG_WITH(iconv,
94[ --with-iconv[[=DIR]] add ICONV support (on)])
95AC_ARG_WITH(iso8859x,
96[ --with-iso8859x add ISO8859X support if no iconv (on)])
97AC_ARG_WITH(legacy,
98[ --with-legacy add deprecated APIs for compatibility (on)])
99AC_ARG_WITH(mem_debug,
100[ --with-mem-debug add the memory debugging module (off)])
101AC_ARG_WITH(minimum,
102[ --with-minimum build a minimally sized library (off)])
103AC_ARG_WITH(output,
104[ --with-output add the serialization support (on)])
105AC_ARG_WITH(pattern,
106[ --with-pattern add the xmlPattern selection interface (on)])
107AC_ARG_WITH(push,
108[ --with-push add the PUSH parser interfaces (on)])
109AC_ARG_WITH(python,
110[ --with-python[[=DIR]] build Python bindings if found])
111AC_ARG_WITH(reader,
112[ --with-reader add the xmlReader parsing interface (on)])
113AC_ARG_WITH(readline,
114[ --with-readline=DIR use readline in DIR],[
115 if test "$withval" != "no" -a "$withval" != "yes"; then
116 RDL_DIR=$withval
117 CPPFLAGS="${CPPFLAGS} -I$withval/include"
118 LDFLAGS="${LDFLAGS} -L$withval/lib"
119 fi
120])
121AC_ARG_WITH(regexps,
122[ --with-regexps add Regular Expressions support (on)])
123AC_ARG_WITH(run_debug,
124[ --with-run-debug add the runtime debugging module (off)])
125AC_ARG_WITH(sax1,
126[ --with-sax1 add the older SAX1 interface (on)])
127AC_ARG_WITH(schemas,
Daniel Veillard39e5c892005-07-03 22:48:50 +0000128[ --with-schemas add Relax-NG and Schemas support (on)])
Daniel Veillarded6c5492005-07-23 15:00:22 +0000129AC_ARG_WITH(schematron,
130[ --with-schematron add Schematron support (on)])
William M. Brack21e4ef22005-01-02 09:53:13 +0000131AC_ARG_WITH(threads,
132[ --with-threads add multithread support(on)])
133AC_ARG_WITH(thread-alloc,
134[ --with-thread-alloc add per-thread memory(off)])
135AC_ARG_WITH(tree,
136[ --with-tree add the DOM like tree manipulation APIs (on)])
137AC_ARG_WITH(valid,
138[ --with-valid add the DTD validation support (on)])
139AC_ARG_WITH(writer,
140[ --with-writer add the xmlWriter saving interface (on)])
141AC_ARG_WITH(xinclude,
142[ --with-xinclude add the XInclude support (on)])
143AC_ARG_WITH(xpath,
144[ --with-xpath add the XPATH support (on)])
145AC_ARG_WITH(xptr,
146[ --with-xptr add the XPointer support (on)])
Daniel Veillardf6b71bd2005-01-04 17:50:14 +0000147AC_ARG_WITH(modules,
148[ --with-modules add the dynamic modules support (on)])
Owen Taylor3473f882001-02-23 17:55:21 +0000149AC_ARG_WITH(zlib,
William M. Brack97ad4c72003-05-13 08:08:36 +0000150[ --with-zlib[[=DIR]] use libz in DIR],[
Owen Taylor3473f882001-02-23 17:55:21 +0000151 if test "$withval" != "no" -a "$withval" != "yes"; then
152 Z_DIR=$withval
153 CPPFLAGS="${CPPFLAGS} -I$withval/include"
154 LDFLAGS="${LDFLAGS} -L$withval/lib"
155 fi
Daniel Veillard259ff742001-10-06 13:49:59 +0000156])
William M. Brack21e4ef22005-01-02 09:53:13 +0000157
158dnl
Daniel Veillard39e5c892005-07-03 22:48:50 +0000159dnl hard dependancies on options
160dnl
161if test "$with_schemas" = "yes"
162then
163 with_pattern=yes
164 with_regexp=yes
165fi
Daniel Veillarded6c5492005-07-23 15:00:22 +0000166if test "$with_schematron" = "yes"
167then
168 with_pattern=yes
169 with_xpath=yes
170fi
Daniel Veillard39e5c892005-07-03 22:48:50 +0000171if test "$with_reader" = "yes"
172then
173 with_push=yes
174fi
175if test "$with_xptr" = "yes"
176then
177 with_xpath=yes
178fi
179dnl
William M. Brack21e4ef22005-01-02 09:53:13 +0000180dnl option to build a minimal libxml2 library
181dnl
182if test "$with_minimum" = "yes"
Daniel Veillard4432df22003-09-28 18:58:27 +0000183then
William M. Brack21e4ef22005-01-02 09:53:13 +0000184 echo "Configuring for a minimal library"
185 if test "$with_c14n" = ""
186 then
187 with_c14n=no
188 fi
189 if test "$with_catalog" = ""
190 then
191 with_catalog=no
192 fi
193 echo So far so good!
194 if test "$with_debug" = ""
195 then
196 with_debug=no
197 fi
198 if test "$with_docbook" = ""
199 then
200 with_docbook=no
201 fi
202 if test "$with_fexceptions" = ""
203 then
204 with_fexceptions=no
205 fi
206 if test "$with_ftp" = ""
207 then
208 with_ftp=no
209 fi
210 if test "$with_history" = ""
211 then
212 with_history=no
213 fi
214 if test "$with_html" = ""
215 then
216 with_html=no
217 fi
218 if test "$with_http" = ""
219 then
220 with_http=no
221 fi
222 if test "$with_iconv" = ""
223 then
224 with_iconv=no
225 fi
226 if test "$with_iso8859x" = ""
227 then
228 with_iso8859x=no
229 fi
230 if test "$with_legacy" = ""
231 then
232 with_legacy=no
233 fi
234 if test "$with_mem_debug" = ""
235 then
236 with_mem_debug=no
237 fi
238 if test "$with_output" = ""
239 then
240 with_output=no
241 fi
242 if test "$with_pattern" = ""
243 then
244 with_pattern=no
245 fi
246 if test "$with_push" = ""
247 then
248 with_push=no
249 fi
250 if test "$with_python" = ""
251 then
252 with_python=no
253 fi
254 if test "$with_reader" = ""
255 then
256 with_reader=no
257 fi
258 if test "$with_readline" = ""
259 then
260 with_readline=no
261 fi
262 if test "$with_regexp" = ""
263 then
264 with_regexp=no
265 fi
266 if test "$with_run_debug" = ""
267 then
268 with_run_debug=no
269 fi
270 if test "$with_sax1" = ""
271 then
272 with_sax1=no
273 fi
274 if test "$with_schemas" = ""
275 then
276 with_schemas=no
277 fi
Daniel Veillarded6c5492005-07-23 15:00:22 +0000278 if test "$with_schematron" = ""
279 then
280 with_schematron=no
281 fi
William M. Brack21e4ef22005-01-02 09:53:13 +0000282 if test "$with_threads" = ""
283 then
284 with_threads=no
285 fi
286 if test "$with_thread_alloc" = ""
287 then
288 with_thread_alloc=no
289 fi
290 if test "$with_tree" = ""
291 then
292 with_tree=no
293 fi
294 if test "$with_valid" = ""
295 then
296 with_valid=no
297 fi
298 if test "$with_writer" = ""
299 then
300 with_writer=no
301 fi
302 if test "$with_xinclude" = ""
303 then
304 with_xinclude=no
305 fi
306 if test "$with_xpath" = ""
307 then
308 with_xpath=no
309 fi
310 if test "$with_xptr" = ""
311 then
312 with_xptr=no
313 fi
314 if test "$with_zlib" = ""
315 then
316 with_zlib=no
317 fi
Daniel Veillardf6b71bd2005-01-04 17:50:14 +0000318 if test "$with_modules" = ""
319 then
320 with_modules=no
321 fi
Daniel Veillard4432df22003-09-28 18:58:27 +0000322fi
William M. Brack21e4ef22005-01-02 09:53:13 +0000323
324echo Checking zlib
325
326dnl Checks for zlib library.
327
Daniel Veillard259ff742001-10-06 13:49:59 +0000328if test "$with_zlib" = "no"; then
329 echo "Disabling compression support"
330else
Daniel Veillard3fbe8e32001-10-06 13:30:33 +0000331 AC_CHECK_HEADERS(zlib.h,
332 AC_CHECK_LIB(z, gzread,[
Daniel Veillardc790bf42003-10-11 10:50:10 +0000333 AC_DEFINE([HAVE_LIBZ], [], [Have compression library])
Daniel Veillard3fbe8e32001-10-06 13:30:33 +0000334 if test "x${Z_DIR}" != "x"; then
335 Z_CFLAGS="-I${Z_DIR}/include"
336 Z_LIBS="-L${Z_DIR}/lib -lz"
337 [case ${host} in
338 *-*-solaris*)
339 Z_LIBS="-L${Z_DIR}/lib -R${Z_DIR}/lib -lz"
340 ;;
341 esac]
342 else
343 Z_LIBS="-lz"
344 fi]))
Daniel Veillard259ff742001-10-06 13:49:59 +0000345fi
Owen Taylor3473f882001-02-23 17:55:21 +0000346
Owen Taylor3473f882001-02-23 17:55:21 +0000347AC_SUBST(Z_CFLAGS)
348AC_SUBST(Z_LIBS)
349
350CPPFLAGS=${_cppflags}
351LDFLAGS=${_ldflags}
Daniel Veillardb05deb71999-08-10 19:04:08 +0000352
William M. Brack21e4ef22005-01-02 09:53:13 +0000353echo Checking headers
354
Daniel Veillard01791d51998-07-24 19:24:09 +0000355dnl Checks for header files.
356AC_HEADER_DIRENT
357AC_HEADER_STDC
Daniel Veillard817e70b2002-11-19 22:28:48 +0000358AC_CHECK_HEADERS([fcntl.h])
359AC_CHECK_HEADERS([unistd.h])
360AC_CHECK_HEADERS([ctype.h])
361AC_CHECK_HEADERS([dirent.h])
362AC_CHECK_HEADERS([errno.h])
363AC_CHECK_HEADERS([malloc.h])
364AC_CHECK_HEADERS([stdarg.h])
365AC_CHECK_HEADERS([sys/stat.h])
366AC_CHECK_HEADERS([sys/types.h])
367AC_CHECK_HEADERS([time.h])
368AC_CHECK_HEADERS([ansidecl.h])
369AC_CHECK_HEADERS([ieeefp.h])
370AC_CHECK_HEADERS([nan.h])
371AC_CHECK_HEADERS([math.h])
Daniel Veillardebe48c62003-12-03 12:12:27 +0000372AC_CHECK_HEADERS([limits.h])
Daniel Veillard817e70b2002-11-19 22:28:48 +0000373AC_CHECK_HEADERS([fp_class.h])
374AC_CHECK_HEADERS([float.h])
375AC_CHECK_HEADERS([stdlib.h])
376AC_CHECK_HEADERS([sys/socket.h], [], [],
377[#if HAVE_SYS_TYPES_H
378# include <sys/types.h>
379# endif
380])
381AC_CHECK_HEADERS([netinet/in.h], [], [],
382[#if HAVE_SYS_TYPES_H
383# include <sys/types.h>
384# endif
385])
386AC_CHECK_HEADERS([arpa/inet.h], [], [],
387[#if HAVE_SYS_TYPES_H
388# include <sys/types.h>
389# endif
390#if HAVE_ARPA_INET_H
391# include <arpa/inet.h>
392# endif
393])
394AC_CHECK_HEADERS([netdb.h])
395AC_CHECK_HEADERS([sys/time.h])
396AC_CHECK_HEADERS([sys/select.h])
397AC_CHECK_HEADERS([sys/mman.h])
398AC_CHECK_HEADERS([sys/timeb.h])
399AC_CHECK_HEADERS([signal.h])
400AC_CHECK_HEADERS([arpa/nameser.h], [], [],
401[#if HAVE_SYS_TYPES_H
402# include <sys/types.h>
403# endif
404])
405AC_CHECK_HEADERS([resolv.h], [], [],
406[#if HAVE_SYS_TYPES_H
407# include <sys/types.h>
408# endif
409#if HAVE_NETINET_IN_H
410# include <netinet/in.h>
411# endif
412#if HAVE_ARPA_NAMESER_H
413# include <arpa/nameser.h>
414# endif
415])
Daniel Veillarddcd93902005-01-13 11:25:15 +0000416AC_CHECK_HEADERS([dl.h])
417AC_CHECK_HEADERS([dlfcn.h])
Daniel Veillard01791d51998-07-24 19:24:09 +0000418
Daniel Veillardfc979062004-03-04 22:07:16 +0000419
William M. Brack21e4ef22005-01-02 09:53:13 +0000420echo Checking libraries
Daniel Veillard1164e751999-02-16 16:29:17 +0000421
Daniel Veillard01791d51998-07-24 19:24:09 +0000422dnl Checks for library functions.
423AC_FUNC_STRFTIME
Daniel Veillard92ad2102001-03-27 12:47:33 +0000424AC_CHECK_FUNCS(strdup strndup strerror)
Daniel Veillard71b656e2000-01-05 14:46:17 +0000425AC_CHECK_FUNCS(finite isnand fp_class class fpclass)
Daniel Veillard90bc3712002-03-07 15:12:58 +0000426AC_CHECK_FUNCS(strftime localtime gettimeofday ftime)
Daniel Veillard068a9652001-06-07 15:30:26 +0000427AC_CHECK_FUNCS(stat _stat signal)
Daniel Veillard7f7d1111999-09-22 09:46:25 +0000428
Daniel Veillard92ad2102001-03-27 12:47:33 +0000429dnl Checking the standard string functions availability
430AC_CHECK_FUNCS(printf sprintf fprintf snprintf vfprintf vsprintf vsnprintf sscanf,,
431 NEED_TRIO=1)
432
William M. Brackf4caa5e2005-10-20 09:04:05 +0000433dnl Checking for va_copy availability
434AC_MSG_CHECKING([for va_copy])
435AC_TRY_LINK([#include <stdarg.h>
436va_list ap1,ap2;], [va_copy(ap1,ap2);],
437have_va_copy=yes,
438have_va_copy=no)
439AC_MSG_RESULT($have_va_copy)
440if test x"$have_va_copy" = x"yes"; then
441 AC_DEFINE(HAVE_VA_COPY,1,[Whether va_copy() is available])
442else
443 AC_MSG_CHECKING([for __va_copy])
444 AC_TRY_LINK([#include <stdarg.h>
445 va_list ap1,ap2;], [__va_copy(ap1,ap2);],
446 have___va_copy=yes,
447 have___va_copy=no)
448 AC_MSG_RESULT($have___va_copy)
449 if test x"$have___va_copy" = x"yes"; then
450 AC_DEFINE(HAVE___VA_COPY,1,[Whether __va_copy() is available])
451 fi
452fi
453
Daniel Veillard7f7d1111999-09-22 09:46:25 +0000454dnl Checks for inet libraries:
Daniel Veillardd4e39ae2005-10-28 15:59:14 +0000455AC_SEARCH_LIBS(gethostent, [nsl])
456AC_SEARCH_LIBS(setsockopt, [socket net])
457AC_SEARCH_LIBS(connect, [inet])
Daniel Veillardb05deb71999-08-10 19:04:08 +0000458
Daniel Veillardb0426ca2000-10-11 23:39:43 +0000459dnl Determine what socket length (socklen_t) data type is
460AC_MSG_CHECKING([for type of socket length (socklen_t)])
461AC_TRY_COMPILE2([
462#include <stddef.h>
463#include <sys/types.h>
464#include <sys/socket.h>],[
465(void)getsockopt (1, 1, 1, NULL, (socklen_t *)NULL)],[
466 AC_MSG_RESULT(socklen_t *)
Daniel Veillardc284c642005-03-31 10:24:24 +0000467 XML_SOCKLEN_T=socklen_t],[
Daniel Veillardb0426ca2000-10-11 23:39:43 +0000468 AC_TRY_COMPILE2([
469#include <stddef.h>
470#include <sys/types.h>
471#include <sys/socket.h>],[
472(void)getsockopt (1, 1, 1, NULL, (size_t *)NULL)],[
473 AC_MSG_RESULT(size_t *)
Daniel Veillardc284c642005-03-31 10:24:24 +0000474 XML_SOCKLEN_T=size_t],[
Daniel Veillardb0426ca2000-10-11 23:39:43 +0000475 AC_TRY_COMPILE2([
476#include <stddef.h>
477#include <sys/types.h>
478#include <sys/socket.h>],[
479(void)getsockopt (1, 1, 1, NULL, (int *)NULL)],[
480 AC_MSG_RESULT(int *)
Daniel Veillardc284c642005-03-31 10:24:24 +0000481 XML_SOCKLEN_T=int],[
William M. Brack2e6b1432004-02-09 15:10:28 +0000482 AC_MSG_WARN(could not determine)
Daniel Veillardc284c642005-03-31 10:24:24 +0000483 XML_SOCKLEN_T="int"])])])
484AC_DEFINE_UNQUOTED(XML_SOCKLEN_T, $XML_SOCKLEN_T, [Determine what socket length (socklen_t) data type is])
Daniel Veillardb0426ca2000-10-11 23:39:43 +0000485
Daniel Veillardde2a67b2003-06-21 14:20:04 +0000486dnl ***********************Checking for availability of IPv6*******************
487
488AC_MSG_CHECKING([whether to enable IPv6])
William M. Brack21e4ef22005-01-02 09:53:13 +0000489AC_ARG_ENABLE(ipv6, [ --enable-ipv6[[=yes/no]] enables compilation of IPv6 code [[default=yes]]],, enable_ipv6=yes)
Daniel Veillard4432df22003-09-28 18:58:27 +0000490if test "$with_minimum" = "yes"
491then
492 enable_ipv6=no
493fi
Daniel Veillardde2a67b2003-06-21 14:20:04 +0000494if test $enable_ipv6 = yes; then
495 have_ipv6=no
496 AC_TRY_COMPILE([
497 #include <sys/socket.h>
498 #include <sys/types.h>], [
499 struct sockaddr_storage ss;
500 socket(AF_INET6, SOCK_STREAM, 0)
501 ],
502 have_ipv6=yes,
503 have_ipv6=no
504 )
505 AC_MSG_RESULT($have_ipv6)
506
William M. Brack476cd962003-08-13 11:09:42 +0000507 if test $have_ipv6 = yes; then
Daniel Veillardc790bf42003-10-11 10:50:10 +0000508 AC_DEFINE([SUPPORT_IP6], [], [Support for IPv6])
Dodji Seketeli8eba3f32004-11-09 18:30:30 +0000509 have_broken_ss_family=no
510
511 dnl *********************************************************************
512 dnl on some platforms (like AIX 5L), the structure sockaddr doesn't have
513 dnl a ss_family member, but rather __ss_family. Let's detect that
William M. Brack7d8b36b2005-06-25 07:30:50 +0000514 dnl and define the HAVE_BROKEN_SS_FAMILY when we are on one of these
515 dnl platforms. However, we should only do this if ss_family is not
516 dnl present.
Dodji Seketeli8eba3f32004-11-09 18:30:30 +0000517 dnl ********************************************************************
William M. Brack7d8b36b2005-06-25 07:30:50 +0000518 AC_MSG_CHECKING([struct sockaddr::ss_family])
Dodji Seketeli8eba3f32004-11-09 18:30:30 +0000519 AC_TRY_COMPILE([
520 #include <sys/socket.h>
521 #include <sys/types.h>], [
522 struct sockaddr_storage ss ;
William M. Brack7d8b36b2005-06-25 07:30:50 +0000523 ss.ss_family = 0 ;
Dodji Seketeli8eba3f32004-11-09 18:30:30 +0000524 ],
William M. Brack7d8b36b2005-06-25 07:30:50 +0000525 have_ss_family=yes,
526 have_ss_family=no
Dodji Seketeli8eba3f32004-11-09 18:30:30 +0000527 )
William M. Brack7d8b36b2005-06-25 07:30:50 +0000528 AC_MSG_RESULT($have_ss_family)
529 if test x$have_ss_family = xno ; then
530 AC_MSG_CHECKING([broken struct sockaddr::ss_family])
531 AC_TRY_COMPILE([
532 #include <sys/socket.h>
533 #include <sys/types.h>], [
534 struct sockaddr_storage ss ;
535 ss.__ss_family = 0 ;
536 ],
537 have_broken_ss_family=yes,
538 have_broken_ss_family=no
539 )
540 AC_MSG_RESULT($have_broken_ss_family)
541 if test x$have_broken_ss_family = xyes ; then
542 AC_DEFINE(HAVE_BROKEN_SS_FAMILY, [],
543 [Whether struct sockaddr::__ss_family exists])
544 AC_DEFINE(ss_family, __ss_family,
545 [ss_family is not defined here, use __ss_family instead])
546 else
547 AC_MSG_WARN(ss_family and __ss_family not found)
548 fi
Dodji Seketeli8eba3f32004-11-09 18:30:30 +0000549 fi
Daniel Veillardde2a67b2003-06-21 14:20:04 +0000550
551 have_getaddrinfo=no
552 AC_CHECK_FUNC(getaddrinfo, have_getaddrinfo=yes)
553 if test $have_getaddrinfo != yes; then
554 for lib in bsd socket inet; do
555 AC_CHECK_LIB($lib, getaddrinfo, [LIBS="$LIBS -l$lib";have_getaddrinfo=yes;break])
556 done
557 fi
558
William M. Brack476cd962003-08-13 11:09:42 +0000559 if test $have_getaddrinfo = yes; then
Daniel Veillardc790bf42003-10-11 10:50:10 +0000560 AC_DEFINE([HAVE_GETADDRINFO], [], [Define if getaddrinfo is there])
Daniel Veillardde2a67b2003-06-21 14:20:04 +0000561 fi
562 fi
563fi
564
565dnl ******************************End IPv6 checks******************************
566
Daniel Veillardb05deb71999-08-10 19:04:08 +0000567dnl Checks for isnan in libm if not in libc
Daniel Veillard6984e6d2003-12-09 14:20:17 +0000568AC_CHECK_FUNC(isnan, AC_DEFINE([HAVE_ISNAN],[], [Define if isnan is there]) , AC_CHECK_LIB(m, isnan,
Daniel Veillardc790bf42003-10-11 10:50:10 +0000569 [AC_DEFINE([HAVE_ISNAN],[], [Define if isnan is there])]))
Daniel Veillardb05deb71999-08-10 19:04:08 +0000570
Daniel Veillardc790bf42003-10-11 10:50:10 +0000571AC_CHECK_FUNC(isinf, AC_DEFINE([HAVE_ISINF], [], [Define if isinf is there]) , AC_CHECK_LIB(m, isinf,
572 [AC_DEFINE([HAVE_ISINF], [], [Define if isinf is there])]))
Daniel Veillardb05deb71999-08-10 19:04:08 +0000573
574XML_LIBDIR='-L${libdir}'
Daniel Veillarde7dd2b82002-03-15 18:44:02 +0000575XML_INCLUDEDIR='-I${includedir}/libxml2'
Daniel Veillardb05deb71999-08-10 19:04:08 +0000576
Daniel Veillardd7e200c1999-11-15 17:53:11 +0000577dnl
Daniel Veillardf5c2c871999-12-01 09:51:45 +0000578dnl Extra flags
579dnl
580XML_CFLAGS=""
Daniel Veillard357c9602001-05-03 10:49:20 +0000581RDL_LIBS=""
Daniel Veillardf5c2c871999-12-01 09:51:45 +0000582
583dnl
Daniel Veillardb45c43b2001-04-28 17:02:11 +0000584dnl Workaround for native compilers
585dnl HP : http://bugs.gnome.org/db/31/3163.html
586dnl DEC : Enable NaN/Inf
Daniel Veillardd7e200c1999-11-15 17:53:11 +0000587dnl
Daniel Veillard03109292000-08-14 14:58:22 +0000588if test "${GCC}" != "yes" ; then
Daniel Veillardd7e200c1999-11-15 17:53:11 +0000589 case "${host}" in
Daniel Veillard6a0baa02005-12-10 11:11:12 +0000590 hppa*-*-hpux* )
Daniel Veillard03109292000-08-14 14:58:22 +0000591 CFLAGS="${CFLAGS} -Wp,-H30000"
Daniel Veillardd7e200c1999-11-15 17:53:11 +0000592 ;;
Daniel Veillardb45c43b2001-04-28 17:02:11 +0000593 *-dec-osf* )
594 CFLAGS="${CFLAGS} -ieee"
595 ;;
William M. Brack476cd962003-08-13 11:09:42 +0000596 alpha*-*-linux* )
597 CFLAGS="${CFLAGS} -ieee"
598 ;;
Daniel Veillardd7e200c1999-11-15 17:53:11 +0000599 esac
Daniel Veillardd574f782001-03-14 19:40:17 +0000600else
Daniel Veillardd94849b2003-07-28 13:02:24 +0000601 if test "$with_fexceptions" = "yes"
602 then
603 #
604 # Not activated by default because this inflates the code size
605 # Used to allow propagation of C++ exceptions through the library
606 #
607 CFLAGS="${CFLAGS} -fexceptions"
608 fi
609
Daniel Veillard05f97352004-10-31 15:35:32 +0000610 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 +0000611 case "${host}" in
612 alpha*-*-linux* )
613 CFLAGS="${CFLAGS} -mieee"
614 ;;
Daniel Veillardcb5b4d62002-04-11 08:24:26 +0000615 alpha*-*-osf* )
616 CFLAGS="${CFLAGS} -mieee"
617 ;;
Daniel Veillard14839d52001-06-06 16:11:56 +0000618 esac
Daniel Veillardd7e200c1999-11-15 17:53:11 +0000619fi
Daniel Veillardb0426ca2000-10-11 23:39:43 +0000620case ${host} in
621 *-*-solaris*)
Daniel Veillardd2ade932000-09-30 14:39:55 +0000622 XML_LIBDIR="${XML_LIBDIR} -R${libdir}"
623 ;;
Daniel Veillardd30be4a2002-03-28 18:25:31 +0000624 hppa*-hp-mpeix)
625 NEED_TRIO=1
626 ;;
Daniel Veillard4188ddf2006-01-19 08:58:42 +0000627 *-*-mingw* | *-*-cygwin* | *-*-msvc* )
628 # If the host is Windows, and shared libraries are disabled, we
629 # need to add -DLIBXML_STATIC to CFLAGS in order for linking to
630 # work properly (without it, xmlexports.h would force the use of
631 # DLL imports, which obviously aren't present in a static
632 # library).
633 if test "x$enable_shared" = "xno"; then
634 XML_CFLAGS="$XML_CFLAGS -DLIBXML_STATIC"
635 CFLAGS="$CFLAGS -DLIBXML_STATIC"
636 fi
637 ;;
Daniel Veillardd2ade932000-09-30 14:39:55 +0000638esac
639
Daniel Veillardf5c2c871999-12-01 09:51:45 +0000640
Daniel Veillardf1d0e6b2002-01-31 23:42:44 +0000641dnl
642dnl check for python
643dnl
644
Daniel Veillardf1d0e6b2002-01-31 23:42:44 +0000645PYTHON_VERSION=
646PYTHON_INCLUDES=
Daniel Veillard253aa2c2002-02-02 09:17:16 +0000647PYTHON_SITE_PACKAGES=
Daniel Veillard6dc91962004-03-22 19:10:02 +0000648PYTHON_TESTS=
Daniel Veillard38b80a82003-05-14 18:59:00 +0000649pythondir=
Daniel Veillardf1d0e6b2002-01-31 23:42:44 +0000650if test "$with_python" != "no" ; then
651 if test -x "$with_python/bin/python"
652 then
653 echo Found python in $with_python/bin/python
654 PYTHON="$with_python/bin/python"
Daniel Veillard9b731d72002-04-14 12:56:08 +0000655 else
Daniel Veillarda8a89fe2002-04-12 21:03:34 +0000656 if test -x "$with_python"
657 then
Daniel Veillard4efd3be2002-11-18 09:11:13 +0000658 echo Found python in $with_python
659 PYTHON="$with_python"
Daniel Veillarda8a89fe2002-04-12 21:03:34 +0000660 else
Daniel Veillard4f69eb62005-08-24 22:19:10 +0000661 if test -x "$PYTHON"
662 then
663 echo Found python in environment PYTHON=$PYTHON
664 else
Daniel Veillardc2f70562005-09-01 12:45:26 +0000665 AC_PATH_PROG(PYTHON, python python2.6 python2.5 python2.4 python2.3 python2.2 python2.1 python2.0 python1.6 python1.5)
Daniel Veillard4f69eb62005-08-24 22:19:10 +0000666 fi
Daniel Veillarda8a89fe2002-04-12 21:03:34 +0000667 fi
Daniel Veillardf1d0e6b2002-01-31 23:42:44 +0000668 fi
669 if test "$PYTHON" != ""
670 then
671 PYTHON_VERSION=`$PYTHON -c "import sys; print sys.version[[0:3]]"`
672 echo Found Python version $PYTHON_VERSION
673 fi
674 if test "$PYTHON_VERSION" != ""
675 then
Daniel Veillard253aa2c2002-02-02 09:17:16 +0000676 if test -r $with_python/include/python$PYTHON_VERSION/Python.h -a \
677 -d $with_python/lib/python$PYTHON_VERSION/site-packages
Daniel Veillardf1d0e6b2002-01-31 23:42:44 +0000678 then
679 PYTHON_INCLUDES=$with_python/include/python$PYTHON_VERSION
Daniel Veillard253aa2c2002-02-02 09:17:16 +0000680 PYTHON_SITE_PACKAGES=$with_python/lib/python$PYTHON_VERSION/site-packages
Daniel Veillardf1d0e6b2002-01-31 23:42:44 +0000681 else
682 if test -r $prefix/include/python$PYTHON_VERSION/Python.h
683 then
Daniel Veillard253aa2c2002-02-02 09:17:16 +0000684 PYTHON_INCLUDES='$(prefix)/include/python$(PYTHON_VERSION)'
Daniel Veillarde3b7d9a2002-08-14 14:11:30 +0000685 PYTHON_SITE_PACKAGES='$(libdir)/python$(PYTHON_VERSION)/site-packages'
Daniel Veillardf1d0e6b2002-01-31 23:42:44 +0000686 else
687 if test -r /usr/include/python$PYTHON_VERSION/Python.h
688 then
689 PYTHON_INCLUDES=/usr/include/python$PYTHON_VERSION
Daniel Veillarde3b7d9a2002-08-14 14:11:30 +0000690 PYTHON_SITE_PACKAGES='$(libdir)/python$(PYTHON_VERSION)/site-packages'
Daniel Veillardf1d0e6b2002-01-31 23:42:44 +0000691 else
692 echo could not find python$PYTHON_VERSION/Python.h
693 fi
694 fi
William M. Brack5d4cba42004-01-06 15:19:12 +0000695 if test ! -d "$PYTHON_SITE_PACKAGES"
Daniel Veillardb6984ef2002-08-14 16:55:31 +0000696 then
697 PYTHON_SITE_PACKAGES=`$PYTHON -c "from distutils import sysconfig; print sysconfig.get_python_lib()"`
698 fi
Daniel Veillardf1d0e6b2002-01-31 23:42:44 +0000699 fi
700 fi
Daniel Veillard38b80a82003-05-14 18:59:00 +0000701 if test "$with_python" != ""
702 then
703 pythondir='$(PYTHON_SITE_PACKAGES)'
704 else
705 pythondir='$(libdir)/python${PYTHON_VERSION}/site-packages'
706 fi
Daniel Veillard4f69eb62005-08-24 22:19:10 +0000707else
708 PYTHON=
Daniel Veillardf1d0e6b2002-01-31 23:42:44 +0000709fi
710AM_CONDITIONAL(WITH_PYTHON, test "$PYTHON_INCLUDES" != "")
Daniel Veillard40b11342002-09-20 12:01:39 +0000711if test "$PYTHON_INCLUDES" != ""
712then
713 PYTHON_SUBDIR=python
714else
715 PYTHON_SUBDIR=
716fi
Daniel Veillard38b80a82003-05-14 18:59:00 +0000717AC_SUBST(pythondir)
Daniel Veillard40b11342002-09-20 12:01:39 +0000718AC_SUBST(PYTHON_SUBDIR)
Daniel Veillardf1d0e6b2002-01-31 23:42:44 +0000719
Daniel Veillardce1648b2005-01-04 15:10:22 +0000720dnl check for dso support
721WITH_MODULES=0
Daniel Veillardce1648b2005-01-04 15:10:22 +0000722TEST_MODULES=
723
Daniel Veillardf6b71bd2005-01-04 17:50:14 +0000724if test "$with_modules" != "no" ; then
Daniel Veillard9202b672005-07-14 09:31:14 +0000725 case "$host" in
726 *-*-cygwin*)
727 MODULE_EXTENSION=".dll"
728 AC_CHECK_LIB(cygwin, dlopen, [
729 WITH_MODULES=1
730 MODULE_PLATFORM_LIBS=
731 AC_DEFINE([HAVE_DLOPEN], [], [Have dlopen based dso])
732 ])
733 ;;
734 *)
Daniel Veillard1d96f5a2005-10-28 08:44:48 +0000735 AC_CHECK_FUNC(shl_load, libxml_have_shl_load=yes, [
736 AC_CHECK_LIB(dld, shl_load, [
737 MODULE_PLATFORM_LIBS="-ldld"
738 libxml_have_shl_load=yes], [
739 AC_CHECK_FUNC(dlopen, libxml_have_dlopen=yes, [
740 AC_CHECK_LIB(dl, dlopen, [
741 MODULE_PLATFORM_LIBS="-ldl"
742 libxml_have_dlopen=yes])])])])
743
744 if test "${libxml_have_shl_load}" = "yes"; then
745 MODULE_EXTENSION=".sl"
Daniel Veillard9202b672005-07-14 09:31:14 +0000746 WITH_MODULES=1
Daniel Veillard9202b672005-07-14 09:31:14 +0000747 AC_DEFINE([HAVE_SHLLOAD], [], [Have shl_load based dso])
Daniel Veillard1d96f5a2005-10-28 08:44:48 +0000748 fi
Daniel Veillard9202b672005-07-14 09:31:14 +0000749
Daniel Veillard1d96f5a2005-10-28 08:44:48 +0000750 if test "${libxml_have_dlopen}" = "yes"; then
751 case "${host}" in
752 *-*-hpux* )
753 MODULE_EXTENSION=".sl"
754 ;;
755 * )
756 MODULE_EXTENSION=".so"
757 ;;
758 esac
759
Daniel Veillard9202b672005-07-14 09:31:14 +0000760 WITH_MODULES=1
Daniel Veillard9202b672005-07-14 09:31:14 +0000761 AC_DEFINE([HAVE_DLOPEN], [], [Have dlopen based dso])
Daniel Veillard1d96f5a2005-10-28 08:44:48 +0000762 fi
Daniel Veillard9202b672005-07-14 09:31:14 +0000763 ;;
764 esac
Daniel Veillardf6b71bd2005-01-04 17:50:14 +0000765fi
Daniel Veillardce1648b2005-01-04 15:10:22 +0000766
767if test "${WITH_MODULES}" = "1"; then
768 TEST_MODULES="ModuleTests"
769fi
770
771AC_SUBST(WITH_MODULES)
772AC_SUBST(MODULE_PLATFORM_LIBS)
773AC_SUBST(MODULE_EXTENSION)
774AC_SUBST(TEST_MODULES)
775
Daniel Veillard437b87b2000-01-03 17:30:46 +0000776dnl
777dnl Tester makes use of readline if present
778dnl
Daniel Veillard03109292000-08-14 14:58:22 +0000779
Daniel Veillard361d8452000-04-03 19:48:13 +0000780dnl
William M. Brack21e4ef22005-01-02 09:53:13 +0000781dnl specific tests to setup DV and Bill's devel environments with debug etc ...
Daniel Veillard81418e32001-05-22 15:08:55 +0000782dnl (-Wunreachable-code)
Daniel Veillardf6eea272001-01-18 12:17:12 +0000783dnl
William M. Brack871611b2003-10-18 04:53:14 +0000784if [[ "${LOGNAME}" = "veillard" -a "`pwd`" = "/u/veillard/XML" ]] || \
Daniel Veillardb7c6ac42004-06-29 22:01:27 +0000785 [[ "${LOGNAME}" = "veillard" -a "`pwd`" = "/home/veillard/libxml2" ]] || \
William M. Bracka2e844a2004-01-06 11:52:13 +0000786 [[ "${LOGNAME}" = "bill" -a "`pwd`" = "/home/bill/gnomecvs/xmltest" ]] || \
William M. Brack4119d1c2004-06-24 02:24:44 +0000787 [[ "${LOGNAME}" = "wbrack" -a "`pwd`" = "/Users/wbrack/gnomecvs/xmltest" ]]
William M. Brack871611b2003-10-18 04:53:14 +0000788 then
Daniel Veillard4432df22003-09-28 18:58:27 +0000789 if test "$with_minimum" != "yes"
790 then
791 if test "${with_mem_debug}" = "" ; then
Daniel Veillard379a3b72005-08-12 10:18:14 +0000792 echo Activating memory debugging
Daniel Veillard4432df22003-09-28 18:58:27 +0000793 with_mem_debug="yes"
Daniel Veillard22cdb842004-10-04 14:09:17 +0000794 with_run_debug="yes"
Daniel Veillard4432df22003-09-28 18:58:27 +0000795 fi
796 if test "${with_docbook}" = "" ; then
797 with_docbook="yes"
798 fi
Daniel Veillardeae522a2001-04-23 13:41:34 +0000799 fi
Daniel Veillard3854c572005-08-25 10:17:45 +0000800 if test "${GCC}" = "yes" ; then
Daniel Veillard05f97352004-10-31 15:35:32 +0000801 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 +0000802 fi
Daniel Veillard2e9b1652003-02-19 13:29:45 +0000803 STATIC_BINARIES="-static"
Daniel Veillardc86a4fa2001-03-26 16:28:29 +0000804dnl -Wcast-qual -ansi
Daniel Veillard2e9b1652003-02-19 13:29:45 +0000805else
806 STATIC_BINARIES=
Daniel Veillardf6eea272001-01-18 12:17:12 +0000807fi
Daniel Veillard2e9b1652003-02-19 13:29:45 +0000808AC_SUBST(STATIC_BINARIES)
Daniel Veillard92ad2102001-03-27 12:47:33 +0000809
810dnl
811dnl Check for trio string functions
812dnl
813
814if test "${NEED_TRIO}" = "1" ; then
815 echo Adding trio library for string functions
816 WITH_TRIO=1
817else
818 WITH_TRIO=0
819fi
Daniel Veillard01ef7382001-05-08 07:31:43 +0000820AM_CONDITIONAL(WITH_TRIO_SOURCES, test "${NEED_TRIO}" = "1")
Daniel Veillard92ad2102001-03-27 12:47:33 +0000821AC_SUBST(WITH_TRIO)
822
Daniel Veillardf6eea272001-01-18 12:17:12 +0000823dnl
William M. Brack97ad4c72003-05-13 08:08:36 +0000824dnl Allow to enable/disable various pieces
Daniel Veillard361d8452000-04-03 19:48:13 +0000825dnl
William M. Brack21e4ef22005-01-02 09:53:13 +0000826echo Checking configuration requirements
Daniel Veillard361d8452000-04-03 19:48:13 +0000827
William M. Brack21e4ef22005-01-02 09:53:13 +0000828dnl
829dnl Thread-related stuff
830dnl
Daniel Veillardb8478642001-10-12 17:29:10 +0000831THREAD_LIBS=""
Daniel Veillarddbfe05a2005-05-04 09:18:00 +0000832BASE_THREAD_LIBS=""
Daniel Veillardb8478642001-10-12 17:29:10 +0000833WITH_THREADS=0
834THREAD_CFLAGS=""
Daniel Veillardab7488e2001-10-17 11:30:37 +0000835TEST_THREADS=""
Daniel Veillard6984e6d2003-12-09 14:20:17 +0000836THREADS_W32=""
Daniel Veillard64a411c2001-10-15 12:32:07 +0000837
Daniel Veillard84942712003-04-18 14:40:05 +0000838if test "$with_threads" = "no" ; then
839 echo Disabling multithreaded support
840else
Daniel Veillardb8478642001-10-12 17:29:10 +0000841 echo Enabling multithreaded support
842
843 AC_CHECK_HEADER(pthread.h,
Daniel Veillardcbaf3992001-12-31 16:16:02 +0000844 AC_CHECK_LIB(pthread, pthread_join,[
Daniel Veillardb8478642001-10-12 17:29:10 +0000845 THREAD_LIBS="-lpthread"
Daniel Veillardc790bf42003-10-11 10:50:10 +0000846 AC_DEFINE([HAVE_LIBPTHREAD], [], [Define if pthread library is there (-lpthread)])
847 AC_DEFINE([HAVE_PTHREAD_H], [], [Define if <pthread.h> is there])
Daniel Veillardab7488e2001-10-17 11:30:37 +0000848 WITH_THREADS="1"]))
Daniel Veillard6984e6d2003-12-09 14:20:17 +0000849 case $host_os in
850 *mingw32*) WITH_THREADS="1"
851 THREADS_W32="Win32"
852 THREAD_CFLAGS="$THREAD_CFLAGS -DHAVE_WIN32_THREADS"
853 ;;
William M. Bracka73f45b2005-01-11 02:21:33 +0000854 *cygwin*) THREAD_LIBS=""
855 ;;
Daniel Veillard7a3447a2005-01-04 14:31:14 +0000856 *beos*) WITH_THREADS="1"
857 THREAD_CFLAGS="$THREAD_CFLAGS -DHAVE_BEOS_THREADS"
858 ;;
Daniel Veillarddbfe05a2005-05-04 09:18:00 +0000859 *linux*)
Daniel Veillard32a461f2005-08-25 21:48:54 +0000860 if test "${GCC}" = "yes" ; then
861 GCC_VERSION=`${CC} --version | head -1 | awk '{print $3}'`
862 GCC_MAJOR=`echo ${GCC_VERSION} | sed 's+\..*++'`
863 GCC_MEDIUM=`echo ${GCC_VERSION} | sed 's+[[0-9]]*\.++' | sed 's+\..*++'`
864 if test "${THREAD_LIBS}" = "-lpthread" ; then
865 if expr ${GCC_MEDIUM} \> 2 \& ${GCC_MAJOR} = 3 > /dev/null
866 then
867 THREAD_LIBS=""
868 BASE_THREAD_LIBS="-lpthread"
869 else
870 if expr ${GCC_MAJOR} \> 3 > /dev/null
871 then
872 THREAD_LIBS=""
873 BASE_THREAD_LIBS="-lpthread"
874 else
875 echo old GCC disabling weak symbols for pthread
876 fi
877 fi
878 fi
Daniel Veillarddbfe05a2005-05-04 09:18:00 +0000879 fi
880 ;;
Daniel Veillard6984e6d2003-12-09 14:20:17 +0000881 esac
Daniel Veillardb8478642001-10-12 17:29:10 +0000882 if test "$WITH_THREADS" = "1" ; then
Daniel Veillardab7488e2001-10-17 11:30:37 +0000883 THREAD_CFLAGS="$THREAD_CFLAGS -D_REENTRANT"
884 TEST_THREADS="Threadtests"
Daniel Veillardb8478642001-10-12 17:29:10 +0000885 fi
886fi
William M. Brack306e33c2004-06-12 01:01:22 +0000887if test "$with_thread_alloc" = "yes" -a "$WITH_THREADS" = "1" ; then
Daniel Veillardab7488e2001-10-17 11:30:37 +0000888 THREAD_CFLAGS="$THREAD_CFLAGS -DLIBXML_THREAD_ALLOC_ENABLED"
Daniel Veillard64a411c2001-10-15 12:32:07 +0000889fi
890
Daniel Veillardb8478642001-10-12 17:29:10 +0000891AC_SUBST(THREAD_LIBS)
Daniel Veillarddbfe05a2005-05-04 09:18:00 +0000892AC_SUBST(BASE_THREAD_LIBS)
Daniel Veillardb8478642001-10-12 17:29:10 +0000893AC_SUBST(WITH_THREADS)
894AC_SUBST(THREAD_CFLAGS)
Daniel Veillardab7488e2001-10-17 11:30:37 +0000895AC_SUBST(TEST_THREADS)
Daniel Veillard6984e6d2003-12-09 14:20:17 +0000896AC_SUBST(THREADS_W32)
Daniel Veillardb8478642001-10-12 17:29:10 +0000897
William M. Brack21e4ef22005-01-02 09:53:13 +0000898dnl
899dnl xmllint shell history
900dnl
Daniel Veillard259ff742001-10-06 13:49:59 +0000901if test "$with_history" = "yes" ; then
Daniel Veillardf012a642001-07-23 19:10:52 +0000902 echo Enabling xmllint shell history
903 dnl check for terminal library. this is a very cool solution
904 dnl from octave's configure.in
905 unset tcap
906 for termlib in ncurses curses termcap terminfo termlib; do
907 AC_CHECK_LIB(${termlib}, tputs, [tcap="-l$termlib"])
908 test -n "$tcap" && break
909 done
910
911 AC_CHECK_HEADER(readline/history.h,
912 AC_CHECK_LIB(history, append_history,[
913 RDL_LIBS="-lhistory"
Daniel Veillardc790bf42003-10-11 10:50:10 +0000914 AC_DEFINE([HAVE_LIBHISTORY], [], [Define if history library is there (-lhistory)])]))
Daniel Veillardf012a642001-07-23 19:10:52 +0000915 AC_CHECK_HEADER(readline/readline.h,
916 AC_CHECK_LIB(readline, readline,[
917 RDL_LIBS="-lreadline $RDL_LIBS $tcap"
Daniel Veillardc790bf42003-10-11 10:50:10 +0000918 AC_DEFINE([HAVE_LIBREADLINE], [], [Define if readline library is there (-lreadline)])], , $tcap))
Daniel Veillardf012a642001-07-23 19:10:52 +0000919 if test -n "$RDL_DIR" -a -n "$RDL_LIBS"; then
920 CPPFLAGS="$CPPFLAGS -I${RDL_DIR}/include"
921 RDL_LIBS="-L${RDL_DIR}/lib $RDL_LIBS"
Daniel Veillardf012a642001-07-23 19:10:52 +0000922 fi
Daniel Veillardf012a642001-07-23 19:10:52 +0000923fi
924
William M. Brack21e4ef22005-01-02 09:53:13 +0000925dnl
926dnl Tree functions
927dnl
Daniel Veillard652327a2003-09-29 18:02:38 +0000928if test "$with_tree" = "no" ; then
929 echo Disabling DOM like tree manipulation APIs
930 WITH_TREE=0
931else
932 WITH_TREE=1
933fi
934AC_SUBST(WITH_TREE)
935
Daniel Veillard361d8452000-04-03 19:48:13 +0000936if test "$with_ftp" = "no" ; then
937 echo Disabling FTP support
938 WITH_FTP=0
939 FTP_OBJ=
940else
941 WITH_FTP=1
942 FTP_OBJ=nanoftp.o
943fi
944AC_SUBST(WITH_FTP)
945AC_SUBST(FTP_OBJ)
946
Daniel Veillard361d8452000-04-03 19:48:13 +0000947if test "$with_http" = "no" ; then
948 echo Disabling HTTP support
949 WITH_HTTP=0
950 HTTP_OBJ=
951else
952 WITH_HTTP=1
953 HTTP_OBJ=nanohttp.o
954fi
955AC_SUBST(WITH_HTTP)
956AC_SUBST(HTTP_OBJ)
957
Daniel Veillard4432df22003-09-28 18:58:27 +0000958if test "$with_legacy" = "no" ; then
959 echo Disabling deprecated APIs
960 WITH_LEGACY=0
961else
962 WITH_LEGACY=1
963fi
964AC_SUBST(WITH_LEGACY)
965
Daniel Veillard81273902003-09-30 00:43:48 +0000966if test "$with_reader" = "no" ; then
967 echo Disabling the xmlReader parsing interface
968 WITH_READER=0
Daniel Veillard73b013f2003-09-30 12:36:01 +0000969 READER_TEST=
Daniel Veillard81273902003-09-30 00:43:48 +0000970else
971 WITH_READER=1
Daniel Veillard73b013f2003-09-30 12:36:01 +0000972 READER_TEST=Readertests
William M. Brack21e4ef22005-01-02 09:53:13 +0000973 if test "$with_push" = "no" ; then
974 echo xmlReader requires Push interface - enabling it
975 with_push=yes
976 fi
Daniel Veillard81273902003-09-30 00:43:48 +0000977fi
978AC_SUBST(WITH_READER)
Daniel Veillard73b013f2003-09-30 12:36:01 +0000979AC_SUBST(READER_TEST)
Daniel Veillard81273902003-09-30 00:43:48 +0000980
William M. Brack21e4ef22005-01-02 09:53:13 +0000981if test "$with_writer" = "no" ; then
982 echo Disabling the xmlWriter saving interface
983 WITH_WRITER=0
984# WRITER_TEST=
985else
986 WITH_WRITER=1
987# WRITER_TEST=Writertests
988 if test "$with_push" = "no" ; then
989 echo xmlWriter requires Push interface - enabling it
990 with_push=yes
991 fi
992 if test "$with_output" = "no" ; then
993 echo xmlWriter requires Output interface - enabling it
994 with_output=yes
995 fi
Daniel Veillardb3de70c2003-12-02 22:32:15 +0000996fi
William M. Brack21e4ef22005-01-02 09:53:13 +0000997AC_SUBST(WITH_WRITER)
998#AC_SUBST(WRITER_TEST)
999
Daniel Veillardb3de70c2003-12-02 22:32:15 +00001000if test "$with_pattern" = "no" ; then
1001 echo Disabling the xmlPattern parsing interface
1002 WITH_PATTERN=0
Daniel Veillardf9d16912005-01-30 22:36:30 +00001003 TEST_PATTERN=
Daniel Veillardb3de70c2003-12-02 22:32:15 +00001004else
1005 WITH_PATTERN=1
Daniel Veillardf9d16912005-01-30 22:36:30 +00001006 TEST_PATTERN=Patterntests
Daniel Veillardb3de70c2003-12-02 22:32:15 +00001007fi
1008AC_SUBST(WITH_PATTERN)
Daniel Veillardf9d16912005-01-30 22:36:30 +00001009AC_SUBST(TEST_PATTERN)
Daniel Veillardb3de70c2003-12-02 22:32:15 +00001010
Daniel Veillard81273902003-09-30 00:43:48 +00001011if test "$with_sax1" = "no" ; then
1012 echo Disabling the older SAX1 interface
1013 WITH_SAX1=0
1014 TEST_SAX=
1015else
1016 WITH_SAX1=1
1017 TEST_SAX=SAXtests
1018fi
1019AC_SUBST(WITH_SAX1)
1020AC_SUBST(TEST_SAX)
1021
Daniel Veillard73b013f2003-09-30 12:36:01 +00001022if test "$with_push" = "no" ; then
1023 echo Disabling the PUSH parser interfaces
1024 WITH_PUSH=0
1025 TEST_PUSH=
1026else
1027 WITH_PUSH=1
1028 TEST_PUSH="XMLPushtests"
1029fi
1030AC_SUBST(WITH_PUSH)
1031AC_SUBST(TEST_PUSH)
1032
Daniel Veillard73b013f2003-09-30 12:36:01 +00001033if test "$with_html" = "no" ; then
1034 echo Disabling HTML support
1035 WITH_HTML=0
1036 HTML_OBJ=
1037 TEST_HTML=
1038else
1039 WITH_HTML=1
1040 HTML_OBJ="HTMLparser.o HTMLtree.o"
1041 TEST_HTML=HTMLtests
William M. Brack871611b2003-10-18 04:53:14 +00001042 if test "$with_push" != "no" ; then
Daniel Veillard73b013f2003-09-30 12:36:01 +00001043 TEST_PHTML=HTMLPushtests
1044 else
1045 TEST_PHTML=
1046 fi
1047fi
1048AC_SUBST(WITH_HTML)
1049AC_SUBST(HTML_OBJ)
1050AC_SUBST(TEST_HTML)
1051AC_SUBST(TEST_PHTML)
1052
Daniel Veillard73b013f2003-09-30 12:36:01 +00001053if test "$with_valid" = "no" ; then
Daniel Veillard4432df22003-09-28 18:58:27 +00001054 echo Disabling DTD validation support
1055 WITH_VALID=0
1056 TEST_VALID=
1057 TEST_VTIME=
1058else
1059 WITH_VALID=1
1060 TEST_VALID=Validtests
1061 TEST_VTIME=VTimingtests
1062fi
1063AC_SUBST(WITH_VALID)
1064AC_SUBST(TEST_VALID)
1065AC_SUBST(TEST_VTIME)
Daniel Veillard361d8452000-04-03 19:48:13 +00001066
Daniel Veillarda7374592001-05-10 14:17:55 +00001067if test "$with_catalog" = "no" ; then
1068 echo Disabling Catalog support
1069 WITH_CATALOG=0
1070 CATALOG_OBJ=
Daniel Veillard4432df22003-09-28 18:58:27 +00001071 TEST_CATALOG=
Daniel Veillarda7374592001-05-10 14:17:55 +00001072else
1073 WITH_CATALOG=1
1074 CATALOG_OBJ="catalog.o"
Daniel Veillard4432df22003-09-28 18:58:27 +00001075 TEST_CATALOG=Catatests
Daniel Veillarda7374592001-05-10 14:17:55 +00001076fi
1077AC_SUBST(WITH_CATALOG)
1078AC_SUBST(CATALOG_OBJ)
Daniel Veillard4432df22003-09-28 18:58:27 +00001079AC_SUBST(TEST_CATALOG)
Daniel Veillarda7374592001-05-10 14:17:55 +00001080
Daniel Veillardb59076b2001-04-29 17:04:07 +00001081if test "$with_docbook" = "no" ; then
1082 echo Disabling Docbook support
Daniel Veillardeae522a2001-04-23 13:41:34 +00001083 WITH_DOCB=0
1084 DOCB_OBJ=
Daniel Veillardb59076b2001-04-29 17:04:07 +00001085else
1086 WITH_DOCB=1
1087 DOCB_OBJ="DOCBparser.o"
Daniel Veillardeae522a2001-04-23 13:41:34 +00001088fi
1089AC_SUBST(WITH_DOCB)
1090AC_SUBST(DOCB_OBJ)
1091
1092
William M. Brack21e4ef22005-01-02 09:53:13 +00001093if test "$with_xptr" = "no" ; then
1094 echo Disabling XPointer support
1095 WITH_XPTR=0
1096 XPTR_OBJ=
1097 TEST_XPTR=
1098else
1099 WITH_XPTR=1
1100 XPTR_OBJ=xpointer.o
1101 TEST_XPTR=XPtrtests
1102 if test "$with_xpath" = "no" ; then
1103 echo XPointer requires XPath support - enabling it
1104 with_xpath=yes
1105 fi
Daniel Veillard4432df22003-09-28 18:58:27 +00001106fi
William M. Brack21e4ef22005-01-02 09:53:13 +00001107AC_SUBST(WITH_XPTR)
1108AC_SUBST(XPTR_OBJ)
1109AC_SUBST(TEST_XPTR)
1110
1111if test "$with_c14n" = "no" ; then
1112 echo Disabling C14N support
1113 WITH_C14N=0
1114 C14N_OBJ=
1115 TEST_C14N=
1116else
1117 WITH_C14N=1
1118 C14N_OBJ="c14n.c"
1119 TEST_C14N=C14Ntests
1120 if test "$with_xpath" = "no" ; then
1121 echo C14N requires XPath support - enabling it
1122 with_xpath=yes
1123 fi
1124fi
1125AC_SUBST(WITH_C14N)
1126AC_SUBST(C14N_OBJ)
1127AC_SUBST(TEST_C14N)
1128
1129if test "$with_xinclude" = "no" ; then
1130 echo Disabling XInclude support
1131 WITH_XINCLUDE=0
1132 XINCLUDE_OBJ=
1133 with_xinclude="no"
1134 TEST_XINCLUDE=
1135else
1136 WITH_XINCLUDE=1
1137 XINCLUDE_OBJ=xinclude.o
1138 TEST_XINCLUDE=XIncludetests
1139 if test "$with_xpath" = "no" ; then
1140 echo XInclude requires XPath support - enabling it
1141 with_xpath=yes
1142 fi
1143fi
1144AC_SUBST(WITH_XINCLUDE)
1145AC_SUBST(XINCLUDE_OBJ)
1146AC_SUBST(TEST_XINCLUDE)
1147
Daniel Veillard361d8452000-04-03 19:48:13 +00001148if test "$with_xpath" = "no" ; then
1149 echo Disabling XPATH support
1150 WITH_XPATH=0
1151 XPATH_OBJ=
Daniel Veillard4432df22003-09-28 18:58:27 +00001152 TEST_XPATH=
Daniel Veillard361d8452000-04-03 19:48:13 +00001153else
1154 WITH_XPATH=1
1155 XPATH_OBJ=xpath.o
Daniel Veillard4432df22003-09-28 18:58:27 +00001156 TEST_XPATH=XPathtests
Daniel Veillard361d8452000-04-03 19:48:13 +00001157fi
1158AC_SUBST(WITH_XPATH)
1159AC_SUBST(XPATH_OBJ)
Daniel Veillard4432df22003-09-28 18:58:27 +00001160AC_SUBST(TEST_XPATH)
Daniel Veillard361d8452000-04-03 19:48:13 +00001161
William M. Brack21e4ef22005-01-02 09:53:13 +00001162dnl
1163dnl output functions
1164dnl
1165if test "$with_output" = "no" ; then
1166 echo Disabling serialization/saving support
1167 WITH_OUTPUT=0
Daniel Veillardc8df0aa2000-10-10 23:50:30 +00001168else
William M. Brack21e4ef22005-01-02 09:53:13 +00001169 WITH_OUTPUT=1
Daniel Veillardc8df0aa2000-10-10 23:50:30 +00001170fi
William M. Brack21e4ef22005-01-02 09:53:13 +00001171AC_SUBST(WITH_OUTPUT)
Daniel Veillard9e8bfae2000-11-06 16:43:11 +00001172
Daniel Veillard6e90d192001-07-03 16:37:49 +00001173WITH_ICONV=0
Daniel Veillard496a1cf2000-05-03 14:20:55 +00001174if test "$with_iconv" = "no" ; then
1175 echo Disabling ICONV support
Daniel Veillardd574f782001-03-14 19:40:17 +00001176else
Daniel Veillard220346d2001-12-07 11:33:54 +00001177 if test "$with_iconv" != "yes" -a "$with_iconv" != "" ; then
Daniel Veillard6e90d192001-07-03 16:37:49 +00001178 CPPFLAGS="${CPPFLAGS} -I$with_iconv/include"
Daniel Veillardf5b44e42001-09-17 17:19:54 +00001179 # Export this since our headers include iconv.h
1180 XML_INCLUDEDIR="${XML_INCLUDEDIR} -I$with_iconv/include"
Daniel Veillard6e90d192001-07-03 16:37:49 +00001181 ICONV_LIBS="-L$with_iconv/lib"
Daniel Veillard496a1cf2000-05-03 14:20:55 +00001182 fi
Daniel Veillard6e90d192001-07-03 16:37:49 +00001183
1184 AC_CHECK_HEADER(iconv.h,
1185 AC_MSG_CHECKING(for iconv)
1186 AC_TRY_LINK([#include <stdlib.h>
1187#include <iconv.h>],[
1188iconv_t cd = iconv_open ("","");
1189iconv (cd, NULL, NULL, NULL, NULL);],[
1190 AC_MSG_RESULT(yes)
1191 WITH_ICONV=1],[
1192 AC_MSG_RESULT(no)
1193 AC_MSG_CHECKING(for iconv in -liconv)
1194
1195 _ldflags="${LDFLAGS}"
1196 _libs="${LIBS}"
1197 LDFLAGS="${LDFLAGS} ${ICONV_LIBS}"
1198 LIBS="${LIBS} -liconv"
1199
1200 AC_TRY_LINK([#include <stdlib.h>
1201#include <iconv.h>],[
1202iconv_t cd = iconv_open ("","");
1203iconv (cd, NULL, NULL, NULL, NULL);],[
1204 AC_MSG_RESULT(yes)
1205 WITH_ICONV=1
1206 ICONV_LIBS="${ICONV_LIBS} -liconv"
1207 LIBS="${_libs}"
1208 LDFLAGS="${_ldflags}"],[
1209 AC_MSG_RESULT(no)
1210 LIBS="${_libs}"
1211 LDFLAGS="${_ldflags}"])]))
1212fi
Daniel Veillard6984e6d2003-12-09 14:20:17 +00001213case "$host" in
1214 *mingw*) M_LIBS=""
1215 ;;
Daniel Veillard7a3447a2005-01-04 14:31:14 +00001216 *beos*) M_LIBS=""
1217 ;;
Daniel Veillard6984e6d2003-12-09 14:20:17 +00001218 *) M_LIBS="-lm"
1219 ;;
1220esac
Daniel Veillardb82c1662001-12-09 14:00:54 +00001221XML_LIBS="-lxml2 $Z_LIBS $THREAD_LIBS $ICONV_LIBS $M_LIBS $LIBS"
Daniel Veillard90d165b2003-09-01 20:33:13 +00001222XML_LIBTOOLLIBS="libxml2.la"
Daniel Veillard496a1cf2000-05-03 14:20:55 +00001223AC_SUBST(WITH_ICONV)
1224
Daniel Veillard01fc1a92003-07-30 15:12:01 +00001225WITH_ISO8859X=1
Daniel Veillard01fc1a92003-07-30 15:12:01 +00001226if test "$WITH_ICONV" != "1" ; then
1227if test "$with_iso8859x" = "no" ; then
1228 echo Disabling ISO8859X support
1229 WITH_ISO8859X=0
1230fi
1231fi
1232AC_SUBST(WITH_ISO8859X)
1233
Daniel Veillarded6c5492005-07-23 15:00:22 +00001234if test "$with_schematron" = "no" ; then
1235 echo "Disabling Schematron support"
1236 WITH_SCHEMATRON=0
1237 TEST_SCHEMATRON=
1238else
1239 echo "Enabled Schematron support"
1240 WITH_SCHEMATRON=1
1241 TEST_SCHEMATRON="Schematrontests"
1242 with_xpath=yes
1243 with_pattern=yes
1244fi
1245AC_SUBST(WITH_SCHEMATRON)
1246AC_SUBST(TEST_SCHEMATRON)
1247
Daniel Veillardef4d3bc2003-02-07 12:38:22 +00001248if test "$with_schemas" = "no" ; then
William M. Brack21e4ef22005-01-02 09:53:13 +00001249 echo "Disabling Schemas/Relax-NG support"
Daniel Veillardef4d3bc2003-02-07 12:38:22 +00001250 WITH_SCHEMAS=0
1251 TEST_SCHEMAS=
1252else
Daniel Veillard71531f32003-02-05 13:19:53 +00001253 echo "Enabled Schemas/Relax-NG support"
Daniel Veillard4255d502002-04-16 15:50:10 +00001254 WITH_SCHEMAS=1
Daniel Veillard6eadf632003-01-23 18:29:16 +00001255 TEST_SCHEMAS="Schemastests Relaxtests"
Daniel Veillard6dc91962004-03-22 19:10:02 +00001256 if test "$PYTHON_INCLUDES" != "" ; then
1257 PYTHON_TESTS="$PYTHON_TESTS RelaxNGPythonTests SchemasPythonTests"
1258 fi
Daniel Veillard23e73572002-09-19 19:56:43 +00001259 with_regexps=yes
Daniel Veillard4255d502002-04-16 15:50:10 +00001260fi
1261AC_SUBST(WITH_SCHEMAS)
1262AC_SUBST(TEST_SCHEMAS)
1263
Daniel Veillard23e73572002-09-19 19:56:43 +00001264if test "$with_regexps" = "no" ; then
1265 echo Disabling Regexps support
1266 WITH_REGEXPS=0
1267 TEST_REGEXPS=
1268else
1269 WITH_REGEXPS=1
1270 TEST_REGEXPS="Regexptests Automatatests"
1271fi
1272AC_SUBST(WITH_REGEXPS)
1273AC_SUBST(TEST_REGEXPS)
1274
Daniel Veillard361d8452000-04-03 19:48:13 +00001275if test "$with_debug" = "no" ; then
1276 echo Disabling DEBUG support
1277 WITH_DEBUG=0
1278 DEBUG_OBJ=
Daniel Veillard4432df22003-09-28 18:58:27 +00001279 TEST_DEBUG=
Daniel Veillard361d8452000-04-03 19:48:13 +00001280else
1281 WITH_DEBUG=1
1282 DEBUG_OBJ=debugXML.o
Daniel Veillard4432df22003-09-28 18:58:27 +00001283 TEST_DEBUG=Scripttests
Daniel Veillard361d8452000-04-03 19:48:13 +00001284fi
1285AC_SUBST(WITH_DEBUG)
1286AC_SUBST(DEBUG_OBJ)
Daniel Veillard4432df22003-09-28 18:58:27 +00001287AC_SUBST(TEST_DEBUG)
Daniel Veillard361d8452000-04-03 19:48:13 +00001288
Daniel Veillard361d8452000-04-03 19:48:13 +00001289if test "$with_mem_debug" = "yes" ; then
William M. Brack306e33c2004-06-12 01:01:22 +00001290 if test "$with_thread_alloc" = "yes" ; then
1291 echo Disabling memory debug - cannot use mem-debug with thread-alloc!
1292 WITH_MEM_DEBUG=0
1293 else
1294 echo Enabling memory debug support
1295 WITH_MEM_DEBUG=1
1296 fi
Daniel Veillard361d8452000-04-03 19:48:13 +00001297else
1298 WITH_MEM_DEBUG=0
1299fi
1300AC_SUBST(WITH_MEM_DEBUG)
1301
Daniel Veillard22cdb842004-10-04 14:09:17 +00001302if test "$with_run_debug" = "yes" ; then
1303 echo Enabling runtime debug support
1304 WITH_RUN_DEBUG=1
1305else
1306 WITH_RUN_DEBUG=0
1307fi
1308AC_SUBST(WITH_RUN_DEBUG)
Daniel Veillard1638a472003-08-14 01:23:25 +00001309
1310WIN32_EXTRA_LIBADD=
1311WIN32_EXTRA_LDFLAGS=
William M. Bracka73f45b2005-01-11 02:21:33 +00001312CYGWIN_EXTRA_LDFLAGS=
1313CYGWIN_EXTRA_PYTHON_LIBADD=
Daniel Veillard1638a472003-08-14 01:23:25 +00001314case "$host" in
1315 *-*-mingw*)
Daniel Veillard6984e6d2003-12-09 14:20:17 +00001316 CPPFLAGS="$CPPFLAGS -DWIN32"
1317 WIN32_EXTRA_LIBADD="-lws2_32"
Daniel Veillard1638a472003-08-14 01:23:25 +00001318 WIN32_EXTRA_LDFLAGS="-no-undefined"
1319 AC_DEFINE([_WINSOCKAPI_],1,[Using the Win32 Socket implementation])
1320 AC_DEFINE([snprintf],[_snprintf],[Win32 Std C name mangling work-around])
1321 AC_DEFINE([vsnprintf],[_vsnprintf],[Win32 Std C name mangling work-around])
1322 ;;
Daniel Veillardd392ba72004-08-04 14:56:45 +00001323 *-*-cygwin*)
1324 CYGWIN_EXTRA_LDFLAGS="-no-undefined"
William M. Bracka73f45b2005-01-11 02:21:33 +00001325 if test "${PYTHON}" != ""
1326 then
1327 CYGWIN_EXTRA_PYTHON_LIBADD="-L/usr/lib/python${PYTHON_VERSION}/config -lpython${PYTHON_VERSION}"
1328 fi
Daniel Veillardd392ba72004-08-04 14:56:45 +00001329 ;;
Daniel Veillard1638a472003-08-14 01:23:25 +00001330esac
1331AC_SUBST(WIN32_EXTRA_LIBADD)
1332AC_SUBST(WIN32_EXTRA_LDFLAGS)
Daniel Veillardd392ba72004-08-04 14:56:45 +00001333AC_SUBST(CYGWIN_EXTRA_LDFLAGS)
1334AC_SUBST(CYGWIN_EXTRA_PYTHON_LIBADD)
Daniel Veillard1638a472003-08-14 01:23:25 +00001335
Daniel Veillard6984e6d2003-12-09 14:20:17 +00001336AC_SUBST(CPPFLAGS)
Daniel Veillardd7e200c1999-11-15 17:53:11 +00001337AC_SUBST(CFLAGS)
Daniel Veillardf5c2c871999-12-01 09:51:45 +00001338AC_SUBST(XML_CFLAGS)
Daniel Veillardd7e200c1999-11-15 17:53:11 +00001339
Daniel Veillardb05deb71999-08-10 19:04:08 +00001340AC_SUBST(XML_LIBDIR)
1341AC_SUBST(XML_LIBS)
Daniel Veillard90d165b2003-09-01 20:33:13 +00001342AC_SUBST(XML_LIBTOOLLIBS)
Daniel Veillard81418e32001-05-22 15:08:55 +00001343AC_SUBST(ICONV_LIBS)
Daniel Veillardb05deb71999-08-10 19:04:08 +00001344AC_SUBST(XML_INCLUDEDIR)
1345AC_SUBST(HTML_DIR)
1346AC_SUBST(HAVE_ISNAN)
1347AC_SUBST(HAVE_ISINF)
Daniel Veillardf1d0e6b2002-01-31 23:42:44 +00001348AC_SUBST(PYTHON)
1349AC_SUBST(PYTHON_VERSION)
1350AC_SUBST(PYTHON_INCLUDES)
Daniel Veillard253aa2c2002-02-02 09:17:16 +00001351AC_SUBST(PYTHON_SITE_PACKAGES)
Daniel Veillardb05deb71999-08-10 19:04:08 +00001352
Daniel Veillardb05deb71999-08-10 19:04:08 +00001353AC_SUBST(M_LIBS)
Daniel Veillard437b87b2000-01-03 17:30:46 +00001354AC_SUBST(RDL_LIBS)
Daniel Veillard361d8452000-04-03 19:48:13 +00001355
Daniel Veillard9715c172002-11-25 16:33:40 +00001356dnl for the spec file
1357RELDATE=`date +'%a %b %e %Y'`
1358AC_SUBST(RELDATE)
Daniel Veillard6dc91962004-03-22 19:10:02 +00001359AC_SUBST(PYTHON_TESTS)
Daniel Veillard9715c172002-11-25 16:33:40 +00001360
Daniel Veillardc6e997c2003-01-27 12:35:42 +00001361rm -f COPYING.LIB COPYING
Daniel Veillardc575b992002-02-08 13:28:40 +00001362ln -s Copyright COPYING
1363
Daniel Veillarde4177a52004-01-08 16:43:57 +00001364# keep on one line for cygwin c.f. #130896
Daniel Veillard99b78502005-09-11 22:04:08 +00001365AC_OUTPUT(libxml2.spec:libxml.spec.in Makefile include/Makefile include/libxml/Makefile doc/Makefile doc/examples/Makefile doc/devhelp/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 +00001366
Daniel Veillard06d25242004-02-25 13:01:42 +00001367chmod +x xml2-config python/setup.py
Daniel Veillard67952602006-01-05 15:29:44 +00001368echo Done configuring