blob: e34c3dd8f1905fbd94284b1a900c82f242a81473 [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 Veillard33a2de92006-10-11 08:33:22 +000043AC_PATH_PROG(WGET, wget, /usr/bin/wget)
Daniel Veillard8b817da2004-09-30 09:19:33 +000044AC_PATH_PROG(XMLLINT, xmllint, /usr/bin/xmllint)
Daniel Veillard06500c82004-09-07 09:12:44 +000045AC_PATH_PROG(XSLTPROC, xsltproc, /usr/bin/xsltproc)
Daniel Veillard01791d51998-07-24 19:24:09 +000046
Daniel Veillard03109292000-08-14 14:58:22 +000047dnl Make sure we have an ANSI compiler
48AM_C_PROTOTYPES
49test "x$U" != "x" && AC_MSG_ERROR(Compiler not ANSI compliant)
50
Daniel Veillard6984e6d2003-12-09 14:20:17 +000051AC_LIBTOOL_WIN32_DLL
Daniel Veillard01791d51998-07-24 19:24:09 +000052AM_PROG_LIBTOOL
53
Daniel Veillard4432df22003-09-28 18:58:27 +000054dnl
William M. Brack21e4ef22005-01-02 09:53:13 +000055dnl We process the AC_ARG_WITH first so that later we can modify
56dnl some of them to try to prevent impossible combinations. This
57dnl also allows up so alphabetize the choices
Daniel Veillard4432df22003-09-28 18:58:27 +000058dnl
Daniel Veillard4432df22003-09-28 18:58:27 +000059
William M. Brack21e4ef22005-01-02 09:53:13 +000060dnl
61dnl zlib option might change flags, so we save them initially
62dnl
Owen Taylor3473f882001-02-23 17:55:21 +000063_cppflags="${CPPFLAGS}"
64_ldflags="${LDFLAGS}"
Daniel Veillard71b656e2000-01-05 14:46:17 +000065
William M. Brack21e4ef22005-01-02 09:53:13 +000066AC_ARG_WITH(c14n,
67[ --with-c14n add the Canonicalization support (on)])
68AC_ARG_WITH(catalog,
69[ --with-catalog add the Catalog support (on)])
70AC_ARG_WITH(debug,
71[ --with-debug add the debugging module (on)])
72AC_ARG_WITH(docbook,
73[ --with-docbook add Docbook SGML support (on)])
74AC_ARG_WITH(fexceptions,
75[ --with-fexceptions add GCC flag -fexceptions for C++ exceptions (off)])
76AC_ARG_WITH(ftp,
77[ --with-ftp add the FTP support (on)])
78AC_ARG_WITH(history,
79[ --with-history add history support to xmllint shell(off)])
80AC_ARG_WITH(html,
81[ --with-html add the HTML support (on)])
82dnl Specific dir for HTML output ?
83AC_ARG_WITH(html-dir, AC_HELP_STRING([--with-html-dir=path],
84 [path to base html directory, default $datadir/doc/html]),
85 [HTML_DIR=$withval], [HTML_DIR='$(datadir)/doc'])
Daniel Veillard259ff742001-10-06 13:49:59 +000086
William M. Brack21e4ef22005-01-02 09:53:13 +000087AC_ARG_WITH(html-subdir, AC_HELP_STRING([--with-html-subdir=path],
88 [directory used under html-dir, default $PACKAGE-$VERSION/html]),
89 [test "x$withval" != "x" && HTML_DIR="$HTML_DIR/$withval"],
90 [HTML_DIR="$HTML_DIR/\$(PACKAGE)-\$(VERSION)/html"])
91AC_SUBST(HTML_DIR)
92AC_ARG_WITH(http,
93[ --with-http add the HTTP support (on)])
94AC_ARG_WITH(iconv,
95[ --with-iconv[[=DIR]] add ICONV support (on)])
96AC_ARG_WITH(iso8859x,
97[ --with-iso8859x add ISO8859X support if no iconv (on)])
98AC_ARG_WITH(legacy,
99[ --with-legacy add deprecated APIs for compatibility (on)])
100AC_ARG_WITH(mem_debug,
101[ --with-mem-debug add the memory debugging module (off)])
102AC_ARG_WITH(minimum,
103[ --with-minimum build a minimally sized library (off)])
104AC_ARG_WITH(output,
105[ --with-output add the serialization support (on)])
106AC_ARG_WITH(pattern,
107[ --with-pattern add the xmlPattern selection interface (on)])
108AC_ARG_WITH(push,
109[ --with-push add the PUSH parser interfaces (on)])
110AC_ARG_WITH(python,
111[ --with-python[[=DIR]] build Python bindings if found])
112AC_ARG_WITH(reader,
113[ --with-reader add the xmlReader parsing interface (on)])
114AC_ARG_WITH(readline,
115[ --with-readline=DIR use readline in DIR],[
116 if test "$withval" != "no" -a "$withval" != "yes"; then
117 RDL_DIR=$withval
118 CPPFLAGS="${CPPFLAGS} -I$withval/include"
119 LDFLAGS="${LDFLAGS} -L$withval/lib"
120 fi
121])
122AC_ARG_WITH(regexps,
123[ --with-regexps add Regular Expressions support (on)])
124AC_ARG_WITH(run_debug,
125[ --with-run-debug add the runtime debugging module (off)])
126AC_ARG_WITH(sax1,
127[ --with-sax1 add the older SAX1 interface (on)])
128AC_ARG_WITH(schemas,
Daniel Veillard39e5c892005-07-03 22:48:50 +0000129[ --with-schemas add Relax-NG and Schemas support (on)])
Daniel Veillarded6c5492005-07-23 15:00:22 +0000130AC_ARG_WITH(schematron,
131[ --with-schematron add Schematron support (on)])
William M. Brack21e4ef22005-01-02 09:53:13 +0000132AC_ARG_WITH(threads,
133[ --with-threads add multithread support(on)])
134AC_ARG_WITH(thread-alloc,
135[ --with-thread-alloc add per-thread memory(off)])
136AC_ARG_WITH(tree,
137[ --with-tree add the DOM like tree manipulation APIs (on)])
138AC_ARG_WITH(valid,
139[ --with-valid add the DTD validation support (on)])
140AC_ARG_WITH(writer,
141[ --with-writer add the xmlWriter saving interface (on)])
142AC_ARG_WITH(xinclude,
143[ --with-xinclude add the XInclude support (on)])
144AC_ARG_WITH(xpath,
145[ --with-xpath add the XPATH support (on)])
146AC_ARG_WITH(xptr,
147[ --with-xptr add the XPointer support (on)])
Daniel Veillardf6b71bd2005-01-04 17:50:14 +0000148AC_ARG_WITH(modules,
149[ --with-modules add the dynamic modules support (on)])
Owen Taylor3473f882001-02-23 17:55:21 +0000150AC_ARG_WITH(zlib,
William M. Brack97ad4c72003-05-13 08:08:36 +0000151[ --with-zlib[[=DIR]] use libz in DIR],[
Owen Taylor3473f882001-02-23 17:55:21 +0000152 if test "$withval" != "no" -a "$withval" != "yes"; then
153 Z_DIR=$withval
154 CPPFLAGS="${CPPFLAGS} -I$withval/include"
155 LDFLAGS="${LDFLAGS} -L$withval/lib"
156 fi
Daniel Veillard259ff742001-10-06 13:49:59 +0000157])
William M. Brack21e4ef22005-01-02 09:53:13 +0000158
159dnl
Daniel Veillard39e5c892005-07-03 22:48:50 +0000160dnl hard dependancies on options
161dnl
162if test "$with_schemas" = "yes"
163then
164 with_pattern=yes
165 with_regexp=yes
166fi
Daniel Veillarded6c5492005-07-23 15:00:22 +0000167if test "$with_schematron" = "yes"
168then
169 with_pattern=yes
170 with_xpath=yes
171fi
Daniel Veillard39e5c892005-07-03 22:48:50 +0000172if test "$with_reader" = "yes"
173then
174 with_push=yes
175fi
176if test "$with_xptr" = "yes"
177then
178 with_xpath=yes
179fi
180dnl
William M. Brack21e4ef22005-01-02 09:53:13 +0000181dnl option to build a minimal libxml2 library
182dnl
183if test "$with_minimum" = "yes"
Daniel Veillard4432df22003-09-28 18:58:27 +0000184then
William M. Brack21e4ef22005-01-02 09:53:13 +0000185 echo "Configuring for a minimal library"
186 if test "$with_c14n" = ""
187 then
188 with_c14n=no
189 fi
190 if test "$with_catalog" = ""
191 then
192 with_catalog=no
193 fi
194 echo So far so good!
195 if test "$with_debug" = ""
196 then
197 with_debug=no
198 fi
199 if test "$with_docbook" = ""
200 then
201 with_docbook=no
202 fi
203 if test "$with_fexceptions" = ""
204 then
205 with_fexceptions=no
206 fi
207 if test "$with_ftp" = ""
208 then
209 with_ftp=no
210 fi
211 if test "$with_history" = ""
212 then
213 with_history=no
214 fi
215 if test "$with_html" = ""
216 then
217 with_html=no
218 fi
219 if test "$with_http" = ""
220 then
221 with_http=no
222 fi
223 if test "$with_iconv" = ""
224 then
225 with_iconv=no
226 fi
227 if test "$with_iso8859x" = ""
228 then
229 with_iso8859x=no
230 fi
231 if test "$with_legacy" = ""
232 then
233 with_legacy=no
234 fi
235 if test "$with_mem_debug" = ""
236 then
237 with_mem_debug=no
238 fi
239 if test "$with_output" = ""
240 then
241 with_output=no
242 fi
243 if test "$with_pattern" = ""
244 then
245 with_pattern=no
246 fi
247 if test "$with_push" = ""
248 then
249 with_push=no
250 fi
251 if test "$with_python" = ""
252 then
253 with_python=no
254 fi
255 if test "$with_reader" = ""
256 then
257 with_reader=no
258 fi
259 if test "$with_readline" = ""
260 then
261 with_readline=no
262 fi
263 if test "$with_regexp" = ""
264 then
265 with_regexp=no
266 fi
267 if test "$with_run_debug" = ""
268 then
269 with_run_debug=no
270 fi
271 if test "$with_sax1" = ""
272 then
273 with_sax1=no
274 fi
275 if test "$with_schemas" = ""
276 then
277 with_schemas=no
278 fi
Daniel Veillarded6c5492005-07-23 15:00:22 +0000279 if test "$with_schematron" = ""
280 then
281 with_schematron=no
282 fi
William M. Brack21e4ef22005-01-02 09:53:13 +0000283 if test "$with_threads" = ""
284 then
285 with_threads=no
286 fi
287 if test "$with_thread_alloc" = ""
288 then
289 with_thread_alloc=no
290 fi
291 if test "$with_tree" = ""
292 then
293 with_tree=no
294 fi
295 if test "$with_valid" = ""
296 then
297 with_valid=no
298 fi
299 if test "$with_writer" = ""
300 then
301 with_writer=no
302 fi
303 if test "$with_xinclude" = ""
304 then
305 with_xinclude=no
306 fi
307 if test "$with_xpath" = ""
308 then
309 with_xpath=no
310 fi
311 if test "$with_xptr" = ""
312 then
313 with_xptr=no
314 fi
315 if test "$with_zlib" = ""
316 then
317 with_zlib=no
318 fi
Daniel Veillardf6b71bd2005-01-04 17:50:14 +0000319 if test "$with_modules" = ""
320 then
321 with_modules=no
322 fi
Daniel Veillard4432df22003-09-28 18:58:27 +0000323fi
William M. Brack21e4ef22005-01-02 09:53:13 +0000324
325echo Checking zlib
326
327dnl Checks for zlib library.
328
Daniel Veillard75acfee2006-07-13 06:29:56 +0000329WITH_ZLIB=0
Daniel Veillard259ff742001-10-06 13:49:59 +0000330if test "$with_zlib" = "no"; then
331 echo "Disabling compression support"
332else
Daniel Veillard3fbe8e32001-10-06 13:30:33 +0000333 AC_CHECK_HEADERS(zlib.h,
334 AC_CHECK_LIB(z, gzread,[
Daniel Veillard75acfee2006-07-13 06:29:56 +0000335 AC_DEFINE([HAVE_LIBZ], [1], [Have compression library])
336 WITH_ZLIB=1
Daniel Veillard3fbe8e32001-10-06 13:30:33 +0000337 if test "x${Z_DIR}" != "x"; then
338 Z_CFLAGS="-I${Z_DIR}/include"
339 Z_LIBS="-L${Z_DIR}/lib -lz"
340 [case ${host} in
341 *-*-solaris*)
342 Z_LIBS="-L${Z_DIR}/lib -R${Z_DIR}/lib -lz"
343 ;;
344 esac]
345 else
346 Z_LIBS="-lz"
347 fi]))
Daniel Veillard259ff742001-10-06 13:49:59 +0000348fi
Owen Taylor3473f882001-02-23 17:55:21 +0000349
Owen Taylor3473f882001-02-23 17:55:21 +0000350AC_SUBST(Z_CFLAGS)
351AC_SUBST(Z_LIBS)
Daniel Veillard75acfee2006-07-13 06:29:56 +0000352AC_SUBST(WITH_ZLIB)
Owen Taylor3473f882001-02-23 17:55:21 +0000353
354CPPFLAGS=${_cppflags}
355LDFLAGS=${_ldflags}
Daniel Veillardb05deb71999-08-10 19:04:08 +0000356
William M. Brack21e4ef22005-01-02 09:53:13 +0000357echo Checking headers
358
Daniel Veillard01791d51998-07-24 19:24:09 +0000359dnl Checks for header files.
360AC_HEADER_DIRENT
361AC_HEADER_STDC
Daniel Veillard817e70b2002-11-19 22:28:48 +0000362AC_CHECK_HEADERS([fcntl.h])
363AC_CHECK_HEADERS([unistd.h])
364AC_CHECK_HEADERS([ctype.h])
365AC_CHECK_HEADERS([dirent.h])
366AC_CHECK_HEADERS([errno.h])
367AC_CHECK_HEADERS([malloc.h])
368AC_CHECK_HEADERS([stdarg.h])
369AC_CHECK_HEADERS([sys/stat.h])
370AC_CHECK_HEADERS([sys/types.h])
371AC_CHECK_HEADERS([time.h])
372AC_CHECK_HEADERS([ansidecl.h])
373AC_CHECK_HEADERS([ieeefp.h])
374AC_CHECK_HEADERS([nan.h])
375AC_CHECK_HEADERS([math.h])
Daniel Veillardebe48c62003-12-03 12:12:27 +0000376AC_CHECK_HEADERS([limits.h])
Daniel Veillard817e70b2002-11-19 22:28:48 +0000377AC_CHECK_HEADERS([fp_class.h])
378AC_CHECK_HEADERS([float.h])
379AC_CHECK_HEADERS([stdlib.h])
380AC_CHECK_HEADERS([sys/socket.h], [], [],
381[#if HAVE_SYS_TYPES_H
382# include <sys/types.h>
383# endif
384])
385AC_CHECK_HEADERS([netinet/in.h], [], [],
386[#if HAVE_SYS_TYPES_H
387# include <sys/types.h>
388# endif
389])
390AC_CHECK_HEADERS([arpa/inet.h], [], [],
391[#if HAVE_SYS_TYPES_H
392# include <sys/types.h>
393# endif
394#if HAVE_ARPA_INET_H
395# include <arpa/inet.h>
396# endif
397])
398AC_CHECK_HEADERS([netdb.h])
399AC_CHECK_HEADERS([sys/time.h])
400AC_CHECK_HEADERS([sys/select.h])
401AC_CHECK_HEADERS([sys/mman.h])
402AC_CHECK_HEADERS([sys/timeb.h])
403AC_CHECK_HEADERS([signal.h])
404AC_CHECK_HEADERS([arpa/nameser.h], [], [],
405[#if HAVE_SYS_TYPES_H
406# include <sys/types.h>
407# endif
408])
409AC_CHECK_HEADERS([resolv.h], [], [],
410[#if HAVE_SYS_TYPES_H
411# include <sys/types.h>
412# endif
413#if HAVE_NETINET_IN_H
414# include <netinet/in.h>
415# endif
416#if HAVE_ARPA_NAMESER_H
417# include <arpa/nameser.h>
418# endif
419])
Daniel Veillarddcd93902005-01-13 11:25:15 +0000420AC_CHECK_HEADERS([dl.h])
421AC_CHECK_HEADERS([dlfcn.h])
Daniel Veillard01791d51998-07-24 19:24:09 +0000422
Daniel Veillardfc979062004-03-04 22:07:16 +0000423
William M. Brack21e4ef22005-01-02 09:53:13 +0000424echo Checking libraries
Daniel Veillard1164e751999-02-16 16:29:17 +0000425
Daniel Veillard01791d51998-07-24 19:24:09 +0000426dnl Checks for library functions.
427AC_FUNC_STRFTIME
Daniel Veillard92ad2102001-03-27 12:47:33 +0000428AC_CHECK_FUNCS(strdup strndup strerror)
Daniel Veillard71b656e2000-01-05 14:46:17 +0000429AC_CHECK_FUNCS(finite isnand fp_class class fpclass)
Daniel Veillard90bc3712002-03-07 15:12:58 +0000430AC_CHECK_FUNCS(strftime localtime gettimeofday ftime)
Daniel Veillard068a9652001-06-07 15:30:26 +0000431AC_CHECK_FUNCS(stat _stat signal)
Daniel Veillard7f7d1111999-09-22 09:46:25 +0000432
Daniel Veillard92ad2102001-03-27 12:47:33 +0000433dnl Checking the standard string functions availability
434AC_CHECK_FUNCS(printf sprintf fprintf snprintf vfprintf vsprintf vsnprintf sscanf,,
435 NEED_TRIO=1)
436
William M. Brackf4caa5e2005-10-20 09:04:05 +0000437dnl Checking for va_copy availability
438AC_MSG_CHECKING([for va_copy])
439AC_TRY_LINK([#include <stdarg.h>
440va_list ap1,ap2;], [va_copy(ap1,ap2);],
441have_va_copy=yes,
442have_va_copy=no)
443AC_MSG_RESULT($have_va_copy)
444if test x"$have_va_copy" = x"yes"; then
445 AC_DEFINE(HAVE_VA_COPY,1,[Whether va_copy() is available])
446else
447 AC_MSG_CHECKING([for __va_copy])
448 AC_TRY_LINK([#include <stdarg.h>
449 va_list ap1,ap2;], [__va_copy(ap1,ap2);],
450 have___va_copy=yes,
451 have___va_copy=no)
452 AC_MSG_RESULT($have___va_copy)
453 if test x"$have___va_copy" = x"yes"; then
454 AC_DEFINE(HAVE___VA_COPY,1,[Whether __va_copy() is available])
455 fi
456fi
457
Daniel Veillard7f7d1111999-09-22 09:46:25 +0000458dnl Checks for inet libraries:
Daniel Veillardd4e39ae2005-10-28 15:59:14 +0000459AC_SEARCH_LIBS(gethostent, [nsl])
460AC_SEARCH_LIBS(setsockopt, [socket net])
461AC_SEARCH_LIBS(connect, [inet])
Daniel Veillardb05deb71999-08-10 19:04:08 +0000462
Daniel Veillardb0426ca2000-10-11 23:39:43 +0000463dnl Determine what socket length (socklen_t) data type is
464AC_MSG_CHECKING([for type of socket length (socklen_t)])
465AC_TRY_COMPILE2([
466#include <stddef.h>
467#include <sys/types.h>
468#include <sys/socket.h>],[
469(void)getsockopt (1, 1, 1, NULL, (socklen_t *)NULL)],[
470 AC_MSG_RESULT(socklen_t *)
Daniel Veillardc284c642005-03-31 10:24:24 +0000471 XML_SOCKLEN_T=socklen_t],[
Daniel Veillardb0426ca2000-10-11 23:39:43 +0000472 AC_TRY_COMPILE2([
473#include <stddef.h>
474#include <sys/types.h>
475#include <sys/socket.h>],[
476(void)getsockopt (1, 1, 1, NULL, (size_t *)NULL)],[
477 AC_MSG_RESULT(size_t *)
Daniel Veillardc284c642005-03-31 10:24:24 +0000478 XML_SOCKLEN_T=size_t],[
Daniel Veillardb0426ca2000-10-11 23:39:43 +0000479 AC_TRY_COMPILE2([
480#include <stddef.h>
481#include <sys/types.h>
482#include <sys/socket.h>],[
483(void)getsockopt (1, 1, 1, NULL, (int *)NULL)],[
484 AC_MSG_RESULT(int *)
Daniel Veillardc284c642005-03-31 10:24:24 +0000485 XML_SOCKLEN_T=int],[
William M. Brack2e6b1432004-02-09 15:10:28 +0000486 AC_MSG_WARN(could not determine)
Daniel Veillardc284c642005-03-31 10:24:24 +0000487 XML_SOCKLEN_T="int"])])])
488AC_DEFINE_UNQUOTED(XML_SOCKLEN_T, $XML_SOCKLEN_T, [Determine what socket length (socklen_t) data type is])
Daniel Veillardb0426ca2000-10-11 23:39:43 +0000489
Daniel Veillardde2a67b2003-06-21 14:20:04 +0000490dnl ***********************Checking for availability of IPv6*******************
491
492AC_MSG_CHECKING([whether to enable IPv6])
William M. Brack21e4ef22005-01-02 09:53:13 +0000493AC_ARG_ENABLE(ipv6, [ --enable-ipv6[[=yes/no]] enables compilation of IPv6 code [[default=yes]]],, enable_ipv6=yes)
Daniel Veillard4432df22003-09-28 18:58:27 +0000494if test "$with_minimum" = "yes"
495then
496 enable_ipv6=no
497fi
Daniel Veillardde2a67b2003-06-21 14:20:04 +0000498if test $enable_ipv6 = yes; then
499 have_ipv6=no
500 AC_TRY_COMPILE([
501 #include <sys/socket.h>
502 #include <sys/types.h>], [
503 struct sockaddr_storage ss;
504 socket(AF_INET6, SOCK_STREAM, 0)
505 ],
506 have_ipv6=yes,
507 have_ipv6=no
508 )
509 AC_MSG_RESULT($have_ipv6)
510
William M. Brack476cd962003-08-13 11:09:42 +0000511 if test $have_ipv6 = yes; then
Daniel Veillardc790bf42003-10-11 10:50:10 +0000512 AC_DEFINE([SUPPORT_IP6], [], [Support for IPv6])
Dodji Seketeli8eba3f32004-11-09 18:30:30 +0000513 have_broken_ss_family=no
514
515 dnl *********************************************************************
516 dnl on some platforms (like AIX 5L), the structure sockaddr doesn't have
517 dnl a ss_family member, but rather __ss_family. Let's detect that
William M. Brack7d8b36b2005-06-25 07:30:50 +0000518 dnl and define the HAVE_BROKEN_SS_FAMILY when we are on one of these
519 dnl platforms. However, we should only do this if ss_family is not
520 dnl present.
Dodji Seketeli8eba3f32004-11-09 18:30:30 +0000521 dnl ********************************************************************
William M. Brack7d8b36b2005-06-25 07:30:50 +0000522 AC_MSG_CHECKING([struct sockaddr::ss_family])
Dodji Seketeli8eba3f32004-11-09 18:30:30 +0000523 AC_TRY_COMPILE([
524 #include <sys/socket.h>
525 #include <sys/types.h>], [
526 struct sockaddr_storage ss ;
William M. Brack7d8b36b2005-06-25 07:30:50 +0000527 ss.ss_family = 0 ;
Dodji Seketeli8eba3f32004-11-09 18:30:30 +0000528 ],
William M. Brack7d8b36b2005-06-25 07:30:50 +0000529 have_ss_family=yes,
530 have_ss_family=no
Dodji Seketeli8eba3f32004-11-09 18:30:30 +0000531 )
William M. Brack7d8b36b2005-06-25 07:30:50 +0000532 AC_MSG_RESULT($have_ss_family)
533 if test x$have_ss_family = xno ; then
534 AC_MSG_CHECKING([broken struct sockaddr::ss_family])
535 AC_TRY_COMPILE([
536 #include <sys/socket.h>
537 #include <sys/types.h>], [
538 struct sockaddr_storage ss ;
539 ss.__ss_family = 0 ;
540 ],
541 have_broken_ss_family=yes,
542 have_broken_ss_family=no
543 )
544 AC_MSG_RESULT($have_broken_ss_family)
545 if test x$have_broken_ss_family = xyes ; then
546 AC_DEFINE(HAVE_BROKEN_SS_FAMILY, [],
547 [Whether struct sockaddr::__ss_family exists])
548 AC_DEFINE(ss_family, __ss_family,
549 [ss_family is not defined here, use __ss_family instead])
550 else
551 AC_MSG_WARN(ss_family and __ss_family not found)
552 fi
Dodji Seketeli8eba3f32004-11-09 18:30:30 +0000553 fi
Daniel Veillardde2a67b2003-06-21 14:20:04 +0000554
555 have_getaddrinfo=no
556 AC_CHECK_FUNC(getaddrinfo, have_getaddrinfo=yes)
557 if test $have_getaddrinfo != yes; then
558 for lib in bsd socket inet; do
559 AC_CHECK_LIB($lib, getaddrinfo, [LIBS="$LIBS -l$lib";have_getaddrinfo=yes;break])
560 done
561 fi
562
William M. Brack476cd962003-08-13 11:09:42 +0000563 if test $have_getaddrinfo = yes; then
Daniel Veillardc790bf42003-10-11 10:50:10 +0000564 AC_DEFINE([HAVE_GETADDRINFO], [], [Define if getaddrinfo is there])
Daniel Veillardde2a67b2003-06-21 14:20:04 +0000565 fi
566 fi
567fi
568
569dnl ******************************End IPv6 checks******************************
570
Daniel Veillardb05deb71999-08-10 19:04:08 +0000571dnl Checks for isnan in libm if not in libc
Daniel Veillard6984e6d2003-12-09 14:20:17 +0000572AC_CHECK_FUNC(isnan, AC_DEFINE([HAVE_ISNAN],[], [Define if isnan is there]) , AC_CHECK_LIB(m, isnan,
Daniel Veillardc790bf42003-10-11 10:50:10 +0000573 [AC_DEFINE([HAVE_ISNAN],[], [Define if isnan is there])]))
Daniel Veillardb05deb71999-08-10 19:04:08 +0000574
Daniel Veillardc790bf42003-10-11 10:50:10 +0000575AC_CHECK_FUNC(isinf, AC_DEFINE([HAVE_ISINF], [], [Define if isinf is there]) , AC_CHECK_LIB(m, isinf,
576 [AC_DEFINE([HAVE_ISINF], [], [Define if isinf is there])]))
Daniel Veillardb05deb71999-08-10 19:04:08 +0000577
578XML_LIBDIR='-L${libdir}'
Daniel Veillarde7dd2b82002-03-15 18:44:02 +0000579XML_INCLUDEDIR='-I${includedir}/libxml2'
Daniel Veillardb05deb71999-08-10 19:04:08 +0000580
Daniel Veillardd7e200c1999-11-15 17:53:11 +0000581dnl
Daniel Veillardf5c2c871999-12-01 09:51:45 +0000582dnl Extra flags
583dnl
584XML_CFLAGS=""
Daniel Veillard357c9602001-05-03 10:49:20 +0000585RDL_LIBS=""
Daniel Veillardf5c2c871999-12-01 09:51:45 +0000586
587dnl
Daniel Veillardb45c43b2001-04-28 17:02:11 +0000588dnl Workaround for native compilers
589dnl HP : http://bugs.gnome.org/db/31/3163.html
590dnl DEC : Enable NaN/Inf
Daniel Veillardd7e200c1999-11-15 17:53:11 +0000591dnl
Daniel Veillard03109292000-08-14 14:58:22 +0000592if test "${GCC}" != "yes" ; then
Daniel Veillardd7e200c1999-11-15 17:53:11 +0000593 case "${host}" in
Daniel Veillard6a0baa02005-12-10 11:11:12 +0000594 hppa*-*-hpux* )
Daniel Veillard03109292000-08-14 14:58:22 +0000595 CFLAGS="${CFLAGS} -Wp,-H30000"
Daniel Veillardd7e200c1999-11-15 17:53:11 +0000596 ;;
Daniel Veillardb45c43b2001-04-28 17:02:11 +0000597 *-dec-osf* )
598 CFLAGS="${CFLAGS} -ieee"
599 ;;
William M. Brack476cd962003-08-13 11:09:42 +0000600 alpha*-*-linux* )
601 CFLAGS="${CFLAGS} -ieee"
602 ;;
Daniel Veillardd7e200c1999-11-15 17:53:11 +0000603 esac
Daniel Veillardd574f782001-03-14 19:40:17 +0000604else
Daniel Veillardd94849b2003-07-28 13:02:24 +0000605 if test "$with_fexceptions" = "yes"
606 then
607 #
608 # Not activated by default because this inflates the code size
609 # Used to allow propagation of C++ exceptions through the library
610 #
611 CFLAGS="${CFLAGS} -fexceptions"
612 fi
613
Daniel Veillard05f97352004-10-31 15:35:32 +0000614 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 +0000615 case "${host}" in
616 alpha*-*-linux* )
617 CFLAGS="${CFLAGS} -mieee"
618 ;;
Daniel Veillardcb5b4d62002-04-11 08:24:26 +0000619 alpha*-*-osf* )
620 CFLAGS="${CFLAGS} -mieee"
621 ;;
Daniel Veillard14839d52001-06-06 16:11:56 +0000622 esac
Daniel Veillardd7e200c1999-11-15 17:53:11 +0000623fi
Daniel Veillardb0426ca2000-10-11 23:39:43 +0000624case ${host} in
625 *-*-solaris*)
Daniel Veillardd2ade932000-09-30 14:39:55 +0000626 XML_LIBDIR="${XML_LIBDIR} -R${libdir}"
627 ;;
Daniel Veillardd30be4a2002-03-28 18:25:31 +0000628 hppa*-hp-mpeix)
629 NEED_TRIO=1
630 ;;
Daniel Veillard4188ddf2006-01-19 08:58:42 +0000631 *-*-mingw* | *-*-cygwin* | *-*-msvc* )
632 # If the host is Windows, and shared libraries are disabled, we
633 # need to add -DLIBXML_STATIC to CFLAGS in order for linking to
634 # work properly (without it, xmlexports.h would force the use of
635 # DLL imports, which obviously aren't present in a static
636 # library).
637 if test "x$enable_shared" = "xno"; then
638 XML_CFLAGS="$XML_CFLAGS -DLIBXML_STATIC"
639 CFLAGS="$CFLAGS -DLIBXML_STATIC"
640 fi
641 ;;
Daniel Veillardd2ade932000-09-30 14:39:55 +0000642esac
643
Daniel Veillardf5c2c871999-12-01 09:51:45 +0000644
Daniel Veillardf1d0e6b2002-01-31 23:42:44 +0000645dnl
646dnl check for python
647dnl
648
Daniel Veillardf1d0e6b2002-01-31 23:42:44 +0000649PYTHON_VERSION=
650PYTHON_INCLUDES=
Daniel Veillard253aa2c2002-02-02 09:17:16 +0000651PYTHON_SITE_PACKAGES=
Daniel Veillard6dc91962004-03-22 19:10:02 +0000652PYTHON_TESTS=
Daniel Veillard38b80a82003-05-14 18:59:00 +0000653pythondir=
Daniel Veillardf1d0e6b2002-01-31 23:42:44 +0000654if test "$with_python" != "no" ; then
655 if test -x "$with_python/bin/python"
656 then
657 echo Found python in $with_python/bin/python
658 PYTHON="$with_python/bin/python"
Daniel Veillard9b731d72002-04-14 12:56:08 +0000659 else
Daniel Veillarda8a89fe2002-04-12 21:03:34 +0000660 if test -x "$with_python"
661 then
Daniel Veillard4efd3be2002-11-18 09:11:13 +0000662 echo Found python in $with_python
663 PYTHON="$with_python"
Daniel Veillarda8a89fe2002-04-12 21:03:34 +0000664 else
Daniel Veillard4f69eb62005-08-24 22:19:10 +0000665 if test -x "$PYTHON"
666 then
667 echo Found python in environment PYTHON=$PYTHON
Daniel Veillard8492ba12006-04-25 12:52:12 +0000668 with_python=`$PYTHON -c "import sys; print sys.exec_prefix"`
Daniel Veillard4f69eb62005-08-24 22:19:10 +0000669 else
Daniel Veillardc2f70562005-09-01 12:45:26 +0000670 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 +0000671 fi
Daniel Veillarda8a89fe2002-04-12 21:03:34 +0000672 fi
Daniel Veillardf1d0e6b2002-01-31 23:42:44 +0000673 fi
674 if test "$PYTHON" != ""
675 then
676 PYTHON_VERSION=`$PYTHON -c "import sys; print sys.version[[0:3]]"`
677 echo Found Python version $PYTHON_VERSION
678 fi
679 if test "$PYTHON_VERSION" != ""
680 then
Daniel Veillard253aa2c2002-02-02 09:17:16 +0000681 if test -r $with_python/include/python$PYTHON_VERSION/Python.h -a \
682 -d $with_python/lib/python$PYTHON_VERSION/site-packages
Daniel Veillardf1d0e6b2002-01-31 23:42:44 +0000683 then
684 PYTHON_INCLUDES=$with_python/include/python$PYTHON_VERSION
Daniel Veillardd7d07482006-05-03 13:15:44 +0000685 PYTHON_SITE_PACKAGES=$libdir/python$PYTHON_VERSION/site-packages
Daniel Veillardf1d0e6b2002-01-31 23:42:44 +0000686 else
687 if test -r $prefix/include/python$PYTHON_VERSION/Python.h
688 then
Daniel Veillard8492ba12006-04-25 12:52:12 +0000689 PYTHON_INCLUDES=$prefix/include/python$PYTHON_VERSION
Daniel Veillardd7d07482006-05-03 13:15:44 +0000690 PYTHON_SITE_PACKAGES=$libdir/python$PYTHON_VERSION/site-packages
Daniel Veillardf1d0e6b2002-01-31 23:42:44 +0000691 else
692 if test -r /usr/include/python$PYTHON_VERSION/Python.h
693 then
694 PYTHON_INCLUDES=/usr/include/python$PYTHON_VERSION
Daniel Veillardd7d07482006-05-03 13:15:44 +0000695 PYTHON_SITE_PACKAGES=$libdir/python$PYTHON_VERSION/site-packages
Daniel Veillardf1d0e6b2002-01-31 23:42:44 +0000696 else
697 echo could not find python$PYTHON_VERSION/Python.h
698 fi
699 fi
William M. Brack5d4cba42004-01-06 15:19:12 +0000700 if test ! -d "$PYTHON_SITE_PACKAGES"
Daniel Veillardb6984ef2002-08-14 16:55:31 +0000701 then
702 PYTHON_SITE_PACKAGES=`$PYTHON -c "from distutils import sysconfig; print sysconfig.get_python_lib()"`
703 fi
Daniel Veillardf1d0e6b2002-01-31 23:42:44 +0000704 fi
705 fi
Daniel Veillard38b80a82003-05-14 18:59:00 +0000706 if test "$with_python" != ""
707 then
Daniel Veillardd7d07482006-05-03 13:15:44 +0000708 pythondir='$(PYTHON_SITE_PACKAGES)'
Daniel Veillard38b80a82003-05-14 18:59:00 +0000709 else
Daniel Veillardb2f8f1d2006-04-28 16:30:48 +0000710 pythondir='$(libdir)/python$(PYTHON_VERSION)/site-packages'
Daniel Veillard38b80a82003-05-14 18:59:00 +0000711 fi
Daniel Veillard4f69eb62005-08-24 22:19:10 +0000712else
713 PYTHON=
Daniel Veillardf1d0e6b2002-01-31 23:42:44 +0000714fi
715AM_CONDITIONAL(WITH_PYTHON, test "$PYTHON_INCLUDES" != "")
Daniel Veillard40b11342002-09-20 12:01:39 +0000716if test "$PYTHON_INCLUDES" != ""
717then
718 PYTHON_SUBDIR=python
719else
720 PYTHON_SUBDIR=
721fi
Daniel Veillard38b80a82003-05-14 18:59:00 +0000722AC_SUBST(pythondir)
Daniel Veillard40b11342002-09-20 12:01:39 +0000723AC_SUBST(PYTHON_SUBDIR)
Daniel Veillardf1d0e6b2002-01-31 23:42:44 +0000724
Daniel Veillardce1648b2005-01-04 15:10:22 +0000725dnl check for dso support
726WITH_MODULES=0
Daniel Veillardce1648b2005-01-04 15:10:22 +0000727TEST_MODULES=
728
Daniel Veillardf6b71bd2005-01-04 17:50:14 +0000729if test "$with_modules" != "no" ; then
Daniel Veillard9202b672005-07-14 09:31:14 +0000730 case "$host" in
731 *-*-cygwin*)
732 MODULE_EXTENSION=".dll"
733 AC_CHECK_LIB(cygwin, dlopen, [
734 WITH_MODULES=1
735 MODULE_PLATFORM_LIBS=
736 AC_DEFINE([HAVE_DLOPEN], [], [Have dlopen based dso])
737 ])
738 ;;
739 *)
Daniel Veillard1d96f5a2005-10-28 08:44:48 +0000740 AC_CHECK_FUNC(shl_load, libxml_have_shl_load=yes, [
741 AC_CHECK_LIB(dld, shl_load, [
742 MODULE_PLATFORM_LIBS="-ldld"
743 libxml_have_shl_load=yes], [
744 AC_CHECK_FUNC(dlopen, libxml_have_dlopen=yes, [
745 AC_CHECK_LIB(dl, dlopen, [
746 MODULE_PLATFORM_LIBS="-ldl"
747 libxml_have_dlopen=yes])])])])
748
749 if test "${libxml_have_shl_load}" = "yes"; then
750 MODULE_EXTENSION=".sl"
Daniel Veillard9202b672005-07-14 09:31:14 +0000751 WITH_MODULES=1
Daniel Veillard9202b672005-07-14 09:31:14 +0000752 AC_DEFINE([HAVE_SHLLOAD], [], [Have shl_load based dso])
Daniel Veillard1d96f5a2005-10-28 08:44:48 +0000753 fi
Daniel Veillard9202b672005-07-14 09:31:14 +0000754
Daniel Veillard1d96f5a2005-10-28 08:44:48 +0000755 if test "${libxml_have_dlopen}" = "yes"; then
756 case "${host}" in
757 *-*-hpux* )
758 MODULE_EXTENSION=".sl"
759 ;;
760 * )
761 MODULE_EXTENSION=".so"
762 ;;
763 esac
764
Daniel Veillard9202b672005-07-14 09:31:14 +0000765 WITH_MODULES=1
Daniel Veillard9202b672005-07-14 09:31:14 +0000766 AC_DEFINE([HAVE_DLOPEN], [], [Have dlopen based dso])
Daniel Veillard1d96f5a2005-10-28 08:44:48 +0000767 fi
Daniel Veillard9202b672005-07-14 09:31:14 +0000768 ;;
769 esac
Daniel Veillardf6b71bd2005-01-04 17:50:14 +0000770fi
Daniel Veillardce1648b2005-01-04 15:10:22 +0000771
772if test "${WITH_MODULES}" = "1"; then
773 TEST_MODULES="ModuleTests"
774fi
775
776AC_SUBST(WITH_MODULES)
777AC_SUBST(MODULE_PLATFORM_LIBS)
778AC_SUBST(MODULE_EXTENSION)
779AC_SUBST(TEST_MODULES)
780
Daniel Veillard437b87b2000-01-03 17:30:46 +0000781dnl
782dnl Tester makes use of readline if present
783dnl
Daniel Veillard03109292000-08-14 14:58:22 +0000784
Daniel Veillard361d8452000-04-03 19:48:13 +0000785dnl
William M. Brack21e4ef22005-01-02 09:53:13 +0000786dnl specific tests to setup DV and Bill's devel environments with debug etc ...
Daniel Veillard81418e32001-05-22 15:08:55 +0000787dnl (-Wunreachable-code)
Daniel Veillardf6eea272001-01-18 12:17:12 +0000788dnl
William M. Brack871611b2003-10-18 04:53:14 +0000789if [[ "${LOGNAME}" = "veillard" -a "`pwd`" = "/u/veillard/XML" ]] || \
Daniel Veillardb7c6ac42004-06-29 22:01:27 +0000790 [[ "${LOGNAME}" = "veillard" -a "`pwd`" = "/home/veillard/libxml2" ]] || \
William M. Bracka2e844a2004-01-06 11:52:13 +0000791 [[ "${LOGNAME}" = "bill" -a "`pwd`" = "/home/bill/gnomecvs/xmltest" ]] || \
William M. Brack4119d1c2004-06-24 02:24:44 +0000792 [[ "${LOGNAME}" = "wbrack" -a "`pwd`" = "/Users/wbrack/gnomecvs/xmltest" ]]
William M. Brack871611b2003-10-18 04:53:14 +0000793 then
Daniel Veillard4432df22003-09-28 18:58:27 +0000794 if test "$with_minimum" != "yes"
795 then
796 if test "${with_mem_debug}" = "" ; then
Daniel Veillard379a3b72005-08-12 10:18:14 +0000797 echo Activating memory debugging
Daniel Veillard4432df22003-09-28 18:58:27 +0000798 with_mem_debug="yes"
Daniel Veillard22cdb842004-10-04 14:09:17 +0000799 with_run_debug="yes"
Daniel Veillard4432df22003-09-28 18:58:27 +0000800 fi
801 if test "${with_docbook}" = "" ; then
802 with_docbook="yes"
803 fi
Daniel Veillardeae522a2001-04-23 13:41:34 +0000804 fi
Daniel Veillard3854c572005-08-25 10:17:45 +0000805 if test "${GCC}" = "yes" ; then
Daniel Veillard05f97352004-10-31 15:35:32 +0000806 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 +0000807 fi
Daniel Veillard2e9b1652003-02-19 13:29:45 +0000808 STATIC_BINARIES="-static"
Daniel Veillardc86a4fa2001-03-26 16:28:29 +0000809dnl -Wcast-qual -ansi
Daniel Veillard2e9b1652003-02-19 13:29:45 +0000810else
811 STATIC_BINARIES=
Daniel Veillardf6eea272001-01-18 12:17:12 +0000812fi
Daniel Veillard2e9b1652003-02-19 13:29:45 +0000813AC_SUBST(STATIC_BINARIES)
Daniel Veillard92ad2102001-03-27 12:47:33 +0000814
815dnl
816dnl Check for trio string functions
817dnl
818
819if test "${NEED_TRIO}" = "1" ; then
820 echo Adding trio library for string functions
821 WITH_TRIO=1
822else
823 WITH_TRIO=0
824fi
Daniel Veillard01ef7382001-05-08 07:31:43 +0000825AM_CONDITIONAL(WITH_TRIO_SOURCES, test "${NEED_TRIO}" = "1")
Daniel Veillard92ad2102001-03-27 12:47:33 +0000826AC_SUBST(WITH_TRIO)
827
Daniel Veillardf6eea272001-01-18 12:17:12 +0000828dnl
William M. Brack97ad4c72003-05-13 08:08:36 +0000829dnl Allow to enable/disable various pieces
Daniel Veillard361d8452000-04-03 19:48:13 +0000830dnl
William M. Brack21e4ef22005-01-02 09:53:13 +0000831echo Checking configuration requirements
Daniel Veillard361d8452000-04-03 19:48:13 +0000832
William M. Brack21e4ef22005-01-02 09:53:13 +0000833dnl
834dnl Thread-related stuff
835dnl
Daniel Veillardb8478642001-10-12 17:29:10 +0000836THREAD_LIBS=""
Daniel Veillarddbfe05a2005-05-04 09:18:00 +0000837BASE_THREAD_LIBS=""
Daniel Veillardb8478642001-10-12 17:29:10 +0000838WITH_THREADS=0
839THREAD_CFLAGS=""
Daniel Veillardab7488e2001-10-17 11:30:37 +0000840TEST_THREADS=""
Daniel Veillard6984e6d2003-12-09 14:20:17 +0000841THREADS_W32=""
Daniel Veillard64a411c2001-10-15 12:32:07 +0000842
Daniel Veillard84942712003-04-18 14:40:05 +0000843if test "$with_threads" = "no" ; then
844 echo Disabling multithreaded support
845else
Daniel Veillardb8478642001-10-12 17:29:10 +0000846 echo Enabling multithreaded support
847
848 AC_CHECK_HEADER(pthread.h,
Daniel Veillardcbaf3992001-12-31 16:16:02 +0000849 AC_CHECK_LIB(pthread, pthread_join,[
Daniel Veillardb8478642001-10-12 17:29:10 +0000850 THREAD_LIBS="-lpthread"
Daniel Veillardc790bf42003-10-11 10:50:10 +0000851 AC_DEFINE([HAVE_LIBPTHREAD], [], [Define if pthread library is there (-lpthread)])
852 AC_DEFINE([HAVE_PTHREAD_H], [], [Define if <pthread.h> is there])
Daniel Veillardab7488e2001-10-17 11:30:37 +0000853 WITH_THREADS="1"]))
Daniel Veillard6984e6d2003-12-09 14:20:17 +0000854 case $host_os in
855 *mingw32*) WITH_THREADS="1"
856 THREADS_W32="Win32"
857 THREAD_CFLAGS="$THREAD_CFLAGS -DHAVE_WIN32_THREADS"
858 ;;
William M. Bracka73f45b2005-01-11 02:21:33 +0000859 *cygwin*) THREAD_LIBS=""
860 ;;
Daniel Veillard7a3447a2005-01-04 14:31:14 +0000861 *beos*) WITH_THREADS="1"
862 THREAD_CFLAGS="$THREAD_CFLAGS -DHAVE_BEOS_THREADS"
863 ;;
Daniel Veillarddbfe05a2005-05-04 09:18:00 +0000864 *linux*)
Daniel Veillard32a461f2005-08-25 21:48:54 +0000865 if test "${GCC}" = "yes" ; then
866 GCC_VERSION=`${CC} --version | head -1 | awk '{print $3}'`
867 GCC_MAJOR=`echo ${GCC_VERSION} | sed 's+\..*++'`
868 GCC_MEDIUM=`echo ${GCC_VERSION} | sed 's+[[0-9]]*\.++' | sed 's+\..*++'`
869 if test "${THREAD_LIBS}" = "-lpthread" ; then
870 if expr ${GCC_MEDIUM} \> 2 \& ${GCC_MAJOR} = 3 > /dev/null
871 then
872 THREAD_LIBS=""
873 BASE_THREAD_LIBS="-lpthread"
874 else
875 if expr ${GCC_MAJOR} \> 3 > /dev/null
876 then
877 THREAD_LIBS=""
878 BASE_THREAD_LIBS="-lpthread"
879 else
880 echo old GCC disabling weak symbols for pthread
881 fi
882 fi
883 fi
Daniel Veillarddbfe05a2005-05-04 09:18:00 +0000884 fi
885 ;;
Daniel Veillard6984e6d2003-12-09 14:20:17 +0000886 esac
Daniel Veillardb8478642001-10-12 17:29:10 +0000887 if test "$WITH_THREADS" = "1" ; then
Daniel Veillardab7488e2001-10-17 11:30:37 +0000888 THREAD_CFLAGS="$THREAD_CFLAGS -D_REENTRANT"
889 TEST_THREADS="Threadtests"
Daniel Veillardb8478642001-10-12 17:29:10 +0000890 fi
891fi
William M. Brack306e33c2004-06-12 01:01:22 +0000892if test "$with_thread_alloc" = "yes" -a "$WITH_THREADS" = "1" ; then
Daniel Veillardab7488e2001-10-17 11:30:37 +0000893 THREAD_CFLAGS="$THREAD_CFLAGS -DLIBXML_THREAD_ALLOC_ENABLED"
Daniel Veillard64a411c2001-10-15 12:32:07 +0000894fi
895
Daniel Veillardb8478642001-10-12 17:29:10 +0000896AC_SUBST(THREAD_LIBS)
Daniel Veillarddbfe05a2005-05-04 09:18:00 +0000897AC_SUBST(BASE_THREAD_LIBS)
Daniel Veillardb8478642001-10-12 17:29:10 +0000898AC_SUBST(WITH_THREADS)
899AC_SUBST(THREAD_CFLAGS)
Daniel Veillardab7488e2001-10-17 11:30:37 +0000900AC_SUBST(TEST_THREADS)
Daniel Veillard6984e6d2003-12-09 14:20:17 +0000901AC_SUBST(THREADS_W32)
Daniel Veillardb8478642001-10-12 17:29:10 +0000902
William M. Brack21e4ef22005-01-02 09:53:13 +0000903dnl
904dnl xmllint shell history
905dnl
Daniel Veillard259ff742001-10-06 13:49:59 +0000906if test "$with_history" = "yes" ; then
Daniel Veillardf012a642001-07-23 19:10:52 +0000907 echo Enabling xmllint shell history
908 dnl check for terminal library. this is a very cool solution
909 dnl from octave's configure.in
910 unset tcap
911 for termlib in ncurses curses termcap terminfo termlib; do
912 AC_CHECK_LIB(${termlib}, tputs, [tcap="-l$termlib"])
913 test -n "$tcap" && break
914 done
915
916 AC_CHECK_HEADER(readline/history.h,
917 AC_CHECK_LIB(history, append_history,[
918 RDL_LIBS="-lhistory"
Daniel Veillardc790bf42003-10-11 10:50:10 +0000919 AC_DEFINE([HAVE_LIBHISTORY], [], [Define if history library is there (-lhistory)])]))
Daniel Veillardf012a642001-07-23 19:10:52 +0000920 AC_CHECK_HEADER(readline/readline.h,
921 AC_CHECK_LIB(readline, readline,[
922 RDL_LIBS="-lreadline $RDL_LIBS $tcap"
Daniel Veillardc790bf42003-10-11 10:50:10 +0000923 AC_DEFINE([HAVE_LIBREADLINE], [], [Define if readline library is there (-lreadline)])], , $tcap))
Daniel Veillardf012a642001-07-23 19:10:52 +0000924 if test -n "$RDL_DIR" -a -n "$RDL_LIBS"; then
925 CPPFLAGS="$CPPFLAGS -I${RDL_DIR}/include"
926 RDL_LIBS="-L${RDL_DIR}/lib $RDL_LIBS"
Daniel Veillardf012a642001-07-23 19:10:52 +0000927 fi
Daniel Veillardf012a642001-07-23 19:10:52 +0000928fi
929
William M. Brack21e4ef22005-01-02 09:53:13 +0000930dnl
931dnl Tree functions
932dnl
Daniel Veillard652327a2003-09-29 18:02:38 +0000933if test "$with_tree" = "no" ; then
934 echo Disabling DOM like tree manipulation APIs
935 WITH_TREE=0
936else
937 WITH_TREE=1
938fi
939AC_SUBST(WITH_TREE)
940
Daniel Veillard361d8452000-04-03 19:48:13 +0000941if test "$with_ftp" = "no" ; then
942 echo Disabling FTP support
943 WITH_FTP=0
944 FTP_OBJ=
945else
946 WITH_FTP=1
947 FTP_OBJ=nanoftp.o
948fi
949AC_SUBST(WITH_FTP)
950AC_SUBST(FTP_OBJ)
951
Daniel Veillard361d8452000-04-03 19:48:13 +0000952if test "$with_http" = "no" ; then
953 echo Disabling HTTP support
954 WITH_HTTP=0
955 HTTP_OBJ=
956else
957 WITH_HTTP=1
958 HTTP_OBJ=nanohttp.o
959fi
960AC_SUBST(WITH_HTTP)
961AC_SUBST(HTTP_OBJ)
962
Daniel Veillard4432df22003-09-28 18:58:27 +0000963if test "$with_legacy" = "no" ; then
964 echo Disabling deprecated APIs
965 WITH_LEGACY=0
966else
967 WITH_LEGACY=1
968fi
969AC_SUBST(WITH_LEGACY)
970
Daniel Veillard81273902003-09-30 00:43:48 +0000971if test "$with_reader" = "no" ; then
972 echo Disabling the xmlReader parsing interface
973 WITH_READER=0
Daniel Veillard73b013f2003-09-30 12:36:01 +0000974 READER_TEST=
Daniel Veillard81273902003-09-30 00:43:48 +0000975else
976 WITH_READER=1
Daniel Veillard73b013f2003-09-30 12:36:01 +0000977 READER_TEST=Readertests
William M. Brack21e4ef22005-01-02 09:53:13 +0000978 if test "$with_push" = "no" ; then
979 echo xmlReader requires Push interface - enabling it
980 with_push=yes
981 fi
Daniel Veillard81273902003-09-30 00:43:48 +0000982fi
983AC_SUBST(WITH_READER)
Daniel Veillard73b013f2003-09-30 12:36:01 +0000984AC_SUBST(READER_TEST)
Daniel Veillard81273902003-09-30 00:43:48 +0000985
William M. Brack21e4ef22005-01-02 09:53:13 +0000986if test "$with_writer" = "no" ; then
987 echo Disabling the xmlWriter saving interface
988 WITH_WRITER=0
989# WRITER_TEST=
990else
991 WITH_WRITER=1
992# WRITER_TEST=Writertests
993 if test "$with_push" = "no" ; then
994 echo xmlWriter requires Push interface - enabling it
995 with_push=yes
996 fi
997 if test "$with_output" = "no" ; then
998 echo xmlWriter requires Output interface - enabling it
999 with_output=yes
1000 fi
Daniel Veillardb3de70c2003-12-02 22:32:15 +00001001fi
William M. Brack21e4ef22005-01-02 09:53:13 +00001002AC_SUBST(WITH_WRITER)
1003#AC_SUBST(WRITER_TEST)
1004
Daniel Veillardb3de70c2003-12-02 22:32:15 +00001005if test "$with_pattern" = "no" ; then
1006 echo Disabling the xmlPattern parsing interface
1007 WITH_PATTERN=0
Daniel Veillardf9d16912005-01-30 22:36:30 +00001008 TEST_PATTERN=
Daniel Veillardb3de70c2003-12-02 22:32:15 +00001009else
1010 WITH_PATTERN=1
Daniel Veillardf9d16912005-01-30 22:36:30 +00001011 TEST_PATTERN=Patterntests
Daniel Veillardb3de70c2003-12-02 22:32:15 +00001012fi
1013AC_SUBST(WITH_PATTERN)
Daniel Veillardf9d16912005-01-30 22:36:30 +00001014AC_SUBST(TEST_PATTERN)
Daniel Veillardb3de70c2003-12-02 22:32:15 +00001015
Daniel Veillard81273902003-09-30 00:43:48 +00001016if test "$with_sax1" = "no" ; then
1017 echo Disabling the older SAX1 interface
1018 WITH_SAX1=0
1019 TEST_SAX=
1020else
1021 WITH_SAX1=1
1022 TEST_SAX=SAXtests
1023fi
1024AC_SUBST(WITH_SAX1)
1025AC_SUBST(TEST_SAX)
1026
Daniel Veillard73b013f2003-09-30 12:36:01 +00001027if test "$with_push" = "no" ; then
1028 echo Disabling the PUSH parser interfaces
1029 WITH_PUSH=0
1030 TEST_PUSH=
1031else
1032 WITH_PUSH=1
1033 TEST_PUSH="XMLPushtests"
1034fi
1035AC_SUBST(WITH_PUSH)
1036AC_SUBST(TEST_PUSH)
1037
Daniel Veillard73b013f2003-09-30 12:36:01 +00001038if test "$with_html" = "no" ; then
1039 echo Disabling HTML support
1040 WITH_HTML=0
1041 HTML_OBJ=
1042 TEST_HTML=
1043else
1044 WITH_HTML=1
1045 HTML_OBJ="HTMLparser.o HTMLtree.o"
1046 TEST_HTML=HTMLtests
William M. Brack871611b2003-10-18 04:53:14 +00001047 if test "$with_push" != "no" ; then
Daniel Veillard73b013f2003-09-30 12:36:01 +00001048 TEST_PHTML=HTMLPushtests
1049 else
1050 TEST_PHTML=
1051 fi
1052fi
1053AC_SUBST(WITH_HTML)
1054AC_SUBST(HTML_OBJ)
1055AC_SUBST(TEST_HTML)
1056AC_SUBST(TEST_PHTML)
1057
Daniel Veillard73b013f2003-09-30 12:36:01 +00001058if test "$with_valid" = "no" ; then
Daniel Veillard4432df22003-09-28 18:58:27 +00001059 echo Disabling DTD validation support
1060 WITH_VALID=0
1061 TEST_VALID=
1062 TEST_VTIME=
1063else
1064 WITH_VALID=1
1065 TEST_VALID=Validtests
1066 TEST_VTIME=VTimingtests
1067fi
1068AC_SUBST(WITH_VALID)
1069AC_SUBST(TEST_VALID)
1070AC_SUBST(TEST_VTIME)
Daniel Veillard361d8452000-04-03 19:48:13 +00001071
Daniel Veillarda7374592001-05-10 14:17:55 +00001072if test "$with_catalog" = "no" ; then
1073 echo Disabling Catalog support
1074 WITH_CATALOG=0
1075 CATALOG_OBJ=
Daniel Veillard4432df22003-09-28 18:58:27 +00001076 TEST_CATALOG=
Daniel Veillarda7374592001-05-10 14:17:55 +00001077else
1078 WITH_CATALOG=1
1079 CATALOG_OBJ="catalog.o"
Daniel Veillard4432df22003-09-28 18:58:27 +00001080 TEST_CATALOG=Catatests
Daniel Veillarda7374592001-05-10 14:17:55 +00001081fi
1082AC_SUBST(WITH_CATALOG)
1083AC_SUBST(CATALOG_OBJ)
Daniel Veillard4432df22003-09-28 18:58:27 +00001084AC_SUBST(TEST_CATALOG)
Daniel Veillarda7374592001-05-10 14:17:55 +00001085
Daniel Veillardb59076b2001-04-29 17:04:07 +00001086if test "$with_docbook" = "no" ; then
1087 echo Disabling Docbook support
Daniel Veillardeae522a2001-04-23 13:41:34 +00001088 WITH_DOCB=0
1089 DOCB_OBJ=
Daniel Veillardb59076b2001-04-29 17:04:07 +00001090else
1091 WITH_DOCB=1
1092 DOCB_OBJ="DOCBparser.o"
Daniel Veillardeae522a2001-04-23 13:41:34 +00001093fi
1094AC_SUBST(WITH_DOCB)
1095AC_SUBST(DOCB_OBJ)
1096
1097
William M. Brack21e4ef22005-01-02 09:53:13 +00001098if test "$with_xptr" = "no" ; then
1099 echo Disabling XPointer support
1100 WITH_XPTR=0
1101 XPTR_OBJ=
1102 TEST_XPTR=
1103else
1104 WITH_XPTR=1
1105 XPTR_OBJ=xpointer.o
1106 TEST_XPTR=XPtrtests
1107 if test "$with_xpath" = "no" ; then
1108 echo XPointer requires XPath support - enabling it
1109 with_xpath=yes
1110 fi
Daniel Veillard4432df22003-09-28 18:58:27 +00001111fi
William M. Brack21e4ef22005-01-02 09:53:13 +00001112AC_SUBST(WITH_XPTR)
1113AC_SUBST(XPTR_OBJ)
1114AC_SUBST(TEST_XPTR)
1115
1116if test "$with_c14n" = "no" ; then
1117 echo Disabling C14N support
1118 WITH_C14N=0
1119 C14N_OBJ=
1120 TEST_C14N=
1121else
1122 WITH_C14N=1
1123 C14N_OBJ="c14n.c"
1124 TEST_C14N=C14Ntests
1125 if test "$with_xpath" = "no" ; then
1126 echo C14N requires XPath support - enabling it
1127 with_xpath=yes
1128 fi
1129fi
1130AC_SUBST(WITH_C14N)
1131AC_SUBST(C14N_OBJ)
1132AC_SUBST(TEST_C14N)
1133
1134if test "$with_xinclude" = "no" ; then
1135 echo Disabling XInclude support
1136 WITH_XINCLUDE=0
1137 XINCLUDE_OBJ=
1138 with_xinclude="no"
1139 TEST_XINCLUDE=
1140else
1141 WITH_XINCLUDE=1
1142 XINCLUDE_OBJ=xinclude.o
1143 TEST_XINCLUDE=XIncludetests
1144 if test "$with_xpath" = "no" ; then
1145 echo XInclude requires XPath support - enabling it
1146 with_xpath=yes
1147 fi
1148fi
1149AC_SUBST(WITH_XINCLUDE)
1150AC_SUBST(XINCLUDE_OBJ)
1151AC_SUBST(TEST_XINCLUDE)
1152
Daniel Veillard361d8452000-04-03 19:48:13 +00001153if test "$with_xpath" = "no" ; then
1154 echo Disabling XPATH support
1155 WITH_XPATH=0
1156 XPATH_OBJ=
Daniel Veillard4432df22003-09-28 18:58:27 +00001157 TEST_XPATH=
Daniel Veillard361d8452000-04-03 19:48:13 +00001158else
1159 WITH_XPATH=1
1160 XPATH_OBJ=xpath.o
Daniel Veillard4432df22003-09-28 18:58:27 +00001161 TEST_XPATH=XPathtests
Daniel Veillard361d8452000-04-03 19:48:13 +00001162fi
1163AC_SUBST(WITH_XPATH)
1164AC_SUBST(XPATH_OBJ)
Daniel Veillard4432df22003-09-28 18:58:27 +00001165AC_SUBST(TEST_XPATH)
Daniel Veillard361d8452000-04-03 19:48:13 +00001166
William M. Brack21e4ef22005-01-02 09:53:13 +00001167dnl
1168dnl output functions
1169dnl
1170if test "$with_output" = "no" ; then
1171 echo Disabling serialization/saving support
1172 WITH_OUTPUT=0
Daniel Veillardc8df0aa2000-10-10 23:50:30 +00001173else
William M. Brack21e4ef22005-01-02 09:53:13 +00001174 WITH_OUTPUT=1
Daniel Veillardc8df0aa2000-10-10 23:50:30 +00001175fi
William M. Brack21e4ef22005-01-02 09:53:13 +00001176AC_SUBST(WITH_OUTPUT)
Daniel Veillard9e8bfae2000-11-06 16:43:11 +00001177
Daniel Veillard6e90d192001-07-03 16:37:49 +00001178WITH_ICONV=0
Daniel Veillard496a1cf2000-05-03 14:20:55 +00001179if test "$with_iconv" = "no" ; then
1180 echo Disabling ICONV support
Daniel Veillardd574f782001-03-14 19:40:17 +00001181else
Daniel Veillard220346d2001-12-07 11:33:54 +00001182 if test "$with_iconv" != "yes" -a "$with_iconv" != "" ; then
Daniel Veillard6e90d192001-07-03 16:37:49 +00001183 CPPFLAGS="${CPPFLAGS} -I$with_iconv/include"
Daniel Veillardf5b44e42001-09-17 17:19:54 +00001184 # Export this since our headers include iconv.h
1185 XML_INCLUDEDIR="${XML_INCLUDEDIR} -I$with_iconv/include"
Daniel Veillard6e90d192001-07-03 16:37:49 +00001186 ICONV_LIBS="-L$with_iconv/lib"
Daniel Veillard496a1cf2000-05-03 14:20:55 +00001187 fi
Daniel Veillard6e90d192001-07-03 16:37:49 +00001188
1189 AC_CHECK_HEADER(iconv.h,
1190 AC_MSG_CHECKING(for iconv)
1191 AC_TRY_LINK([#include <stdlib.h>
1192#include <iconv.h>],[
1193iconv_t cd = iconv_open ("","");
1194iconv (cd, NULL, NULL, NULL, NULL);],[
1195 AC_MSG_RESULT(yes)
1196 WITH_ICONV=1],[
1197 AC_MSG_RESULT(no)
1198 AC_MSG_CHECKING(for iconv in -liconv)
1199
1200 _ldflags="${LDFLAGS}"
1201 _libs="${LIBS}"
1202 LDFLAGS="${LDFLAGS} ${ICONV_LIBS}"
1203 LIBS="${LIBS} -liconv"
1204
1205 AC_TRY_LINK([#include <stdlib.h>
1206#include <iconv.h>],[
1207iconv_t cd = iconv_open ("","");
1208iconv (cd, NULL, NULL, NULL, NULL);],[
1209 AC_MSG_RESULT(yes)
1210 WITH_ICONV=1
1211 ICONV_LIBS="${ICONV_LIBS} -liconv"
1212 LIBS="${_libs}"
1213 LDFLAGS="${_ldflags}"],[
1214 AC_MSG_RESULT(no)
1215 LIBS="${_libs}"
1216 LDFLAGS="${_ldflags}"])]))
1217fi
Daniel Veillard6984e6d2003-12-09 14:20:17 +00001218case "$host" in
1219 *mingw*) M_LIBS=""
1220 ;;
Daniel Veillard7a3447a2005-01-04 14:31:14 +00001221 *beos*) M_LIBS=""
1222 ;;
Daniel Veillard6984e6d2003-12-09 14:20:17 +00001223 *) M_LIBS="-lm"
1224 ;;
1225esac
Daniel Veillardb82c1662001-12-09 14:00:54 +00001226XML_LIBS="-lxml2 $Z_LIBS $THREAD_LIBS $ICONV_LIBS $M_LIBS $LIBS"
Daniel Veillard90d165b2003-09-01 20:33:13 +00001227XML_LIBTOOLLIBS="libxml2.la"
Daniel Veillard496a1cf2000-05-03 14:20:55 +00001228AC_SUBST(WITH_ICONV)
1229
Daniel Veillard01fc1a92003-07-30 15:12:01 +00001230WITH_ISO8859X=1
Daniel Veillard01fc1a92003-07-30 15:12:01 +00001231if test "$WITH_ICONV" != "1" ; then
1232if test "$with_iso8859x" = "no" ; then
1233 echo Disabling ISO8859X support
1234 WITH_ISO8859X=0
1235fi
1236fi
1237AC_SUBST(WITH_ISO8859X)
1238
Daniel Veillarded6c5492005-07-23 15:00:22 +00001239if test "$with_schematron" = "no" ; then
1240 echo "Disabling Schematron support"
1241 WITH_SCHEMATRON=0
1242 TEST_SCHEMATRON=
1243else
1244 echo "Enabled Schematron support"
1245 WITH_SCHEMATRON=1
1246 TEST_SCHEMATRON="Schematrontests"
1247 with_xpath=yes
1248 with_pattern=yes
1249fi
1250AC_SUBST(WITH_SCHEMATRON)
1251AC_SUBST(TEST_SCHEMATRON)
1252
Daniel Veillardef4d3bc2003-02-07 12:38:22 +00001253if test "$with_schemas" = "no" ; then
William M. Brack21e4ef22005-01-02 09:53:13 +00001254 echo "Disabling Schemas/Relax-NG support"
Daniel Veillardef4d3bc2003-02-07 12:38:22 +00001255 WITH_SCHEMAS=0
1256 TEST_SCHEMAS=
1257else
Daniel Veillard71531f32003-02-05 13:19:53 +00001258 echo "Enabled Schemas/Relax-NG support"
Daniel Veillard4255d502002-04-16 15:50:10 +00001259 WITH_SCHEMAS=1
Daniel Veillard6eadf632003-01-23 18:29:16 +00001260 TEST_SCHEMAS="Schemastests Relaxtests"
Daniel Veillard6dc91962004-03-22 19:10:02 +00001261 if test "$PYTHON_INCLUDES" != "" ; then
1262 PYTHON_TESTS="$PYTHON_TESTS RelaxNGPythonTests SchemasPythonTests"
1263 fi
Daniel Veillard23e73572002-09-19 19:56:43 +00001264 with_regexps=yes
Daniel Veillard4255d502002-04-16 15:50:10 +00001265fi
1266AC_SUBST(WITH_SCHEMAS)
1267AC_SUBST(TEST_SCHEMAS)
1268
Daniel Veillard23e73572002-09-19 19:56:43 +00001269if test "$with_regexps" = "no" ; then
1270 echo Disabling Regexps support
1271 WITH_REGEXPS=0
1272 TEST_REGEXPS=
1273else
1274 WITH_REGEXPS=1
1275 TEST_REGEXPS="Regexptests Automatatests"
1276fi
1277AC_SUBST(WITH_REGEXPS)
1278AC_SUBST(TEST_REGEXPS)
1279
Daniel Veillard361d8452000-04-03 19:48:13 +00001280if test "$with_debug" = "no" ; then
1281 echo Disabling DEBUG support
1282 WITH_DEBUG=0
1283 DEBUG_OBJ=
Daniel Veillard4432df22003-09-28 18:58:27 +00001284 TEST_DEBUG=
Daniel Veillard361d8452000-04-03 19:48:13 +00001285else
1286 WITH_DEBUG=1
1287 DEBUG_OBJ=debugXML.o
Daniel Veillard4432df22003-09-28 18:58:27 +00001288 TEST_DEBUG=Scripttests
Daniel Veillard361d8452000-04-03 19:48:13 +00001289fi
1290AC_SUBST(WITH_DEBUG)
1291AC_SUBST(DEBUG_OBJ)
Daniel Veillard4432df22003-09-28 18:58:27 +00001292AC_SUBST(TEST_DEBUG)
Daniel Veillard361d8452000-04-03 19:48:13 +00001293
Daniel Veillard361d8452000-04-03 19:48:13 +00001294if test "$with_mem_debug" = "yes" ; then
William M. Brack306e33c2004-06-12 01:01:22 +00001295 if test "$with_thread_alloc" = "yes" ; then
1296 echo Disabling memory debug - cannot use mem-debug with thread-alloc!
1297 WITH_MEM_DEBUG=0
1298 else
1299 echo Enabling memory debug support
1300 WITH_MEM_DEBUG=1
1301 fi
Daniel Veillard361d8452000-04-03 19:48:13 +00001302else
1303 WITH_MEM_DEBUG=0
1304fi
1305AC_SUBST(WITH_MEM_DEBUG)
1306
Daniel Veillard22cdb842004-10-04 14:09:17 +00001307if test "$with_run_debug" = "yes" ; then
1308 echo Enabling runtime debug support
1309 WITH_RUN_DEBUG=1
1310else
1311 WITH_RUN_DEBUG=0
1312fi
1313AC_SUBST(WITH_RUN_DEBUG)
Daniel Veillard1638a472003-08-14 01:23:25 +00001314
1315WIN32_EXTRA_LIBADD=
1316WIN32_EXTRA_LDFLAGS=
William M. Bracka73f45b2005-01-11 02:21:33 +00001317CYGWIN_EXTRA_LDFLAGS=
1318CYGWIN_EXTRA_PYTHON_LIBADD=
Daniel Veillard1638a472003-08-14 01:23:25 +00001319case "$host" in
1320 *-*-mingw*)
Daniel Veillard6984e6d2003-12-09 14:20:17 +00001321 CPPFLAGS="$CPPFLAGS -DWIN32"
1322 WIN32_EXTRA_LIBADD="-lws2_32"
Daniel Veillard1638a472003-08-14 01:23:25 +00001323 WIN32_EXTRA_LDFLAGS="-no-undefined"
1324 AC_DEFINE([_WINSOCKAPI_],1,[Using the Win32 Socket implementation])
1325 AC_DEFINE([snprintf],[_snprintf],[Win32 Std C name mangling work-around])
1326 AC_DEFINE([vsnprintf],[_vsnprintf],[Win32 Std C name mangling work-around])
1327 ;;
Daniel Veillardd392ba72004-08-04 14:56:45 +00001328 *-*-cygwin*)
1329 CYGWIN_EXTRA_LDFLAGS="-no-undefined"
William M. Bracka73f45b2005-01-11 02:21:33 +00001330 if test "${PYTHON}" != ""
1331 then
1332 CYGWIN_EXTRA_PYTHON_LIBADD="-L/usr/lib/python${PYTHON_VERSION}/config -lpython${PYTHON_VERSION}"
1333 fi
Daniel Veillardd392ba72004-08-04 14:56:45 +00001334 ;;
Daniel Veillard1638a472003-08-14 01:23:25 +00001335esac
1336AC_SUBST(WIN32_EXTRA_LIBADD)
1337AC_SUBST(WIN32_EXTRA_LDFLAGS)
Daniel Veillardd392ba72004-08-04 14:56:45 +00001338AC_SUBST(CYGWIN_EXTRA_LDFLAGS)
1339AC_SUBST(CYGWIN_EXTRA_PYTHON_LIBADD)
Daniel Veillard1638a472003-08-14 01:23:25 +00001340
Daniel Veillard6984e6d2003-12-09 14:20:17 +00001341AC_SUBST(CPPFLAGS)
Daniel Veillardd7e200c1999-11-15 17:53:11 +00001342AC_SUBST(CFLAGS)
Daniel Veillardf5c2c871999-12-01 09:51:45 +00001343AC_SUBST(XML_CFLAGS)
Daniel Veillardd7e200c1999-11-15 17:53:11 +00001344
Daniel Veillardb05deb71999-08-10 19:04:08 +00001345AC_SUBST(XML_LIBDIR)
1346AC_SUBST(XML_LIBS)
Daniel Veillard90d165b2003-09-01 20:33:13 +00001347AC_SUBST(XML_LIBTOOLLIBS)
Daniel Veillard81418e32001-05-22 15:08:55 +00001348AC_SUBST(ICONV_LIBS)
Daniel Veillardb05deb71999-08-10 19:04:08 +00001349AC_SUBST(XML_INCLUDEDIR)
1350AC_SUBST(HTML_DIR)
1351AC_SUBST(HAVE_ISNAN)
1352AC_SUBST(HAVE_ISINF)
Daniel Veillardf1d0e6b2002-01-31 23:42:44 +00001353AC_SUBST(PYTHON)
1354AC_SUBST(PYTHON_VERSION)
1355AC_SUBST(PYTHON_INCLUDES)
Daniel Veillard253aa2c2002-02-02 09:17:16 +00001356AC_SUBST(PYTHON_SITE_PACKAGES)
Daniel Veillardb05deb71999-08-10 19:04:08 +00001357
Daniel Veillardb05deb71999-08-10 19:04:08 +00001358AC_SUBST(M_LIBS)
Daniel Veillard437b87b2000-01-03 17:30:46 +00001359AC_SUBST(RDL_LIBS)
Daniel Veillard361d8452000-04-03 19:48:13 +00001360
Daniel Veillard9715c172002-11-25 16:33:40 +00001361dnl for the spec file
1362RELDATE=`date +'%a %b %e %Y'`
1363AC_SUBST(RELDATE)
Daniel Veillard6dc91962004-03-22 19:10:02 +00001364AC_SUBST(PYTHON_TESTS)
Daniel Veillard9715c172002-11-25 16:33:40 +00001365
Daniel Veillardc6e997c2003-01-27 12:35:42 +00001366rm -f COPYING.LIB COPYING
Daniel Veillardc575b992002-02-08 13:28:40 +00001367ln -s Copyright COPYING
1368
Daniel Veillarde4177a52004-01-08 16:43:57 +00001369# keep on one line for cygwin c.f. #130896
Daniel Veillard99b78502005-09-11 22:04:08 +00001370AC_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 +00001371
Daniel Veillard06d25242004-02-25 13:01:42 +00001372chmod +x xml2-config python/setup.py
Daniel Veillard67952602006-01-05 15:29:44 +00001373echo Done configuring