blob: e3439f3dea698f6738917c12fd0509b664a44064 [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 Veillardfabafd52006-06-08 08:16:33 +00008LIBXML_MICRO_VERSION=26
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 Veillard75acfee2006-07-13 06:29:56 +0000328WITH_ZLIB=0
Daniel Veillard259ff742001-10-06 13:49:59 +0000329if test "$with_zlib" = "no"; then
330 echo "Disabling compression support"
331else
Daniel Veillard3fbe8e32001-10-06 13:30:33 +0000332 AC_CHECK_HEADERS(zlib.h,
333 AC_CHECK_LIB(z, gzread,[
Daniel Veillard75acfee2006-07-13 06:29:56 +0000334 AC_DEFINE([HAVE_LIBZ], [1], [Have compression library])
335 WITH_ZLIB=1
Daniel Veillard3fbe8e32001-10-06 13:30:33 +0000336 if test "x${Z_DIR}" != "x"; then
337 Z_CFLAGS="-I${Z_DIR}/include"
338 Z_LIBS="-L${Z_DIR}/lib -lz"
339 [case ${host} in
340 *-*-solaris*)
341 Z_LIBS="-L${Z_DIR}/lib -R${Z_DIR}/lib -lz"
342 ;;
343 esac]
344 else
345 Z_LIBS="-lz"
346 fi]))
Daniel Veillard259ff742001-10-06 13:49:59 +0000347fi
Owen Taylor3473f882001-02-23 17:55:21 +0000348
Owen Taylor3473f882001-02-23 17:55:21 +0000349AC_SUBST(Z_CFLAGS)
350AC_SUBST(Z_LIBS)
Daniel Veillard75acfee2006-07-13 06:29:56 +0000351AC_SUBST(WITH_ZLIB)
Owen Taylor3473f882001-02-23 17:55:21 +0000352
353CPPFLAGS=${_cppflags}
354LDFLAGS=${_ldflags}
Daniel Veillardb05deb71999-08-10 19:04:08 +0000355
William M. Brack21e4ef22005-01-02 09:53:13 +0000356echo Checking headers
357
Daniel Veillard01791d51998-07-24 19:24:09 +0000358dnl Checks for header files.
359AC_HEADER_DIRENT
360AC_HEADER_STDC
Daniel Veillard817e70b2002-11-19 22:28:48 +0000361AC_CHECK_HEADERS([fcntl.h])
362AC_CHECK_HEADERS([unistd.h])
363AC_CHECK_HEADERS([ctype.h])
364AC_CHECK_HEADERS([dirent.h])
365AC_CHECK_HEADERS([errno.h])
366AC_CHECK_HEADERS([malloc.h])
367AC_CHECK_HEADERS([stdarg.h])
368AC_CHECK_HEADERS([sys/stat.h])
369AC_CHECK_HEADERS([sys/types.h])
370AC_CHECK_HEADERS([time.h])
371AC_CHECK_HEADERS([ansidecl.h])
372AC_CHECK_HEADERS([ieeefp.h])
373AC_CHECK_HEADERS([nan.h])
374AC_CHECK_HEADERS([math.h])
Daniel Veillardebe48c62003-12-03 12:12:27 +0000375AC_CHECK_HEADERS([limits.h])
Daniel Veillard817e70b2002-11-19 22:28:48 +0000376AC_CHECK_HEADERS([fp_class.h])
377AC_CHECK_HEADERS([float.h])
378AC_CHECK_HEADERS([stdlib.h])
379AC_CHECK_HEADERS([sys/socket.h], [], [],
380[#if HAVE_SYS_TYPES_H
381# include <sys/types.h>
382# endif
383])
384AC_CHECK_HEADERS([netinet/in.h], [], [],
385[#if HAVE_SYS_TYPES_H
386# include <sys/types.h>
387# endif
388])
389AC_CHECK_HEADERS([arpa/inet.h], [], [],
390[#if HAVE_SYS_TYPES_H
391# include <sys/types.h>
392# endif
393#if HAVE_ARPA_INET_H
394# include <arpa/inet.h>
395# endif
396])
397AC_CHECK_HEADERS([netdb.h])
398AC_CHECK_HEADERS([sys/time.h])
399AC_CHECK_HEADERS([sys/select.h])
400AC_CHECK_HEADERS([sys/mman.h])
401AC_CHECK_HEADERS([sys/timeb.h])
402AC_CHECK_HEADERS([signal.h])
403AC_CHECK_HEADERS([arpa/nameser.h], [], [],
404[#if HAVE_SYS_TYPES_H
405# include <sys/types.h>
406# endif
407])
408AC_CHECK_HEADERS([resolv.h], [], [],
409[#if HAVE_SYS_TYPES_H
410# include <sys/types.h>
411# endif
412#if HAVE_NETINET_IN_H
413# include <netinet/in.h>
414# endif
415#if HAVE_ARPA_NAMESER_H
416# include <arpa/nameser.h>
417# endif
418])
Daniel Veillarddcd93902005-01-13 11:25:15 +0000419AC_CHECK_HEADERS([dl.h])
420AC_CHECK_HEADERS([dlfcn.h])
Daniel Veillard01791d51998-07-24 19:24:09 +0000421
Daniel Veillardfc979062004-03-04 22:07:16 +0000422
William M. Brack21e4ef22005-01-02 09:53:13 +0000423echo Checking libraries
Daniel Veillard1164e751999-02-16 16:29:17 +0000424
Daniel Veillard01791d51998-07-24 19:24:09 +0000425dnl Checks for library functions.
426AC_FUNC_STRFTIME
Daniel Veillard92ad2102001-03-27 12:47:33 +0000427AC_CHECK_FUNCS(strdup strndup strerror)
Daniel Veillard71b656e2000-01-05 14:46:17 +0000428AC_CHECK_FUNCS(finite isnand fp_class class fpclass)
Daniel Veillard90bc3712002-03-07 15:12:58 +0000429AC_CHECK_FUNCS(strftime localtime gettimeofday ftime)
Daniel Veillard068a9652001-06-07 15:30:26 +0000430AC_CHECK_FUNCS(stat _stat signal)
Daniel Veillard7f7d1111999-09-22 09:46:25 +0000431
Daniel Veillard92ad2102001-03-27 12:47:33 +0000432dnl Checking the standard string functions availability
433AC_CHECK_FUNCS(printf sprintf fprintf snprintf vfprintf vsprintf vsnprintf sscanf,,
434 NEED_TRIO=1)
435
William M. Brackf4caa5e2005-10-20 09:04:05 +0000436dnl Checking for va_copy availability
437AC_MSG_CHECKING([for va_copy])
438AC_TRY_LINK([#include <stdarg.h>
439va_list ap1,ap2;], [va_copy(ap1,ap2);],
440have_va_copy=yes,
441have_va_copy=no)
442AC_MSG_RESULT($have_va_copy)
443if test x"$have_va_copy" = x"yes"; then
444 AC_DEFINE(HAVE_VA_COPY,1,[Whether va_copy() is available])
445else
446 AC_MSG_CHECKING([for __va_copy])
447 AC_TRY_LINK([#include <stdarg.h>
448 va_list ap1,ap2;], [__va_copy(ap1,ap2);],
449 have___va_copy=yes,
450 have___va_copy=no)
451 AC_MSG_RESULT($have___va_copy)
452 if test x"$have___va_copy" = x"yes"; then
453 AC_DEFINE(HAVE___VA_COPY,1,[Whether __va_copy() is available])
454 fi
455fi
456
Daniel Veillard7f7d1111999-09-22 09:46:25 +0000457dnl Checks for inet libraries:
Daniel Veillardd4e39ae2005-10-28 15:59:14 +0000458AC_SEARCH_LIBS(gethostent, [nsl])
459AC_SEARCH_LIBS(setsockopt, [socket net])
460AC_SEARCH_LIBS(connect, [inet])
Daniel Veillardb05deb71999-08-10 19:04:08 +0000461
Daniel Veillardb0426ca2000-10-11 23:39:43 +0000462dnl Determine what socket length (socklen_t) data type is
463AC_MSG_CHECKING([for type of socket length (socklen_t)])
464AC_TRY_COMPILE2([
465#include <stddef.h>
466#include <sys/types.h>
467#include <sys/socket.h>],[
468(void)getsockopt (1, 1, 1, NULL, (socklen_t *)NULL)],[
469 AC_MSG_RESULT(socklen_t *)
Daniel Veillardc284c642005-03-31 10:24:24 +0000470 XML_SOCKLEN_T=socklen_t],[
Daniel Veillardb0426ca2000-10-11 23:39:43 +0000471 AC_TRY_COMPILE2([
472#include <stddef.h>
473#include <sys/types.h>
474#include <sys/socket.h>],[
475(void)getsockopt (1, 1, 1, NULL, (size_t *)NULL)],[
476 AC_MSG_RESULT(size_t *)
Daniel Veillardc284c642005-03-31 10:24:24 +0000477 XML_SOCKLEN_T=size_t],[
Daniel Veillardb0426ca2000-10-11 23:39:43 +0000478 AC_TRY_COMPILE2([
479#include <stddef.h>
480#include <sys/types.h>
481#include <sys/socket.h>],[
482(void)getsockopt (1, 1, 1, NULL, (int *)NULL)],[
483 AC_MSG_RESULT(int *)
Daniel Veillardc284c642005-03-31 10:24:24 +0000484 XML_SOCKLEN_T=int],[
William M. Brack2e6b1432004-02-09 15:10:28 +0000485 AC_MSG_WARN(could not determine)
Daniel Veillardc284c642005-03-31 10:24:24 +0000486 XML_SOCKLEN_T="int"])])])
487AC_DEFINE_UNQUOTED(XML_SOCKLEN_T, $XML_SOCKLEN_T, [Determine what socket length (socklen_t) data type is])
Daniel Veillardb0426ca2000-10-11 23:39:43 +0000488
Daniel Veillardde2a67b2003-06-21 14:20:04 +0000489dnl ***********************Checking for availability of IPv6*******************
490
491AC_MSG_CHECKING([whether to enable IPv6])
William M. Brack21e4ef22005-01-02 09:53:13 +0000492AC_ARG_ENABLE(ipv6, [ --enable-ipv6[[=yes/no]] enables compilation of IPv6 code [[default=yes]]],, enable_ipv6=yes)
Daniel Veillard4432df22003-09-28 18:58:27 +0000493if test "$with_minimum" = "yes"
494then
495 enable_ipv6=no
496fi
Daniel Veillardde2a67b2003-06-21 14:20:04 +0000497if test $enable_ipv6 = yes; then
498 have_ipv6=no
499 AC_TRY_COMPILE([
500 #include <sys/socket.h>
501 #include <sys/types.h>], [
502 struct sockaddr_storage ss;
503 socket(AF_INET6, SOCK_STREAM, 0)
504 ],
505 have_ipv6=yes,
506 have_ipv6=no
507 )
508 AC_MSG_RESULT($have_ipv6)
509
William M. Brack476cd962003-08-13 11:09:42 +0000510 if test $have_ipv6 = yes; then
Daniel Veillardc790bf42003-10-11 10:50:10 +0000511 AC_DEFINE([SUPPORT_IP6], [], [Support for IPv6])
Dodji Seketeli8eba3f32004-11-09 18:30:30 +0000512 have_broken_ss_family=no
513
514 dnl *********************************************************************
515 dnl on some platforms (like AIX 5L), the structure sockaddr doesn't have
516 dnl a ss_family member, but rather __ss_family. Let's detect that
William M. Brack7d8b36b2005-06-25 07:30:50 +0000517 dnl and define the HAVE_BROKEN_SS_FAMILY when we are on one of these
518 dnl platforms. However, we should only do this if ss_family is not
519 dnl present.
Dodji Seketeli8eba3f32004-11-09 18:30:30 +0000520 dnl ********************************************************************
William M. Brack7d8b36b2005-06-25 07:30:50 +0000521 AC_MSG_CHECKING([struct sockaddr::ss_family])
Dodji Seketeli8eba3f32004-11-09 18:30:30 +0000522 AC_TRY_COMPILE([
523 #include <sys/socket.h>
524 #include <sys/types.h>], [
525 struct sockaddr_storage ss ;
William M. Brack7d8b36b2005-06-25 07:30:50 +0000526 ss.ss_family = 0 ;
Dodji Seketeli8eba3f32004-11-09 18:30:30 +0000527 ],
William M. Brack7d8b36b2005-06-25 07:30:50 +0000528 have_ss_family=yes,
529 have_ss_family=no
Dodji Seketeli8eba3f32004-11-09 18:30:30 +0000530 )
William M. Brack7d8b36b2005-06-25 07:30:50 +0000531 AC_MSG_RESULT($have_ss_family)
532 if test x$have_ss_family = xno ; then
533 AC_MSG_CHECKING([broken struct sockaddr::ss_family])
534 AC_TRY_COMPILE([
535 #include <sys/socket.h>
536 #include <sys/types.h>], [
537 struct sockaddr_storage ss ;
538 ss.__ss_family = 0 ;
539 ],
540 have_broken_ss_family=yes,
541 have_broken_ss_family=no
542 )
543 AC_MSG_RESULT($have_broken_ss_family)
544 if test x$have_broken_ss_family = xyes ; then
545 AC_DEFINE(HAVE_BROKEN_SS_FAMILY, [],
546 [Whether struct sockaddr::__ss_family exists])
547 AC_DEFINE(ss_family, __ss_family,
548 [ss_family is not defined here, use __ss_family instead])
549 else
550 AC_MSG_WARN(ss_family and __ss_family not found)
551 fi
Dodji Seketeli8eba3f32004-11-09 18:30:30 +0000552 fi
Daniel Veillardde2a67b2003-06-21 14:20:04 +0000553
554 have_getaddrinfo=no
555 AC_CHECK_FUNC(getaddrinfo, have_getaddrinfo=yes)
556 if test $have_getaddrinfo != yes; then
557 for lib in bsd socket inet; do
558 AC_CHECK_LIB($lib, getaddrinfo, [LIBS="$LIBS -l$lib";have_getaddrinfo=yes;break])
559 done
560 fi
561
William M. Brack476cd962003-08-13 11:09:42 +0000562 if test $have_getaddrinfo = yes; then
Daniel Veillardc790bf42003-10-11 10:50:10 +0000563 AC_DEFINE([HAVE_GETADDRINFO], [], [Define if getaddrinfo is there])
Daniel Veillardde2a67b2003-06-21 14:20:04 +0000564 fi
565 fi
566fi
567
568dnl ******************************End IPv6 checks******************************
569
Daniel Veillardb05deb71999-08-10 19:04:08 +0000570dnl Checks for isnan in libm if not in libc
Daniel Veillard6984e6d2003-12-09 14:20:17 +0000571AC_CHECK_FUNC(isnan, AC_DEFINE([HAVE_ISNAN],[], [Define if isnan is there]) , AC_CHECK_LIB(m, isnan,
Daniel Veillardc790bf42003-10-11 10:50:10 +0000572 [AC_DEFINE([HAVE_ISNAN],[], [Define if isnan is there])]))
Daniel Veillardb05deb71999-08-10 19:04:08 +0000573
Daniel Veillardc790bf42003-10-11 10:50:10 +0000574AC_CHECK_FUNC(isinf, AC_DEFINE([HAVE_ISINF], [], [Define if isinf is there]) , AC_CHECK_LIB(m, isinf,
575 [AC_DEFINE([HAVE_ISINF], [], [Define if isinf is there])]))
Daniel Veillardb05deb71999-08-10 19:04:08 +0000576
577XML_LIBDIR='-L${libdir}'
Daniel Veillarde7dd2b82002-03-15 18:44:02 +0000578XML_INCLUDEDIR='-I${includedir}/libxml2'
Daniel Veillardb05deb71999-08-10 19:04:08 +0000579
Daniel Veillardd7e200c1999-11-15 17:53:11 +0000580dnl
Daniel Veillardf5c2c871999-12-01 09:51:45 +0000581dnl Extra flags
582dnl
583XML_CFLAGS=""
Daniel Veillard357c9602001-05-03 10:49:20 +0000584RDL_LIBS=""
Daniel Veillardf5c2c871999-12-01 09:51:45 +0000585
586dnl
Daniel Veillardb45c43b2001-04-28 17:02:11 +0000587dnl Workaround for native compilers
588dnl HP : http://bugs.gnome.org/db/31/3163.html
589dnl DEC : Enable NaN/Inf
Daniel Veillardd7e200c1999-11-15 17:53:11 +0000590dnl
Daniel Veillard03109292000-08-14 14:58:22 +0000591if test "${GCC}" != "yes" ; then
Daniel Veillardd7e200c1999-11-15 17:53:11 +0000592 case "${host}" in
Daniel Veillard6a0baa02005-12-10 11:11:12 +0000593 hppa*-*-hpux* )
Daniel Veillard03109292000-08-14 14:58:22 +0000594 CFLAGS="${CFLAGS} -Wp,-H30000"
Daniel Veillardd7e200c1999-11-15 17:53:11 +0000595 ;;
Daniel Veillardb45c43b2001-04-28 17:02:11 +0000596 *-dec-osf* )
597 CFLAGS="${CFLAGS} -ieee"
598 ;;
William M. Brack476cd962003-08-13 11:09:42 +0000599 alpha*-*-linux* )
600 CFLAGS="${CFLAGS} -ieee"
601 ;;
Daniel Veillardd7e200c1999-11-15 17:53:11 +0000602 esac
Daniel Veillardd574f782001-03-14 19:40:17 +0000603else
Daniel Veillardd94849b2003-07-28 13:02:24 +0000604 if test "$with_fexceptions" = "yes"
605 then
606 #
607 # Not activated by default because this inflates the code size
608 # Used to allow propagation of C++ exceptions through the library
609 #
610 CFLAGS="${CFLAGS} -fexceptions"
611 fi
612
Daniel Veillard05f97352004-10-31 15:35:32 +0000613 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 +0000614 case "${host}" in
615 alpha*-*-linux* )
616 CFLAGS="${CFLAGS} -mieee"
617 ;;
Daniel Veillardcb5b4d62002-04-11 08:24:26 +0000618 alpha*-*-osf* )
619 CFLAGS="${CFLAGS} -mieee"
620 ;;
Daniel Veillard14839d52001-06-06 16:11:56 +0000621 esac
Daniel Veillardd7e200c1999-11-15 17:53:11 +0000622fi
Daniel Veillardb0426ca2000-10-11 23:39:43 +0000623case ${host} in
624 *-*-solaris*)
Daniel Veillardd2ade932000-09-30 14:39:55 +0000625 XML_LIBDIR="${XML_LIBDIR} -R${libdir}"
626 ;;
Daniel Veillardd30be4a2002-03-28 18:25:31 +0000627 hppa*-hp-mpeix)
628 NEED_TRIO=1
629 ;;
Daniel Veillard4188ddf2006-01-19 08:58:42 +0000630 *-*-mingw* | *-*-cygwin* | *-*-msvc* )
631 # If the host is Windows, and shared libraries are disabled, we
632 # need to add -DLIBXML_STATIC to CFLAGS in order for linking to
633 # work properly (without it, xmlexports.h would force the use of
634 # DLL imports, which obviously aren't present in a static
635 # library).
636 if test "x$enable_shared" = "xno"; then
637 XML_CFLAGS="$XML_CFLAGS -DLIBXML_STATIC"
638 CFLAGS="$CFLAGS -DLIBXML_STATIC"
639 fi
640 ;;
Daniel Veillardd2ade932000-09-30 14:39:55 +0000641esac
642
Daniel Veillardf5c2c871999-12-01 09:51:45 +0000643
Daniel Veillardf1d0e6b2002-01-31 23:42:44 +0000644dnl
645dnl check for python
646dnl
647
Daniel Veillardf1d0e6b2002-01-31 23:42:44 +0000648PYTHON_VERSION=
649PYTHON_INCLUDES=
Daniel Veillard253aa2c2002-02-02 09:17:16 +0000650PYTHON_SITE_PACKAGES=
Daniel Veillard6dc91962004-03-22 19:10:02 +0000651PYTHON_TESTS=
Daniel Veillard38b80a82003-05-14 18:59:00 +0000652pythondir=
Daniel Veillardf1d0e6b2002-01-31 23:42:44 +0000653if test "$with_python" != "no" ; then
654 if test -x "$with_python/bin/python"
655 then
656 echo Found python in $with_python/bin/python
657 PYTHON="$with_python/bin/python"
Daniel Veillard9b731d72002-04-14 12:56:08 +0000658 else
Daniel Veillarda8a89fe2002-04-12 21:03:34 +0000659 if test -x "$with_python"
660 then
Daniel Veillard4efd3be2002-11-18 09:11:13 +0000661 echo Found python in $with_python
662 PYTHON="$with_python"
Daniel Veillarda8a89fe2002-04-12 21:03:34 +0000663 else
Daniel Veillard4f69eb62005-08-24 22:19:10 +0000664 if test -x "$PYTHON"
665 then
666 echo Found python in environment PYTHON=$PYTHON
Daniel Veillard8492ba12006-04-25 12:52:12 +0000667 with_python=`$PYTHON -c "import sys; print sys.exec_prefix"`
Daniel Veillard4f69eb62005-08-24 22:19:10 +0000668 else
Daniel Veillardc2f70562005-09-01 12:45:26 +0000669 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 +0000670 fi
Daniel Veillarda8a89fe2002-04-12 21:03:34 +0000671 fi
Daniel Veillardf1d0e6b2002-01-31 23:42:44 +0000672 fi
673 if test "$PYTHON" != ""
674 then
675 PYTHON_VERSION=`$PYTHON -c "import sys; print sys.version[[0:3]]"`
676 echo Found Python version $PYTHON_VERSION
677 fi
678 if test "$PYTHON_VERSION" != ""
679 then
Daniel Veillard253aa2c2002-02-02 09:17:16 +0000680 if test -r $with_python/include/python$PYTHON_VERSION/Python.h -a \
681 -d $with_python/lib/python$PYTHON_VERSION/site-packages
Daniel Veillardf1d0e6b2002-01-31 23:42:44 +0000682 then
683 PYTHON_INCLUDES=$with_python/include/python$PYTHON_VERSION
Daniel Veillardd7d07482006-05-03 13:15:44 +0000684 PYTHON_SITE_PACKAGES=$libdir/python$PYTHON_VERSION/site-packages
Daniel Veillardf1d0e6b2002-01-31 23:42:44 +0000685 else
686 if test -r $prefix/include/python$PYTHON_VERSION/Python.h
687 then
Daniel Veillard8492ba12006-04-25 12:52:12 +0000688 PYTHON_INCLUDES=$prefix/include/python$PYTHON_VERSION
Daniel Veillardd7d07482006-05-03 13:15:44 +0000689 PYTHON_SITE_PACKAGES=$libdir/python$PYTHON_VERSION/site-packages
Daniel Veillardf1d0e6b2002-01-31 23:42:44 +0000690 else
691 if test -r /usr/include/python$PYTHON_VERSION/Python.h
692 then
693 PYTHON_INCLUDES=/usr/include/python$PYTHON_VERSION
Daniel Veillardd7d07482006-05-03 13:15:44 +0000694 PYTHON_SITE_PACKAGES=$libdir/python$PYTHON_VERSION/site-packages
Daniel Veillardf1d0e6b2002-01-31 23:42:44 +0000695 else
696 echo could not find python$PYTHON_VERSION/Python.h
697 fi
698 fi
William M. Brack5d4cba42004-01-06 15:19:12 +0000699 if test ! -d "$PYTHON_SITE_PACKAGES"
Daniel Veillardb6984ef2002-08-14 16:55:31 +0000700 then
701 PYTHON_SITE_PACKAGES=`$PYTHON -c "from distutils import sysconfig; print sysconfig.get_python_lib()"`
702 fi
Daniel Veillardf1d0e6b2002-01-31 23:42:44 +0000703 fi
704 fi
Daniel Veillard38b80a82003-05-14 18:59:00 +0000705 if test "$with_python" != ""
706 then
Daniel Veillardd7d07482006-05-03 13:15:44 +0000707 pythondir='$(PYTHON_SITE_PACKAGES)'
Daniel Veillard38b80a82003-05-14 18:59:00 +0000708 else
Daniel Veillardb2f8f1d2006-04-28 16:30:48 +0000709 pythondir='$(libdir)/python$(PYTHON_VERSION)/site-packages'
Daniel Veillard38b80a82003-05-14 18:59:00 +0000710 fi
Daniel Veillard4f69eb62005-08-24 22:19:10 +0000711else
712 PYTHON=
Daniel Veillardf1d0e6b2002-01-31 23:42:44 +0000713fi
714AM_CONDITIONAL(WITH_PYTHON, test "$PYTHON_INCLUDES" != "")
Daniel Veillard40b11342002-09-20 12:01:39 +0000715if test "$PYTHON_INCLUDES" != ""
716then
717 PYTHON_SUBDIR=python
718else
719 PYTHON_SUBDIR=
720fi
Daniel Veillard38b80a82003-05-14 18:59:00 +0000721AC_SUBST(pythondir)
Daniel Veillard40b11342002-09-20 12:01:39 +0000722AC_SUBST(PYTHON_SUBDIR)
Daniel Veillardf1d0e6b2002-01-31 23:42:44 +0000723
Daniel Veillardce1648b2005-01-04 15:10:22 +0000724dnl check for dso support
725WITH_MODULES=0
Daniel Veillardce1648b2005-01-04 15:10:22 +0000726TEST_MODULES=
727
Daniel Veillardf6b71bd2005-01-04 17:50:14 +0000728if test "$with_modules" != "no" ; then
Daniel Veillard9202b672005-07-14 09:31:14 +0000729 case "$host" in
730 *-*-cygwin*)
731 MODULE_EXTENSION=".dll"
732 AC_CHECK_LIB(cygwin, dlopen, [
733 WITH_MODULES=1
734 MODULE_PLATFORM_LIBS=
735 AC_DEFINE([HAVE_DLOPEN], [], [Have dlopen based dso])
736 ])
737 ;;
738 *)
Daniel Veillard1d96f5a2005-10-28 08:44:48 +0000739 AC_CHECK_FUNC(shl_load, libxml_have_shl_load=yes, [
740 AC_CHECK_LIB(dld, shl_load, [
741 MODULE_PLATFORM_LIBS="-ldld"
742 libxml_have_shl_load=yes], [
743 AC_CHECK_FUNC(dlopen, libxml_have_dlopen=yes, [
744 AC_CHECK_LIB(dl, dlopen, [
745 MODULE_PLATFORM_LIBS="-ldl"
746 libxml_have_dlopen=yes])])])])
747
748 if test "${libxml_have_shl_load}" = "yes"; then
749 MODULE_EXTENSION=".sl"
Daniel Veillard9202b672005-07-14 09:31:14 +0000750 WITH_MODULES=1
Daniel Veillard9202b672005-07-14 09:31:14 +0000751 AC_DEFINE([HAVE_SHLLOAD], [], [Have shl_load based dso])
Daniel Veillard1d96f5a2005-10-28 08:44:48 +0000752 fi
Daniel Veillard9202b672005-07-14 09:31:14 +0000753
Daniel Veillard1d96f5a2005-10-28 08:44:48 +0000754 if test "${libxml_have_dlopen}" = "yes"; then
755 case "${host}" in
756 *-*-hpux* )
757 MODULE_EXTENSION=".sl"
758 ;;
759 * )
760 MODULE_EXTENSION=".so"
761 ;;
762 esac
763
Daniel Veillard9202b672005-07-14 09:31:14 +0000764 WITH_MODULES=1
Daniel Veillard9202b672005-07-14 09:31:14 +0000765 AC_DEFINE([HAVE_DLOPEN], [], [Have dlopen based dso])
Daniel Veillard1d96f5a2005-10-28 08:44:48 +0000766 fi
Daniel Veillard9202b672005-07-14 09:31:14 +0000767 ;;
768 esac
Daniel Veillardf6b71bd2005-01-04 17:50:14 +0000769fi
Daniel Veillardce1648b2005-01-04 15:10:22 +0000770
771if test "${WITH_MODULES}" = "1"; then
772 TEST_MODULES="ModuleTests"
773fi
774
775AC_SUBST(WITH_MODULES)
776AC_SUBST(MODULE_PLATFORM_LIBS)
777AC_SUBST(MODULE_EXTENSION)
778AC_SUBST(TEST_MODULES)
779
Daniel Veillard437b87b2000-01-03 17:30:46 +0000780dnl
781dnl Tester makes use of readline if present
782dnl
Daniel Veillard03109292000-08-14 14:58:22 +0000783
Daniel Veillard361d8452000-04-03 19:48:13 +0000784dnl
William M. Brack21e4ef22005-01-02 09:53:13 +0000785dnl specific tests to setup DV and Bill's devel environments with debug etc ...
Daniel Veillard81418e32001-05-22 15:08:55 +0000786dnl (-Wunreachable-code)
Daniel Veillardf6eea272001-01-18 12:17:12 +0000787dnl
William M. Brack871611b2003-10-18 04:53:14 +0000788if [[ "${LOGNAME}" = "veillard" -a "`pwd`" = "/u/veillard/XML" ]] || \
Daniel Veillardb7c6ac42004-06-29 22:01:27 +0000789 [[ "${LOGNAME}" = "veillard" -a "`pwd`" = "/home/veillard/libxml2" ]] || \
William M. Bracka2e844a2004-01-06 11:52:13 +0000790 [[ "${LOGNAME}" = "bill" -a "`pwd`" = "/home/bill/gnomecvs/xmltest" ]] || \
William M. Brack4119d1c2004-06-24 02:24:44 +0000791 [[ "${LOGNAME}" = "wbrack" -a "`pwd`" = "/Users/wbrack/gnomecvs/xmltest" ]]
William M. Brack871611b2003-10-18 04:53:14 +0000792 then
Daniel Veillard4432df22003-09-28 18:58:27 +0000793 if test "$with_minimum" != "yes"
794 then
795 if test "${with_mem_debug}" = "" ; then
Daniel Veillard379a3b72005-08-12 10:18:14 +0000796 echo Activating memory debugging
Daniel Veillard4432df22003-09-28 18:58:27 +0000797 with_mem_debug="yes"
Daniel Veillard22cdb842004-10-04 14:09:17 +0000798 with_run_debug="yes"
Daniel Veillard4432df22003-09-28 18:58:27 +0000799 fi
800 if test "${with_docbook}" = "" ; then
801 with_docbook="yes"
802 fi
Daniel Veillardeae522a2001-04-23 13:41:34 +0000803 fi
Daniel Veillard3854c572005-08-25 10:17:45 +0000804 if test "${GCC}" = "yes" ; then
Daniel Veillard05f97352004-10-31 15:35:32 +0000805 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 +0000806 fi
Daniel Veillard2e9b1652003-02-19 13:29:45 +0000807 STATIC_BINARIES="-static"
Daniel Veillardc86a4fa2001-03-26 16:28:29 +0000808dnl -Wcast-qual -ansi
Daniel Veillard2e9b1652003-02-19 13:29:45 +0000809else
810 STATIC_BINARIES=
Daniel Veillardf6eea272001-01-18 12:17:12 +0000811fi
Daniel Veillard2e9b1652003-02-19 13:29:45 +0000812AC_SUBST(STATIC_BINARIES)
Daniel Veillard92ad2102001-03-27 12:47:33 +0000813
814dnl
815dnl Check for trio string functions
816dnl
817
818if test "${NEED_TRIO}" = "1" ; then
819 echo Adding trio library for string functions
820 WITH_TRIO=1
821else
822 WITH_TRIO=0
823fi
Daniel Veillard01ef7382001-05-08 07:31:43 +0000824AM_CONDITIONAL(WITH_TRIO_SOURCES, test "${NEED_TRIO}" = "1")
Daniel Veillard92ad2102001-03-27 12:47:33 +0000825AC_SUBST(WITH_TRIO)
826
Daniel Veillardf6eea272001-01-18 12:17:12 +0000827dnl
William M. Brack97ad4c72003-05-13 08:08:36 +0000828dnl Allow to enable/disable various pieces
Daniel Veillard361d8452000-04-03 19:48:13 +0000829dnl
William M. Brack21e4ef22005-01-02 09:53:13 +0000830echo Checking configuration requirements
Daniel Veillard361d8452000-04-03 19:48:13 +0000831
William M. Brack21e4ef22005-01-02 09:53:13 +0000832dnl
833dnl Thread-related stuff
834dnl
Daniel Veillardb8478642001-10-12 17:29:10 +0000835THREAD_LIBS=""
Daniel Veillarddbfe05a2005-05-04 09:18:00 +0000836BASE_THREAD_LIBS=""
Daniel Veillardb8478642001-10-12 17:29:10 +0000837WITH_THREADS=0
838THREAD_CFLAGS=""
Daniel Veillardab7488e2001-10-17 11:30:37 +0000839TEST_THREADS=""
Daniel Veillard6984e6d2003-12-09 14:20:17 +0000840THREADS_W32=""
Daniel Veillard64a411c2001-10-15 12:32:07 +0000841
Daniel Veillard84942712003-04-18 14:40:05 +0000842if test "$with_threads" = "no" ; then
843 echo Disabling multithreaded support
844else
Daniel Veillardb8478642001-10-12 17:29:10 +0000845 echo Enabling multithreaded support
846
847 AC_CHECK_HEADER(pthread.h,
Daniel Veillardcbaf3992001-12-31 16:16:02 +0000848 AC_CHECK_LIB(pthread, pthread_join,[
Daniel Veillardb8478642001-10-12 17:29:10 +0000849 THREAD_LIBS="-lpthread"
Daniel Veillardc790bf42003-10-11 10:50:10 +0000850 AC_DEFINE([HAVE_LIBPTHREAD], [], [Define if pthread library is there (-lpthread)])
851 AC_DEFINE([HAVE_PTHREAD_H], [], [Define if <pthread.h> is there])
Daniel Veillardab7488e2001-10-17 11:30:37 +0000852 WITH_THREADS="1"]))
Daniel Veillard6984e6d2003-12-09 14:20:17 +0000853 case $host_os in
854 *mingw32*) WITH_THREADS="1"
855 THREADS_W32="Win32"
856 THREAD_CFLAGS="$THREAD_CFLAGS -DHAVE_WIN32_THREADS"
857 ;;
William M. Bracka73f45b2005-01-11 02:21:33 +0000858 *cygwin*) THREAD_LIBS=""
859 ;;
Daniel Veillard7a3447a2005-01-04 14:31:14 +0000860 *beos*) WITH_THREADS="1"
861 THREAD_CFLAGS="$THREAD_CFLAGS -DHAVE_BEOS_THREADS"
862 ;;
Daniel Veillarddbfe05a2005-05-04 09:18:00 +0000863 *linux*)
Daniel Veillard32a461f2005-08-25 21:48:54 +0000864 if test "${GCC}" = "yes" ; then
865 GCC_VERSION=`${CC} --version | head -1 | awk '{print $3}'`
866 GCC_MAJOR=`echo ${GCC_VERSION} | sed 's+\..*++'`
867 GCC_MEDIUM=`echo ${GCC_VERSION} | sed 's+[[0-9]]*\.++' | sed 's+\..*++'`
868 if test "${THREAD_LIBS}" = "-lpthread" ; then
869 if expr ${GCC_MEDIUM} \> 2 \& ${GCC_MAJOR} = 3 > /dev/null
870 then
871 THREAD_LIBS=""
872 BASE_THREAD_LIBS="-lpthread"
873 else
874 if expr ${GCC_MAJOR} \> 3 > /dev/null
875 then
876 THREAD_LIBS=""
877 BASE_THREAD_LIBS="-lpthread"
878 else
879 echo old GCC disabling weak symbols for pthread
880 fi
881 fi
882 fi
Daniel Veillarddbfe05a2005-05-04 09:18:00 +0000883 fi
884 ;;
Daniel Veillard6984e6d2003-12-09 14:20:17 +0000885 esac
Daniel Veillardb8478642001-10-12 17:29:10 +0000886 if test "$WITH_THREADS" = "1" ; then
Daniel Veillardab7488e2001-10-17 11:30:37 +0000887 THREAD_CFLAGS="$THREAD_CFLAGS -D_REENTRANT"
888 TEST_THREADS="Threadtests"
Daniel Veillardb8478642001-10-12 17:29:10 +0000889 fi
890fi
William M. Brack306e33c2004-06-12 01:01:22 +0000891if test "$with_thread_alloc" = "yes" -a "$WITH_THREADS" = "1" ; then
Daniel Veillardab7488e2001-10-17 11:30:37 +0000892 THREAD_CFLAGS="$THREAD_CFLAGS -DLIBXML_THREAD_ALLOC_ENABLED"
Daniel Veillard64a411c2001-10-15 12:32:07 +0000893fi
894
Daniel Veillardb8478642001-10-12 17:29:10 +0000895AC_SUBST(THREAD_LIBS)
Daniel Veillarddbfe05a2005-05-04 09:18:00 +0000896AC_SUBST(BASE_THREAD_LIBS)
Daniel Veillardb8478642001-10-12 17:29:10 +0000897AC_SUBST(WITH_THREADS)
898AC_SUBST(THREAD_CFLAGS)
Daniel Veillardab7488e2001-10-17 11:30:37 +0000899AC_SUBST(TEST_THREADS)
Daniel Veillard6984e6d2003-12-09 14:20:17 +0000900AC_SUBST(THREADS_W32)
Daniel Veillardb8478642001-10-12 17:29:10 +0000901
William M. Brack21e4ef22005-01-02 09:53:13 +0000902dnl
903dnl xmllint shell history
904dnl
Daniel Veillard259ff742001-10-06 13:49:59 +0000905if test "$with_history" = "yes" ; then
Daniel Veillardf012a642001-07-23 19:10:52 +0000906 echo Enabling xmllint shell history
907 dnl check for terminal library. this is a very cool solution
908 dnl from octave's configure.in
909 unset tcap
910 for termlib in ncurses curses termcap terminfo termlib; do
911 AC_CHECK_LIB(${termlib}, tputs, [tcap="-l$termlib"])
912 test -n "$tcap" && break
913 done
914
915 AC_CHECK_HEADER(readline/history.h,
916 AC_CHECK_LIB(history, append_history,[
917 RDL_LIBS="-lhistory"
Daniel Veillardc790bf42003-10-11 10:50:10 +0000918 AC_DEFINE([HAVE_LIBHISTORY], [], [Define if history library is there (-lhistory)])]))
Daniel Veillardf012a642001-07-23 19:10:52 +0000919 AC_CHECK_HEADER(readline/readline.h,
920 AC_CHECK_LIB(readline, readline,[
921 RDL_LIBS="-lreadline $RDL_LIBS $tcap"
Daniel Veillardc790bf42003-10-11 10:50:10 +0000922 AC_DEFINE([HAVE_LIBREADLINE], [], [Define if readline library is there (-lreadline)])], , $tcap))
Daniel Veillardf012a642001-07-23 19:10:52 +0000923 if test -n "$RDL_DIR" -a -n "$RDL_LIBS"; then
924 CPPFLAGS="$CPPFLAGS -I${RDL_DIR}/include"
925 RDL_LIBS="-L${RDL_DIR}/lib $RDL_LIBS"
Daniel Veillardf012a642001-07-23 19:10:52 +0000926 fi
Daniel Veillardf012a642001-07-23 19:10:52 +0000927fi
928
William M. Brack21e4ef22005-01-02 09:53:13 +0000929dnl
930dnl Tree functions
931dnl
Daniel Veillard652327a2003-09-29 18:02:38 +0000932if test "$with_tree" = "no" ; then
933 echo Disabling DOM like tree manipulation APIs
934 WITH_TREE=0
935else
936 WITH_TREE=1
937fi
938AC_SUBST(WITH_TREE)
939
Daniel Veillard361d8452000-04-03 19:48:13 +0000940if test "$with_ftp" = "no" ; then
941 echo Disabling FTP support
942 WITH_FTP=0
943 FTP_OBJ=
944else
945 WITH_FTP=1
946 FTP_OBJ=nanoftp.o
947fi
948AC_SUBST(WITH_FTP)
949AC_SUBST(FTP_OBJ)
950
Daniel Veillard361d8452000-04-03 19:48:13 +0000951if test "$with_http" = "no" ; then
952 echo Disabling HTTP support
953 WITH_HTTP=0
954 HTTP_OBJ=
955else
956 WITH_HTTP=1
957 HTTP_OBJ=nanohttp.o
958fi
959AC_SUBST(WITH_HTTP)
960AC_SUBST(HTTP_OBJ)
961
Daniel Veillard4432df22003-09-28 18:58:27 +0000962if test "$with_legacy" = "no" ; then
963 echo Disabling deprecated APIs
964 WITH_LEGACY=0
965else
966 WITH_LEGACY=1
967fi
968AC_SUBST(WITH_LEGACY)
969
Daniel Veillard81273902003-09-30 00:43:48 +0000970if test "$with_reader" = "no" ; then
971 echo Disabling the xmlReader parsing interface
972 WITH_READER=0
Daniel Veillard73b013f2003-09-30 12:36:01 +0000973 READER_TEST=
Daniel Veillard81273902003-09-30 00:43:48 +0000974else
975 WITH_READER=1
Daniel Veillard73b013f2003-09-30 12:36:01 +0000976 READER_TEST=Readertests
William M. Brack21e4ef22005-01-02 09:53:13 +0000977 if test "$with_push" = "no" ; then
978 echo xmlReader requires Push interface - enabling it
979 with_push=yes
980 fi
Daniel Veillard81273902003-09-30 00:43:48 +0000981fi
982AC_SUBST(WITH_READER)
Daniel Veillard73b013f2003-09-30 12:36:01 +0000983AC_SUBST(READER_TEST)
Daniel Veillard81273902003-09-30 00:43:48 +0000984
William M. Brack21e4ef22005-01-02 09:53:13 +0000985if test "$with_writer" = "no" ; then
986 echo Disabling the xmlWriter saving interface
987 WITH_WRITER=0
988# WRITER_TEST=
989else
990 WITH_WRITER=1
991# WRITER_TEST=Writertests
992 if test "$with_push" = "no" ; then
993 echo xmlWriter requires Push interface - enabling it
994 with_push=yes
995 fi
996 if test "$with_output" = "no" ; then
997 echo xmlWriter requires Output interface - enabling it
998 with_output=yes
999 fi
Daniel Veillardb3de70c2003-12-02 22:32:15 +00001000fi
William M. Brack21e4ef22005-01-02 09:53:13 +00001001AC_SUBST(WITH_WRITER)
1002#AC_SUBST(WRITER_TEST)
1003
Daniel Veillardb3de70c2003-12-02 22:32:15 +00001004if test "$with_pattern" = "no" ; then
1005 echo Disabling the xmlPattern parsing interface
1006 WITH_PATTERN=0
Daniel Veillardf9d16912005-01-30 22:36:30 +00001007 TEST_PATTERN=
Daniel Veillardb3de70c2003-12-02 22:32:15 +00001008else
1009 WITH_PATTERN=1
Daniel Veillardf9d16912005-01-30 22:36:30 +00001010 TEST_PATTERN=Patterntests
Daniel Veillardb3de70c2003-12-02 22:32:15 +00001011fi
1012AC_SUBST(WITH_PATTERN)
Daniel Veillardf9d16912005-01-30 22:36:30 +00001013AC_SUBST(TEST_PATTERN)
Daniel Veillardb3de70c2003-12-02 22:32:15 +00001014
Daniel Veillard81273902003-09-30 00:43:48 +00001015if test "$with_sax1" = "no" ; then
1016 echo Disabling the older SAX1 interface
1017 WITH_SAX1=0
1018 TEST_SAX=
1019else
1020 WITH_SAX1=1
1021 TEST_SAX=SAXtests
1022fi
1023AC_SUBST(WITH_SAX1)
1024AC_SUBST(TEST_SAX)
1025
Daniel Veillard73b013f2003-09-30 12:36:01 +00001026if test "$with_push" = "no" ; then
1027 echo Disabling the PUSH parser interfaces
1028 WITH_PUSH=0
1029 TEST_PUSH=
1030else
1031 WITH_PUSH=1
1032 TEST_PUSH="XMLPushtests"
1033fi
1034AC_SUBST(WITH_PUSH)
1035AC_SUBST(TEST_PUSH)
1036
Daniel Veillard73b013f2003-09-30 12:36:01 +00001037if test "$with_html" = "no" ; then
1038 echo Disabling HTML support
1039 WITH_HTML=0
1040 HTML_OBJ=
1041 TEST_HTML=
1042else
1043 WITH_HTML=1
1044 HTML_OBJ="HTMLparser.o HTMLtree.o"
1045 TEST_HTML=HTMLtests
William M. Brack871611b2003-10-18 04:53:14 +00001046 if test "$with_push" != "no" ; then
Daniel Veillard73b013f2003-09-30 12:36:01 +00001047 TEST_PHTML=HTMLPushtests
1048 else
1049 TEST_PHTML=
1050 fi
1051fi
1052AC_SUBST(WITH_HTML)
1053AC_SUBST(HTML_OBJ)
1054AC_SUBST(TEST_HTML)
1055AC_SUBST(TEST_PHTML)
1056
Daniel Veillard73b013f2003-09-30 12:36:01 +00001057if test "$with_valid" = "no" ; then
Daniel Veillard4432df22003-09-28 18:58:27 +00001058 echo Disabling DTD validation support
1059 WITH_VALID=0
1060 TEST_VALID=
1061 TEST_VTIME=
1062else
1063 WITH_VALID=1
1064 TEST_VALID=Validtests
1065 TEST_VTIME=VTimingtests
1066fi
1067AC_SUBST(WITH_VALID)
1068AC_SUBST(TEST_VALID)
1069AC_SUBST(TEST_VTIME)
Daniel Veillard361d8452000-04-03 19:48:13 +00001070
Daniel Veillarda7374592001-05-10 14:17:55 +00001071if test "$with_catalog" = "no" ; then
1072 echo Disabling Catalog support
1073 WITH_CATALOG=0
1074 CATALOG_OBJ=
Daniel Veillard4432df22003-09-28 18:58:27 +00001075 TEST_CATALOG=
Daniel Veillarda7374592001-05-10 14:17:55 +00001076else
1077 WITH_CATALOG=1
1078 CATALOG_OBJ="catalog.o"
Daniel Veillard4432df22003-09-28 18:58:27 +00001079 TEST_CATALOG=Catatests
Daniel Veillarda7374592001-05-10 14:17:55 +00001080fi
1081AC_SUBST(WITH_CATALOG)
1082AC_SUBST(CATALOG_OBJ)
Daniel Veillard4432df22003-09-28 18:58:27 +00001083AC_SUBST(TEST_CATALOG)
Daniel Veillarda7374592001-05-10 14:17:55 +00001084
Daniel Veillardb59076b2001-04-29 17:04:07 +00001085if test "$with_docbook" = "no" ; then
1086 echo Disabling Docbook support
Daniel Veillardeae522a2001-04-23 13:41:34 +00001087 WITH_DOCB=0
1088 DOCB_OBJ=
Daniel Veillardb59076b2001-04-29 17:04:07 +00001089else
1090 WITH_DOCB=1
1091 DOCB_OBJ="DOCBparser.o"
Daniel Veillardeae522a2001-04-23 13:41:34 +00001092fi
1093AC_SUBST(WITH_DOCB)
1094AC_SUBST(DOCB_OBJ)
1095
1096
William M. Brack21e4ef22005-01-02 09:53:13 +00001097if test "$with_xptr" = "no" ; then
1098 echo Disabling XPointer support
1099 WITH_XPTR=0
1100 XPTR_OBJ=
1101 TEST_XPTR=
1102else
1103 WITH_XPTR=1
1104 XPTR_OBJ=xpointer.o
1105 TEST_XPTR=XPtrtests
1106 if test "$with_xpath" = "no" ; then
1107 echo XPointer requires XPath support - enabling it
1108 with_xpath=yes
1109 fi
Daniel Veillard4432df22003-09-28 18:58:27 +00001110fi
William M. Brack21e4ef22005-01-02 09:53:13 +00001111AC_SUBST(WITH_XPTR)
1112AC_SUBST(XPTR_OBJ)
1113AC_SUBST(TEST_XPTR)
1114
1115if test "$with_c14n" = "no" ; then
1116 echo Disabling C14N support
1117 WITH_C14N=0
1118 C14N_OBJ=
1119 TEST_C14N=
1120else
1121 WITH_C14N=1
1122 C14N_OBJ="c14n.c"
1123 TEST_C14N=C14Ntests
1124 if test "$with_xpath" = "no" ; then
1125 echo C14N requires XPath support - enabling it
1126 with_xpath=yes
1127 fi
1128fi
1129AC_SUBST(WITH_C14N)
1130AC_SUBST(C14N_OBJ)
1131AC_SUBST(TEST_C14N)
1132
1133if test "$with_xinclude" = "no" ; then
1134 echo Disabling XInclude support
1135 WITH_XINCLUDE=0
1136 XINCLUDE_OBJ=
1137 with_xinclude="no"
1138 TEST_XINCLUDE=
1139else
1140 WITH_XINCLUDE=1
1141 XINCLUDE_OBJ=xinclude.o
1142 TEST_XINCLUDE=XIncludetests
1143 if test "$with_xpath" = "no" ; then
1144 echo XInclude requires XPath support - enabling it
1145 with_xpath=yes
1146 fi
1147fi
1148AC_SUBST(WITH_XINCLUDE)
1149AC_SUBST(XINCLUDE_OBJ)
1150AC_SUBST(TEST_XINCLUDE)
1151
Daniel Veillard361d8452000-04-03 19:48:13 +00001152if test "$with_xpath" = "no" ; then
1153 echo Disabling XPATH support
1154 WITH_XPATH=0
1155 XPATH_OBJ=
Daniel Veillard4432df22003-09-28 18:58:27 +00001156 TEST_XPATH=
Daniel Veillard361d8452000-04-03 19:48:13 +00001157else
1158 WITH_XPATH=1
1159 XPATH_OBJ=xpath.o
Daniel Veillard4432df22003-09-28 18:58:27 +00001160 TEST_XPATH=XPathtests
Daniel Veillard361d8452000-04-03 19:48:13 +00001161fi
1162AC_SUBST(WITH_XPATH)
1163AC_SUBST(XPATH_OBJ)
Daniel Veillard4432df22003-09-28 18:58:27 +00001164AC_SUBST(TEST_XPATH)
Daniel Veillard361d8452000-04-03 19:48:13 +00001165
William M. Brack21e4ef22005-01-02 09:53:13 +00001166dnl
1167dnl output functions
1168dnl
1169if test "$with_output" = "no" ; then
1170 echo Disabling serialization/saving support
1171 WITH_OUTPUT=0
Daniel Veillardc8df0aa2000-10-10 23:50:30 +00001172else
William M. Brack21e4ef22005-01-02 09:53:13 +00001173 WITH_OUTPUT=1
Daniel Veillardc8df0aa2000-10-10 23:50:30 +00001174fi
William M. Brack21e4ef22005-01-02 09:53:13 +00001175AC_SUBST(WITH_OUTPUT)
Daniel Veillard9e8bfae2000-11-06 16:43:11 +00001176
Daniel Veillard6e90d192001-07-03 16:37:49 +00001177WITH_ICONV=0
Daniel Veillard496a1cf2000-05-03 14:20:55 +00001178if test "$with_iconv" = "no" ; then
1179 echo Disabling ICONV support
Daniel Veillardd574f782001-03-14 19:40:17 +00001180else
Daniel Veillard220346d2001-12-07 11:33:54 +00001181 if test "$with_iconv" != "yes" -a "$with_iconv" != "" ; then
Daniel Veillard6e90d192001-07-03 16:37:49 +00001182 CPPFLAGS="${CPPFLAGS} -I$with_iconv/include"
Daniel Veillardf5b44e42001-09-17 17:19:54 +00001183 # Export this since our headers include iconv.h
1184 XML_INCLUDEDIR="${XML_INCLUDEDIR} -I$with_iconv/include"
Daniel Veillard6e90d192001-07-03 16:37:49 +00001185 ICONV_LIBS="-L$with_iconv/lib"
Daniel Veillard496a1cf2000-05-03 14:20:55 +00001186 fi
Daniel Veillard6e90d192001-07-03 16:37:49 +00001187
1188 AC_CHECK_HEADER(iconv.h,
1189 AC_MSG_CHECKING(for iconv)
1190 AC_TRY_LINK([#include <stdlib.h>
1191#include <iconv.h>],[
1192iconv_t cd = iconv_open ("","");
1193iconv (cd, NULL, NULL, NULL, NULL);],[
1194 AC_MSG_RESULT(yes)
1195 WITH_ICONV=1],[
1196 AC_MSG_RESULT(no)
1197 AC_MSG_CHECKING(for iconv in -liconv)
1198
1199 _ldflags="${LDFLAGS}"
1200 _libs="${LIBS}"
1201 LDFLAGS="${LDFLAGS} ${ICONV_LIBS}"
1202 LIBS="${LIBS} -liconv"
1203
1204 AC_TRY_LINK([#include <stdlib.h>
1205#include <iconv.h>],[
1206iconv_t cd = iconv_open ("","");
1207iconv (cd, NULL, NULL, NULL, NULL);],[
1208 AC_MSG_RESULT(yes)
1209 WITH_ICONV=1
1210 ICONV_LIBS="${ICONV_LIBS} -liconv"
1211 LIBS="${_libs}"
1212 LDFLAGS="${_ldflags}"],[
1213 AC_MSG_RESULT(no)
1214 LIBS="${_libs}"
1215 LDFLAGS="${_ldflags}"])]))
1216fi
Daniel Veillard6984e6d2003-12-09 14:20:17 +00001217case "$host" in
1218 *mingw*) M_LIBS=""
1219 ;;
Daniel Veillard7a3447a2005-01-04 14:31:14 +00001220 *beos*) M_LIBS=""
1221 ;;
Daniel Veillard6984e6d2003-12-09 14:20:17 +00001222 *) M_LIBS="-lm"
1223 ;;
1224esac
Daniel Veillardb82c1662001-12-09 14:00:54 +00001225XML_LIBS="-lxml2 $Z_LIBS $THREAD_LIBS $ICONV_LIBS $M_LIBS $LIBS"
Daniel Veillard90d165b2003-09-01 20:33:13 +00001226XML_LIBTOOLLIBS="libxml2.la"
Daniel Veillard496a1cf2000-05-03 14:20:55 +00001227AC_SUBST(WITH_ICONV)
1228
Daniel Veillard01fc1a92003-07-30 15:12:01 +00001229WITH_ISO8859X=1
Daniel Veillard01fc1a92003-07-30 15:12:01 +00001230if test "$WITH_ICONV" != "1" ; then
1231if test "$with_iso8859x" = "no" ; then
1232 echo Disabling ISO8859X support
1233 WITH_ISO8859X=0
1234fi
1235fi
1236AC_SUBST(WITH_ISO8859X)
1237
Daniel Veillarded6c5492005-07-23 15:00:22 +00001238if test "$with_schematron" = "no" ; then
1239 echo "Disabling Schematron support"
1240 WITH_SCHEMATRON=0
1241 TEST_SCHEMATRON=
1242else
1243 echo "Enabled Schematron support"
1244 WITH_SCHEMATRON=1
1245 TEST_SCHEMATRON="Schematrontests"
1246 with_xpath=yes
1247 with_pattern=yes
1248fi
1249AC_SUBST(WITH_SCHEMATRON)
1250AC_SUBST(TEST_SCHEMATRON)
1251
Daniel Veillardef4d3bc2003-02-07 12:38:22 +00001252if test "$with_schemas" = "no" ; then
William M. Brack21e4ef22005-01-02 09:53:13 +00001253 echo "Disabling Schemas/Relax-NG support"
Daniel Veillardef4d3bc2003-02-07 12:38:22 +00001254 WITH_SCHEMAS=0
1255 TEST_SCHEMAS=
1256else
Daniel Veillard71531f32003-02-05 13:19:53 +00001257 echo "Enabled Schemas/Relax-NG support"
Daniel Veillard4255d502002-04-16 15:50:10 +00001258 WITH_SCHEMAS=1
Daniel Veillard6eadf632003-01-23 18:29:16 +00001259 TEST_SCHEMAS="Schemastests Relaxtests"
Daniel Veillard6dc91962004-03-22 19:10:02 +00001260 if test "$PYTHON_INCLUDES" != "" ; then
1261 PYTHON_TESTS="$PYTHON_TESTS RelaxNGPythonTests SchemasPythonTests"
1262 fi
Daniel Veillard23e73572002-09-19 19:56:43 +00001263 with_regexps=yes
Daniel Veillard4255d502002-04-16 15:50:10 +00001264fi
1265AC_SUBST(WITH_SCHEMAS)
1266AC_SUBST(TEST_SCHEMAS)
1267
Daniel Veillard23e73572002-09-19 19:56:43 +00001268if test "$with_regexps" = "no" ; then
1269 echo Disabling Regexps support
1270 WITH_REGEXPS=0
1271 TEST_REGEXPS=
1272else
1273 WITH_REGEXPS=1
1274 TEST_REGEXPS="Regexptests Automatatests"
1275fi
1276AC_SUBST(WITH_REGEXPS)
1277AC_SUBST(TEST_REGEXPS)
1278
Daniel Veillard361d8452000-04-03 19:48:13 +00001279if test "$with_debug" = "no" ; then
1280 echo Disabling DEBUG support
1281 WITH_DEBUG=0
1282 DEBUG_OBJ=
Daniel Veillard4432df22003-09-28 18:58:27 +00001283 TEST_DEBUG=
Daniel Veillard361d8452000-04-03 19:48:13 +00001284else
1285 WITH_DEBUG=1
1286 DEBUG_OBJ=debugXML.o
Daniel Veillard4432df22003-09-28 18:58:27 +00001287 TEST_DEBUG=Scripttests
Daniel Veillard361d8452000-04-03 19:48:13 +00001288fi
1289AC_SUBST(WITH_DEBUG)
1290AC_SUBST(DEBUG_OBJ)
Daniel Veillard4432df22003-09-28 18:58:27 +00001291AC_SUBST(TEST_DEBUG)
Daniel Veillard361d8452000-04-03 19:48:13 +00001292
Daniel Veillard361d8452000-04-03 19:48:13 +00001293if test "$with_mem_debug" = "yes" ; then
William M. Brack306e33c2004-06-12 01:01:22 +00001294 if test "$with_thread_alloc" = "yes" ; then
1295 echo Disabling memory debug - cannot use mem-debug with thread-alloc!
1296 WITH_MEM_DEBUG=0
1297 else
1298 echo Enabling memory debug support
1299 WITH_MEM_DEBUG=1
1300 fi
Daniel Veillard361d8452000-04-03 19:48:13 +00001301else
1302 WITH_MEM_DEBUG=0
1303fi
1304AC_SUBST(WITH_MEM_DEBUG)
1305
Daniel Veillard22cdb842004-10-04 14:09:17 +00001306if test "$with_run_debug" = "yes" ; then
1307 echo Enabling runtime debug support
1308 WITH_RUN_DEBUG=1
1309else
1310 WITH_RUN_DEBUG=0
1311fi
1312AC_SUBST(WITH_RUN_DEBUG)
Daniel Veillard1638a472003-08-14 01:23:25 +00001313
1314WIN32_EXTRA_LIBADD=
1315WIN32_EXTRA_LDFLAGS=
William M. Bracka73f45b2005-01-11 02:21:33 +00001316CYGWIN_EXTRA_LDFLAGS=
1317CYGWIN_EXTRA_PYTHON_LIBADD=
Daniel Veillard1638a472003-08-14 01:23:25 +00001318case "$host" in
1319 *-*-mingw*)
Daniel Veillard6984e6d2003-12-09 14:20:17 +00001320 CPPFLAGS="$CPPFLAGS -DWIN32"
1321 WIN32_EXTRA_LIBADD="-lws2_32"
Daniel Veillard1638a472003-08-14 01:23:25 +00001322 WIN32_EXTRA_LDFLAGS="-no-undefined"
1323 AC_DEFINE([_WINSOCKAPI_],1,[Using the Win32 Socket implementation])
1324 AC_DEFINE([snprintf],[_snprintf],[Win32 Std C name mangling work-around])
1325 AC_DEFINE([vsnprintf],[_vsnprintf],[Win32 Std C name mangling work-around])
1326 ;;
Daniel Veillardd392ba72004-08-04 14:56:45 +00001327 *-*-cygwin*)
1328 CYGWIN_EXTRA_LDFLAGS="-no-undefined"
William M. Bracka73f45b2005-01-11 02:21:33 +00001329 if test "${PYTHON}" != ""
1330 then
1331 CYGWIN_EXTRA_PYTHON_LIBADD="-L/usr/lib/python${PYTHON_VERSION}/config -lpython${PYTHON_VERSION}"
1332 fi
Daniel Veillardd392ba72004-08-04 14:56:45 +00001333 ;;
Daniel Veillard1638a472003-08-14 01:23:25 +00001334esac
1335AC_SUBST(WIN32_EXTRA_LIBADD)
1336AC_SUBST(WIN32_EXTRA_LDFLAGS)
Daniel Veillardd392ba72004-08-04 14:56:45 +00001337AC_SUBST(CYGWIN_EXTRA_LDFLAGS)
1338AC_SUBST(CYGWIN_EXTRA_PYTHON_LIBADD)
Daniel Veillard1638a472003-08-14 01:23:25 +00001339
Daniel Veillard6984e6d2003-12-09 14:20:17 +00001340AC_SUBST(CPPFLAGS)
Daniel Veillardd7e200c1999-11-15 17:53:11 +00001341AC_SUBST(CFLAGS)
Daniel Veillardf5c2c871999-12-01 09:51:45 +00001342AC_SUBST(XML_CFLAGS)
Daniel Veillardd7e200c1999-11-15 17:53:11 +00001343
Daniel Veillardb05deb71999-08-10 19:04:08 +00001344AC_SUBST(XML_LIBDIR)
1345AC_SUBST(XML_LIBS)
Daniel Veillard90d165b2003-09-01 20:33:13 +00001346AC_SUBST(XML_LIBTOOLLIBS)
Daniel Veillard81418e32001-05-22 15:08:55 +00001347AC_SUBST(ICONV_LIBS)
Daniel Veillardb05deb71999-08-10 19:04:08 +00001348AC_SUBST(XML_INCLUDEDIR)
1349AC_SUBST(HTML_DIR)
1350AC_SUBST(HAVE_ISNAN)
1351AC_SUBST(HAVE_ISINF)
Daniel Veillardf1d0e6b2002-01-31 23:42:44 +00001352AC_SUBST(PYTHON)
1353AC_SUBST(PYTHON_VERSION)
1354AC_SUBST(PYTHON_INCLUDES)
Daniel Veillard253aa2c2002-02-02 09:17:16 +00001355AC_SUBST(PYTHON_SITE_PACKAGES)
Daniel Veillardb05deb71999-08-10 19:04:08 +00001356
Daniel Veillardb05deb71999-08-10 19:04:08 +00001357AC_SUBST(M_LIBS)
Daniel Veillard437b87b2000-01-03 17:30:46 +00001358AC_SUBST(RDL_LIBS)
Daniel Veillard361d8452000-04-03 19:48:13 +00001359
Daniel Veillard9715c172002-11-25 16:33:40 +00001360dnl for the spec file
1361RELDATE=`date +'%a %b %e %Y'`
1362AC_SUBST(RELDATE)
Daniel Veillard6dc91962004-03-22 19:10:02 +00001363AC_SUBST(PYTHON_TESTS)
Daniel Veillard9715c172002-11-25 16:33:40 +00001364
Daniel Veillardc6e997c2003-01-27 12:35:42 +00001365rm -f COPYING.LIB COPYING
Daniel Veillardc575b992002-02-08 13:28:40 +00001366ln -s Copyright COPYING
1367
Daniel Veillarde4177a52004-01-08 16:43:57 +00001368# keep on one line for cygwin c.f. #130896
Daniel Veillard99b78502005-09-11 22:04:08 +00001369AC_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 +00001370
Daniel Veillard06d25242004-02-25 13:01:42 +00001371chmod +x xml2-config python/setup.py
Daniel Veillard67952602006-01-05 15:29:44 +00001372echo Done configuring