blob: 466790175c1ed3f84ddc0ae07db5e68e6cdcf3a8 [file] [log] [blame]
Daniel Veillard01791d51998-07-24 19:24:09 +00001dnl Process this file with autoconf to produce a configure script.
2AC_PREREQ(2.2)
Owen Taylor3473f882001-02-23 17:55:21 +00003AC_INIT(entities.c)
Daniel Veillard01791d51998-07-24 19:24:09 +00004AM_CONFIG_HEADER(config.h)
Daniel Veillardd2ade932000-09-30 14:39:55 +00005AC_CANONICAL_HOST
Daniel Veillard14fff061999-06-22 21:49:07 +00006
Daniel Veillardcf461992000-03-14 18:30:20 +00007LIBXML_MAJOR_VERSION=2
Daniel Veillard09ab7e12001-07-10 15:49:44 +00008LIBXML_MINOR_VERSION=4
Daniel Veillard19274092002-03-25 16:48:03 +00009LIBXML_MICRO_VERSION=19
Daniel Veillard14fff061999-06-22 21:49:07 +000010LIBXML_VERSION=$LIBXML_MAJOR_VERSION.$LIBXML_MINOR_VERSION.$LIBXML_MICRO_VERSION
11LIBXML_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
Daniel Veillard14fff061999-06-22 21:49:07 +000015AC_SUBST(LIBXML_MAJOR_VERSION)
16AC_SUBST(LIBXML_MINOR_VERSION)
17AC_SUBST(LIBXML_MICRO_VERSION)
18AC_SUBST(LIBXML_VERSION)
19AC_SUBST(LIBXML_VERSION_INFO)
Daniel Veillard361d8452000-04-03 19:48:13 +000020AC_SUBST(LIBXML_VERSION_NUMBER)
Daniel Veillard14fff061999-06-22 21:49:07 +000021
Daniel Veillard361d8452000-04-03 19:48:13 +000022VERSION=${LIBXML_VERSION}
Daniel Veillard14fff061999-06-22 21:49:07 +000023
Daniel Veillardedfb29b2000-03-14 19:59:05 +000024AM_INIT_AUTOMAKE(libxml2, $VERSION)
Daniel Veillard1164e751999-02-16 16:29:17 +000025
26AC_ARG_WITH(html-dir, [ --with-html-dir=PATH path to installed docs ])
Daniel Veillard01791d51998-07-24 19:24:09 +000027
28dnl Checks for programs.
29AC_PROG_CC
30AC_PROG_INSTALL
Sebastian Wilhelmia44c8a41998-08-07 08:38:58 +000031AC_PROG_CPP
Daniel Veillard01791d51998-07-24 19:24:09 +000032AC_PATH_PROG(RM, rm, /bin/rm)
33AC_PATH_PROG(MV, mv, /bin/mv)
34AC_PATH_PROG(TAR, tar, /bin/tar)
Daniel Veillard01791d51998-07-24 19:24:09 +000035
Daniel Veillard03109292000-08-14 14:58:22 +000036dnl Make sure we have an ANSI compiler
37AM_C_PROTOTYPES
38test "x$U" != "x" && AC_MSG_ERROR(Compiler not ANSI compliant)
39
Daniel Veillard01791d51998-07-24 19:24:09 +000040AM_PROG_LIBTOOL
41
42AM_MAINTAINER_MODE
43
Daniel Veillard71b656e2000-01-05 14:46:17 +000044dnl Checks for zlib library.
Owen Taylor3473f882001-02-23 17:55:21 +000045_cppflags="${CPPFLAGS}"
46_ldflags="${LDFLAGS}"
Daniel Veillard71b656e2000-01-05 14:46:17 +000047
Daniel Veillard259ff742001-10-06 13:49:59 +000048
Owen Taylor3473f882001-02-23 17:55:21 +000049AC_ARG_WITH(zlib,
50[ --with-zlib[=DIR] use libz in DIR],[
51 if test "$withval" != "no" -a "$withval" != "yes"; then
52 Z_DIR=$withval
53 CPPFLAGS="${CPPFLAGS} -I$withval/include"
54 LDFLAGS="${LDFLAGS} -L$withval/lib"
55 fi
Daniel Veillard259ff742001-10-06 13:49:59 +000056])
57if test "$with_zlib" = "no"; then
58 echo "Disabling compression support"
59else
Daniel Veillard3fbe8e32001-10-06 13:30:33 +000060 AC_CHECK_HEADERS(zlib.h,
61 AC_CHECK_LIB(z, gzread,[
62 AC_DEFINE(HAVE_LIBZ)
63 if test "x${Z_DIR}" != "x"; then
64 Z_CFLAGS="-I${Z_DIR}/include"
65 Z_LIBS="-L${Z_DIR}/lib -lz"
66 [case ${host} in
67 *-*-solaris*)
68 Z_LIBS="-L${Z_DIR}/lib -R${Z_DIR}/lib -lz"
69 ;;
70 esac]
71 else
72 Z_LIBS="-lz"
73 fi]))
Daniel Veillard259ff742001-10-06 13:49:59 +000074fi
Owen Taylor3473f882001-02-23 17:55:21 +000075
Owen Taylor3473f882001-02-23 17:55:21 +000076AC_SUBST(Z_CFLAGS)
77AC_SUBST(Z_LIBS)
78
79CPPFLAGS=${_cppflags}
80LDFLAGS=${_ldflags}
Daniel Veillardb05deb71999-08-10 19:04:08 +000081
Daniel Veillard01791d51998-07-24 19:24:09 +000082dnl Checks for header files.
83AC_HEADER_DIRENT
84AC_HEADER_STDC
85AC_CHECK_HEADERS(fcntl.h unistd.h ctype.h dirent.h errno.h malloc.h)
Daniel Veillard27b55282001-04-11 12:22:25 +000086AC_CHECK_HEADERS(stdarg.h sys/stat.h sys/types.h time.h ansidecl.h)
Daniel Veillardb05deb71999-08-10 19:04:08 +000087AC_CHECK_HEADERS(ieeefp.h nan.h math.h fp_class.h float.h)
Daniel Veillard7f7d1111999-09-22 09:46:25 +000088AC_CHECK_HEADERS(stdlib.h sys/socket.h netinet/in.h arpa/inet.h)
Daniel Veillard46e370e2000-07-21 20:32:03 +000089AC_CHECK_HEADERS(netdb.h sys/time.h sys/select.h sys/mman.h)
Daniel Veillarddd4b9122002-03-26 07:58:43 +000090AC_CHECK_HEADERS(sys/timeb.h signal.h arpa/nameser.h resolv.h)
Daniel Veillard01791d51998-07-24 19:24:09 +000091
Daniel Veillard1164e751999-02-16 16:29:17 +000092dnl Specific dir for HTML output ?
93if test "x$with_html_dir" = "x" ; then
Daniel Veillard0a6c3582001-03-14 19:15:37 +000094 HTML_DIR='$(prefix)/doc'
Daniel Veillard1164e751999-02-16 16:29:17 +000095else
96 HTML_DIR=$with_html_dir
97fi
98
99AC_SUBST(HTML_DIR)
100
Daniel Veillard01791d51998-07-24 19:24:09 +0000101dnl Checks for library functions.
102AC_FUNC_STRFTIME
Daniel Veillard92ad2102001-03-27 12:47:33 +0000103AC_CHECK_FUNCS(strdup strndup strerror)
Daniel Veillard71b656e2000-01-05 14:46:17 +0000104AC_CHECK_FUNCS(finite isnand fp_class class fpclass)
Daniel Veillard90bc3712002-03-07 15:12:58 +0000105AC_CHECK_FUNCS(strftime localtime gettimeofday ftime)
Daniel Veillard068a9652001-06-07 15:30:26 +0000106AC_CHECK_FUNCS(stat _stat signal)
Daniel Veillard7f7d1111999-09-22 09:46:25 +0000107
Daniel Veillard92ad2102001-03-27 12:47:33 +0000108dnl Checking the standard string functions availability
109AC_CHECK_FUNCS(printf sprintf fprintf snprintf vfprintf vsprintf vsnprintf sscanf,,
110 NEED_TRIO=1)
111
Daniel Veillard7f7d1111999-09-22 09:46:25 +0000112dnl Checks for inet libraries:
Daniel Veillard71b656e2000-01-05 14:46:17 +0000113AC_CHECK_FUNC(gethostent, , AC_CHECK_LIB(nsl, gethostent))
114AC_CHECK_FUNC(setsockopt, , AC_CHECK_LIB(socket, setsockopt))
115AC_CHECK_FUNC(connect, , AC_CHECK_LIB(inet, connect))
Daniel Veillardb05deb71999-08-10 19:04:08 +0000116
Daniel Veillardb0426ca2000-10-11 23:39:43 +0000117dnl Determine what socket length (socklen_t) data type is
118AC_MSG_CHECKING([for type of socket length (socklen_t)])
119AC_TRY_COMPILE2([
120#include <stddef.h>
121#include <sys/types.h>
122#include <sys/socket.h>],[
123(void)getsockopt (1, 1, 1, NULL, (socklen_t *)NULL)],[
124 AC_MSG_RESULT(socklen_t *)
125 SOCKLEN_T=socklen_t],[
126 AC_TRY_COMPILE2([
127#include <stddef.h>
128#include <sys/types.h>
129#include <sys/socket.h>],[
130(void)getsockopt (1, 1, 1, NULL, (size_t *)NULL)],[
131 AC_MSG_RESULT(size_t *)
132 SOCKLEN_T=size_t],[
133 AC_TRY_COMPILE2([
134#include <stddef.h>
135#include <sys/types.h>
136#include <sys/socket.h>],[
137(void)getsockopt (1, 1, 1, NULL, (int *)NULL)],[
138 AC_MSG_RESULT(int *)
139 SOCKLEN_T=int],[
140 AC_MSG_WARN(could not determine)])])])
141AC_DEFINE_UNQUOTED(SOCKLEN_T, $SOCKLEN_T)
142
Daniel Veillardb05deb71999-08-10 19:04:08 +0000143dnl Checks for isnan in libm if not in libc
Daniel Veillard71b656e2000-01-05 14:46:17 +0000144AC_CHECK_FUNC(isnan, , AC_CHECK_LIB(m, isnan,
Bjorn Reesee1dc0112001-03-03 12:09:03 +0000145 [AC_DEFINE(HAVE_ISNAN)]))
Daniel Veillardb05deb71999-08-10 19:04:08 +0000146
Daniel Veillard760f4422001-02-15 14:59:48 +0000147AC_CHECK_FUNC(isinf, AC_DEFINE(HAVE_ISINF) , AC_CHECK_LIB(m, isinf,
Bjorn Reesee1dc0112001-03-03 12:09:03 +0000148 [AC_DEFINE(HAVE_ISINF)]))
Daniel Veillardb05deb71999-08-10 19:04:08 +0000149
150XML_LIBDIR='-L${libdir}'
Daniel Veillarde7dd2b82002-03-15 18:44:02 +0000151XML_INCLUDEDIR='-I${includedir}/libxml2'
Daniel Veillardb05deb71999-08-10 19:04:08 +0000152
Daniel Veillardd7e200c1999-11-15 17:53:11 +0000153dnl
Daniel Veillardf5c2c871999-12-01 09:51:45 +0000154dnl Extra flags
155dnl
156XML_CFLAGS=""
Daniel Veillard357c9602001-05-03 10:49:20 +0000157RDL_LIBS=""
Daniel Veillardf5c2c871999-12-01 09:51:45 +0000158
159dnl
Daniel Veillardb45c43b2001-04-28 17:02:11 +0000160dnl Workaround for native compilers
161dnl HP : http://bugs.gnome.org/db/31/3163.html
162dnl DEC : Enable NaN/Inf
Daniel Veillardd7e200c1999-11-15 17:53:11 +0000163dnl
Daniel Veillard03109292000-08-14 14:58:22 +0000164if test "${GCC}" != "yes" ; then
Daniel Veillardd7e200c1999-11-15 17:53:11 +0000165 case "${host}" in
166 *-*-hpux* )
Daniel Veillard03109292000-08-14 14:58:22 +0000167 CFLAGS="${CFLAGS} -Wp,-H30000"
Daniel Veillardd7e200c1999-11-15 17:53:11 +0000168 ;;
Daniel Veillardb45c43b2001-04-28 17:02:11 +0000169 *-dec-osf* )
170 CFLAGS="${CFLAGS} -ieee"
171 ;;
Daniel Veillardd7e200c1999-11-15 17:53:11 +0000172 esac
Daniel Veillardd574f782001-03-14 19:40:17 +0000173else
174 CFLAGS="${CFLAGS} -Wall"
Daniel Veillard14839d52001-06-06 16:11:56 +0000175 case "${host}" in
176 alpha*-*-linux* )
177 CFLAGS="${CFLAGS} -mieee"
178 ;;
179 esac
Daniel Veillardd7e200c1999-11-15 17:53:11 +0000180fi
Daniel Veillardb0426ca2000-10-11 23:39:43 +0000181case ${host} in
182 *-*-solaris*)
Daniel Veillardd2ade932000-09-30 14:39:55 +0000183 XML_LIBDIR="${XML_LIBDIR} -R${libdir}"
184 ;;
185esac
186
Daniel Veillardf5c2c871999-12-01 09:51:45 +0000187
Daniel Veillardf1d0e6b2002-01-31 23:42:44 +0000188dnl
189dnl check for python
190dnl
191
192PYTHON=
193PYTHON_VERSION=
194PYTHON_INCLUDES=
Daniel Veillard253aa2c2002-02-02 09:17:16 +0000195PYTHON_SITE_PACKAGES=
Daniel Veillardf1d0e6b2002-01-31 23:42:44 +0000196AC_ARG_WITH(python, [ --with-python[=DIR] Build Python bindings if found])
197if test "$with_python" != "no" ; then
198 if test -x "$with_python/bin/python"
199 then
200 echo Found python in $with_python/bin/python
201 PYTHON="$with_python/bin/python"
202 else
203 AC_PATH_PROG(PYTHON, python python2.2 python2.1 python2.0 python1.6 python1.5)
204 fi
205 if test "$PYTHON" != ""
206 then
207 PYTHON_VERSION=`$PYTHON -c "import sys; print sys.version[[0:3]]"`
208 echo Found Python version $PYTHON_VERSION
209 fi
210 if test "$PYTHON_VERSION" != ""
211 then
Daniel Veillard253aa2c2002-02-02 09:17:16 +0000212 if test -r $with_python/include/python$PYTHON_VERSION/Python.h -a \
213 -d $with_python/lib/python$PYTHON_VERSION/site-packages
Daniel Veillardf1d0e6b2002-01-31 23:42:44 +0000214 then
215 PYTHON_INCLUDES=$with_python/include/python$PYTHON_VERSION
Daniel Veillard253aa2c2002-02-02 09:17:16 +0000216 PYTHON_SITE_PACKAGES=$with_python/lib/python$PYTHON_VERSION/site-packages
Daniel Veillardf1d0e6b2002-01-31 23:42:44 +0000217 else
218 if test -r $prefix/include/python$PYTHON_VERSION/Python.h
219 then
Daniel Veillard253aa2c2002-02-02 09:17:16 +0000220 PYTHON_INCLUDES='$(prefix)/include/python$(PYTHON_VERSION)'
221 PYTHON_SITE_PACKAGES='$(prefix)/lib/python$(PYTHON_VERSION)/site-packages'
Daniel Veillardf1d0e6b2002-01-31 23:42:44 +0000222 else
223 if test -r /usr/include/python$PYTHON_VERSION/Python.h
224 then
225 PYTHON_INCLUDES=/usr/include/python$PYTHON_VERSION
Daniel Veillard15a143b2002-02-06 22:40:50 +0000226 PYTHON_SITE_PACKAGES='$(prefix)/lib/python$(PYTHON_VERSION)/site-packages'
Daniel Veillardf1d0e6b2002-01-31 23:42:44 +0000227 else
228 echo could not find python$PYTHON_VERSION/Python.h
229 fi
230 fi
231 fi
232 fi
233fi
234AM_CONDITIONAL(WITH_PYTHON, test "$PYTHON_INCLUDES" != "")
235
Daniel Veillard437b87b2000-01-03 17:30:46 +0000236dnl
237dnl Tester makes use of readline if present
238dnl
Daniel Veillard03109292000-08-14 14:58:22 +0000239_cppflags="${CPPFLAGS}"
240_ldflags="${LDFLAGS}"
Daniel Veillard437b87b2000-01-03 17:30:46 +0000241
Daniel Veillard03109292000-08-14 14:58:22 +0000242AC_ARG_WITH(readline,
243[ --with-readline=DIR use readline in DIR],[
244 if test "$withval" != "no" -a "$withval" != "yes"; then
245 RDL_DIR=$withval
246 CPPFLAGS="${CPPFLAGS} -I$withval/include"
247 LDFLAGS="${LDFLAGS} -L$withval/lib"
248 fi
249])
250
Daniel Veillard361d8452000-04-03 19:48:13 +0000251dnl
Daniel Veillardf6eea272001-01-18 12:17:12 +0000252dnl specific tests to setup DV's devel environment with debug etc ...
Daniel Veillard81418e32001-05-22 15:08:55 +0000253dnl (-Wunreachable-code)
Daniel Veillardf6eea272001-01-18 12:17:12 +0000254dnl
255if test "${LOGNAME}" = "veillard" -a "`pwd`" = "/u/veillard/XML" ; then
256 if test "${with_mem_debug}" = "" ; then
257 with_mem_debug="yes"
258 fi
Daniel Veillardeae522a2001-04-23 13:41:34 +0000259 if test "${with_docbook}" = "" ; then
260 with_docbook="yes"
261 fi
Daniel Veillardf6eea272001-01-18 12:17:12 +0000262 if test "${with_xptr}" = "" ; then
263 with_xptr="yes"
264 fi
Daniel Veillard0ba59232002-02-10 13:20:39 +0000265 CFLAGS="-g -O -pedantic -W -Wunused -Wimplicit -Wreturn-type -Wswitch -Wcomment -Wtrigraphs -Wformat -Wchar-subscripts -Wuninitialized -Wparentheses -Wshadow -Wpointer-arith -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Winline -Wredundant-decls "
Daniel Veillardc86a4fa2001-03-26 16:28:29 +0000266dnl -Wcast-qual -ansi
Daniel Veillardf6eea272001-01-18 12:17:12 +0000267fi
Daniel Veillard92ad2102001-03-27 12:47:33 +0000268
269dnl
270dnl Check for trio string functions
271dnl
272
273if test "${NEED_TRIO}" = "1" ; then
274 echo Adding trio library for string functions
275 WITH_TRIO=1
276else
277 WITH_TRIO=0
278fi
Daniel Veillard01ef7382001-05-08 07:31:43 +0000279AM_CONDITIONAL(WITH_TRIO_SOURCES, test "${NEED_TRIO}" = "1")
Daniel Veillard92ad2102001-03-27 12:47:33 +0000280AC_SUBST(WITH_TRIO)
281
Daniel Veillardf6eea272001-01-18 12:17:12 +0000282dnl
Daniel Veillardb8478642001-10-12 17:29:10 +0000283dnl Aloow to enable/disable various pieces
Daniel Veillard361d8452000-04-03 19:48:13 +0000284dnl
285
Daniel Veillardb8478642001-10-12 17:29:10 +0000286THREAD_LIBS=""
287WITH_THREADS=0
288THREAD_CFLAGS=""
Daniel Veillardab7488e2001-10-17 11:30:37 +0000289TEST_THREADS=""
Daniel Veillard64a411c2001-10-15 12:32:07 +0000290
Daniel Veillardb8478642001-10-12 17:29:10 +0000291AC_ARG_WITH(threads, [ --with-threads Add multithread support(off)])
292if test "$with_threads" = "yes" ; then
293 echo Enabling multithreaded support
294
295 AC_CHECK_HEADER(pthread.h,
Daniel Veillardcbaf3992001-12-31 16:16:02 +0000296 AC_CHECK_LIB(pthread, pthread_join,[
Daniel Veillardb8478642001-10-12 17:29:10 +0000297 THREAD_LIBS="-lpthread"
298 AC_DEFINE(HAVE_LIBPTHREAD)
299 AC_DEFINE(HAVE_PTHREAD_H)
Daniel Veillardab7488e2001-10-17 11:30:37 +0000300 WITH_THREADS="1"]))
Daniel Veillardb8478642001-10-12 17:29:10 +0000301
302 if test "$WITH_THREADS" = "1" ; then
Daniel Veillardab7488e2001-10-17 11:30:37 +0000303 THREAD_CFLAGS="$THREAD_CFLAGS -D_REENTRANT"
304 TEST_THREADS="Threadtests"
Daniel Veillardb8478642001-10-12 17:29:10 +0000305 fi
306fi
Daniel Veillard64a411c2001-10-15 12:32:07 +0000307AC_ARG_WITH(thread-alloc, [ --with-thread-alloc Add per-thread memory(off)])
Daniel Veillardab7488e2001-10-17 11:30:37 +0000308if test "$with_threads_alloc" = "yes" -a "$WITH_THREADS" = "1" ; then
309 THREAD_CFLAGS="$THREAD_CFLAGS -DLIBXML_THREAD_ALLOC_ENABLED"
Daniel Veillard64a411c2001-10-15 12:32:07 +0000310fi
311
Daniel Veillardb8478642001-10-12 17:29:10 +0000312AC_SUBST(THREAD_LIBS)
313AC_SUBST(WITH_THREADS)
314AC_SUBST(THREAD_CFLAGS)
Daniel Veillardab7488e2001-10-17 11:30:37 +0000315AC_SUBST(TEST_THREADS)
Daniel Veillardb8478642001-10-12 17:29:10 +0000316
317AC_ARG_WITH(history, [ --with-history Add history support to xmllint shell(off)])
Daniel Veillard259ff742001-10-06 13:49:59 +0000318if test "$with_history" = "yes" ; then
Daniel Veillardf012a642001-07-23 19:10:52 +0000319 echo Enabling xmllint shell history
320 dnl check for terminal library. this is a very cool solution
321 dnl from octave's configure.in
322 unset tcap
323 for termlib in ncurses curses termcap terminfo termlib; do
324 AC_CHECK_LIB(${termlib}, tputs, [tcap="-l$termlib"])
325 test -n "$tcap" && break
326 done
327
328 AC_CHECK_HEADER(readline/history.h,
329 AC_CHECK_LIB(history, append_history,[
330 RDL_LIBS="-lhistory"
331 AC_DEFINE(HAVE_LIBHISTORY)]))
332 AC_CHECK_HEADER(readline/readline.h,
333 AC_CHECK_LIB(readline, readline,[
334 RDL_LIBS="-lreadline $RDL_LIBS $tcap"
335 AC_DEFINE(HAVE_LIBREADLINE)], , $tcap))
336 if test -n "$RDL_DIR" -a -n "$RDL_LIBS"; then
337 CPPFLAGS="$CPPFLAGS -I${RDL_DIR}/include"
338 RDL_LIBS="-L${RDL_DIR}/lib $RDL_LIBS"
339 else
340 CPPFLAGS=${_cppflags}
341 fi
342 LDFLAGS=${_ldflags}
343fi
344
345AC_SUBST(WITH_FTP)
346AC_SUBST(FTP_OBJ)
Daniel Veillard361d8452000-04-03 19:48:13 +0000347AC_ARG_WITH(ftp, [ --with-ftp Add the FTP support (on)])
348if test "$with_ftp" = "no" ; then
349 echo Disabling FTP support
350 WITH_FTP=0
351 FTP_OBJ=
352else
353 WITH_FTP=1
354 FTP_OBJ=nanoftp.o
355fi
356AC_SUBST(WITH_FTP)
357AC_SUBST(FTP_OBJ)
358
359AC_ARG_WITH(http, [ --with-http Add the HTTP support (on)])
360if test "$with_http" = "no" ; then
361 echo Disabling HTTP support
362 WITH_HTTP=0
363 HTTP_OBJ=
364else
365 WITH_HTTP=1
366 HTTP_OBJ=nanohttp.o
367fi
368AC_SUBST(WITH_HTTP)
369AC_SUBST(HTTP_OBJ)
370
371AC_ARG_WITH(html, [ --with-html Add the HTML support (on)])
372if test "$with_html" = "no" ; then
373 echo Disabling HTML support
374 WITH_HTML=0
375 HTML_OBJ=
376else
377 WITH_HTML=1
378 HTML_OBJ="HTMLparser.o HTMLtree.o"
379fi
380AC_SUBST(WITH_HTML)
381AC_SUBST(HTML_OBJ)
382
Daniel Veillarda7374592001-05-10 14:17:55 +0000383AC_ARG_WITH(catalog, [ --with-catalog Add the Catalog support (on)])
384if test "$with_catalog" = "no" ; then
385 echo Disabling Catalog support
386 WITH_CATALOG=0
387 CATALOG_OBJ=
388else
389 WITH_CATALOG=1
390 CATALOG_OBJ="catalog.o"
391fi
392AC_SUBST(WITH_CATALOG)
393AC_SUBST(CATALOG_OBJ)
394
Daniel Veillard6e90d192001-07-03 16:37:49 +0000395AC_ARG_WITH(docbook, [ --with-docbook Add Docbook SGML support (on)])
Daniel Veillardb59076b2001-04-29 17:04:07 +0000396if test "$with_docbook" = "no" ; then
397 echo Disabling Docbook support
Daniel Veillardeae522a2001-04-23 13:41:34 +0000398 WITH_DOCB=0
399 DOCB_OBJ=
Daniel Veillardb59076b2001-04-29 17:04:07 +0000400else
401 WITH_DOCB=1
402 DOCB_OBJ="DOCBparser.o"
Daniel Veillardeae522a2001-04-23 13:41:34 +0000403fi
404AC_SUBST(WITH_DOCB)
405AC_SUBST(DOCB_OBJ)
406
407
Daniel Veillard361d8452000-04-03 19:48:13 +0000408AC_ARG_WITH(xpath, [ --with-xpath Add the XPATH support (on)])
409if test "$with_xpath" = "no" ; then
410 echo Disabling XPATH support
Daniel Veillard52afe802000-10-22 16:56:02 +0000411 with_xptr="no"
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000412 with-c14n="no"
Daniel Veillard361d8452000-04-03 19:48:13 +0000413 WITH_XPATH=0
414 XPATH_OBJ=
415else
416 WITH_XPATH=1
417 XPATH_OBJ=xpath.o
418fi
419AC_SUBST(WITH_XPATH)
420AC_SUBST(XPATH_OBJ)
421
Daniel Veillardc8df0aa2000-10-10 23:50:30 +0000422AC_ARG_WITH(xptr, [ --with-xptr Add the XPointer support (on)])
423if test "$with_xptr" = "no" ; then
424 echo Disabling XPointer support
425 WITH_XPTR=0
426 XPTR_OBJ=
427else
428 WITH_XPTR=1
429 XPTR_OBJ=xpointer.o
430fi
431AC_SUBST(WITH_XPTR)
432AC_SUBST(XPTR_OBJ)
433
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000434AC_ARG_WITH(c14n, [ --with-c14n Add the Canonicalization support (on)])
435if test "$with_c14n" = "no" ; then
436 echo Disabling C14N support
437 WITH_C14N=0
438 C14N_OBJ=
439else
440 WITH_C14N=1
441 C14N_OBJ="c14n.c"
442fi
443AC_SUBST(WITH_C14N)
444AC_SUBST(C14N_OBJ)
445
Daniel Veillard9e8bfae2000-11-06 16:43:11 +0000446AC_ARG_WITH(xinclude, [ --with-xinclude Add the XInclude support (on)])
447if test "$with_xinclude" = "no" ; then
448 echo Disabling XInclude support
449 WITH_XINCLUDE=0
450 XINCLUDE_OBJ=
451 with_xinclude="no"
452else
453 WITH_XINCLUDE=1
454 XINCLUDE_OBJ=xinclude.o
455fi
456AC_SUBST(WITH_XINCLUDE)
457AC_SUBST(XINCLUDE_OBJ)
458
Daniel Veillard6e90d192001-07-03 16:37:49 +0000459WITH_ICONV=0
460AC_ARG_WITH(iconv, [ --with-iconv[=DIR] Add ICONV support (on)])
Daniel Veillard496a1cf2000-05-03 14:20:55 +0000461if test "$with_iconv" = "no" ; then
462 echo Disabling ICONV support
Daniel Veillardd574f782001-03-14 19:40:17 +0000463else
Daniel Veillard220346d2001-12-07 11:33:54 +0000464 if test "$with_iconv" != "yes" -a "$with_iconv" != "" ; then
Daniel Veillard6e90d192001-07-03 16:37:49 +0000465 CPPFLAGS="${CPPFLAGS} -I$with_iconv/include"
Daniel Veillardf5b44e42001-09-17 17:19:54 +0000466 # Export this since our headers include iconv.h
467 XML_INCLUDEDIR="${XML_INCLUDEDIR} -I$with_iconv/include"
Daniel Veillard6e90d192001-07-03 16:37:49 +0000468 ICONV_LIBS="-L$with_iconv/lib"
Daniel Veillard496a1cf2000-05-03 14:20:55 +0000469 fi
Daniel Veillard6e90d192001-07-03 16:37:49 +0000470
471 AC_CHECK_HEADER(iconv.h,
472 AC_MSG_CHECKING(for iconv)
473 AC_TRY_LINK([#include <stdlib.h>
474#include <iconv.h>],[
475iconv_t cd = iconv_open ("","");
476iconv (cd, NULL, NULL, NULL, NULL);],[
477 AC_MSG_RESULT(yes)
478 WITH_ICONV=1],[
479 AC_MSG_RESULT(no)
480 AC_MSG_CHECKING(for iconv in -liconv)
481
482 _ldflags="${LDFLAGS}"
483 _libs="${LIBS}"
484 LDFLAGS="${LDFLAGS} ${ICONV_LIBS}"
485 LIBS="${LIBS} -liconv"
486
487 AC_TRY_LINK([#include <stdlib.h>
488#include <iconv.h>],[
489iconv_t cd = iconv_open ("","");
490iconv (cd, NULL, NULL, NULL, NULL);],[
491 AC_MSG_RESULT(yes)
492 WITH_ICONV=1
493 ICONV_LIBS="${ICONV_LIBS} -liconv"
494 LIBS="${_libs}"
495 LDFLAGS="${_ldflags}"],[
496 AC_MSG_RESULT(no)
497 LIBS="${_libs}"
498 LDFLAGS="${_ldflags}"])]))
499fi
Daniel Veillardb82c1662001-12-09 14:00:54 +0000500M_LIBS="-lm"
501XML_LIBS="-lxml2 $Z_LIBS $THREAD_LIBS $ICONV_LIBS $M_LIBS $LIBS"
Daniel Veillard496a1cf2000-05-03 14:20:55 +0000502AC_SUBST(WITH_ICONV)
503
Daniel Veillard361d8452000-04-03 19:48:13 +0000504AC_ARG_WITH(debug, [ --with-debug Add the debugging module (on)])
505if test "$with_debug" = "no" ; then
506 echo Disabling DEBUG support
507 WITH_DEBUG=0
508 DEBUG_OBJ=
509else
510 WITH_DEBUG=1
511 DEBUG_OBJ=debugXML.o
512fi
513AC_SUBST(WITH_DEBUG)
514AC_SUBST(DEBUG_OBJ)
515
516AC_ARG_WITH(mem_debug, [ --with-mem-debug Add the memory debugging module (off)])
517if test "$with_mem_debug" = "yes" ; then
518 echo Enabling memory debug support
519 WITH_MEM_DEBUG=1
520else
521 WITH_MEM_DEBUG=0
522fi
523AC_SUBST(WITH_MEM_DEBUG)
524
Daniel Veillardd7e200c1999-11-15 17:53:11 +0000525AC_SUBST(CFLAGS)
Daniel Veillardf5c2c871999-12-01 09:51:45 +0000526AC_SUBST(XML_CFLAGS)
Daniel Veillardd7e200c1999-11-15 17:53:11 +0000527
Daniel Veillardb05deb71999-08-10 19:04:08 +0000528AC_SUBST(XML_LIBDIR)
529AC_SUBST(XML_LIBS)
Daniel Veillard81418e32001-05-22 15:08:55 +0000530AC_SUBST(ICONV_LIBS)
Daniel Veillardb05deb71999-08-10 19:04:08 +0000531AC_SUBST(XML_INCLUDEDIR)
532AC_SUBST(HTML_DIR)
533AC_SUBST(HAVE_ISNAN)
534AC_SUBST(HAVE_ISINF)
Daniel Veillardf1d0e6b2002-01-31 23:42:44 +0000535AC_SUBST(PYTHON)
536AC_SUBST(PYTHON_VERSION)
537AC_SUBST(PYTHON_INCLUDES)
Daniel Veillard253aa2c2002-02-02 09:17:16 +0000538AC_SUBST(PYTHON_SITE_PACKAGES)
Daniel Veillardb05deb71999-08-10 19:04:08 +0000539
Daniel Veillardb05deb71999-08-10 19:04:08 +0000540AC_SUBST(M_LIBS)
Daniel Veillard437b87b2000-01-03 17:30:46 +0000541AC_SUBST(RDL_LIBS)
Daniel Veillard361d8452000-04-03 19:48:13 +0000542
Daniel Veillardc575b992002-02-08 13:28:40 +0000543rm -f rm COPYING.LIB COPYING
544ln -s Copyright COPYING
545
Daniel Veillardfa49d872002-03-09 10:20:00 +0000546AC_OUTPUT(libxml.spec Makefile include/Makefile include/libxml/Makefile doc/Makefile example/Makefile python/Makefile python/tests/Makefile include/libxml/xmlversion.h include/libxml/xmlwin32version.h xml2-config libxml-2.0.pc xml2Conf.sh python/setup.py)
Arturo Espinosa15fe6e71998-09-07 17:27:57 +0000547