blob: 5bc63d5cb408ce804dc4657f6a133bbd2d211d5a [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 Veillardaf43f632002-03-08 15:05:20 +00009LIBXML_MICRO_VERSION=17
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 Veillard8c1ae602002-03-07 11:21:00 +000090AC_CHECK_HEADERS(sys/timeb.h signal.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 Veillard07cdb2a2001-09-12 20:19:58 +0000151XML_INCLUDEDIR='-I${includedir}/libxml2/libxml -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 Veillardb0426ca2000-10-11 23:39:43 +0000236
Daniel Veillardf5c2c871999-12-01 09:51:45 +0000237dnl
238dnl Use buffers for content
239dnl
240
241AC_ARG_WITH(buffers, [ --with-buffers Use buffers for node content])
242if test "$with_buffers" = "yes" ; then
243 CFLAGS="${CFLAGS} -DXML_USE_BUFFER_CONTENT"
244 XML_CFLAGS="${XML_CFLAGS} -DXML_USE_BUFFER_CONTENT"
245fi
246
Daniel Veillard437b87b2000-01-03 17:30:46 +0000247dnl
248dnl Tester makes use of readline if present
249dnl
Daniel Veillard03109292000-08-14 14:58:22 +0000250_cppflags="${CPPFLAGS}"
251_ldflags="${LDFLAGS}"
Daniel Veillard437b87b2000-01-03 17:30:46 +0000252
Daniel Veillard03109292000-08-14 14:58:22 +0000253AC_ARG_WITH(readline,
254[ --with-readline=DIR use readline in DIR],[
255 if test "$withval" != "no" -a "$withval" != "yes"; then
256 RDL_DIR=$withval
257 CPPFLAGS="${CPPFLAGS} -I$withval/include"
258 LDFLAGS="${LDFLAGS} -L$withval/lib"
259 fi
260])
261
Daniel Veillard361d8452000-04-03 19:48:13 +0000262dnl
Daniel Veillardf6eea272001-01-18 12:17:12 +0000263dnl specific tests to setup DV's devel environment with debug etc ...
Daniel Veillard81418e32001-05-22 15:08:55 +0000264dnl (-Wunreachable-code)
Daniel Veillardf6eea272001-01-18 12:17:12 +0000265dnl
266if test "${LOGNAME}" = "veillard" -a "`pwd`" = "/u/veillard/XML" ; then
267 if test "${with_mem_debug}" = "" ; then
268 with_mem_debug="yes"
269 fi
Daniel Veillardeae522a2001-04-23 13:41:34 +0000270 if test "${with_docbook}" = "" ; then
271 with_docbook="yes"
272 fi
Daniel Veillardf6eea272001-01-18 12:17:12 +0000273 if test "${with_xptr}" = "" ; then
274 with_xptr="yes"
275 fi
Daniel Veillard0ba59232002-02-10 13:20:39 +0000276 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 +0000277dnl -Wcast-qual -ansi
Daniel Veillardf6eea272001-01-18 12:17:12 +0000278fi
Daniel Veillard92ad2102001-03-27 12:47:33 +0000279
280dnl
281dnl Check for trio string functions
282dnl
283
284if test "${NEED_TRIO}" = "1" ; then
285 echo Adding trio library for string functions
286 WITH_TRIO=1
287else
288 WITH_TRIO=0
289fi
Daniel Veillard01ef7382001-05-08 07:31:43 +0000290AM_CONDITIONAL(WITH_TRIO_SOURCES, test "${NEED_TRIO}" = "1")
Daniel Veillard92ad2102001-03-27 12:47:33 +0000291AC_SUBST(WITH_TRIO)
292
Daniel Veillardf6eea272001-01-18 12:17:12 +0000293dnl
Daniel Veillardb8478642001-10-12 17:29:10 +0000294dnl Aloow to enable/disable various pieces
Daniel Veillard361d8452000-04-03 19:48:13 +0000295dnl
296
Daniel Veillardb8478642001-10-12 17:29:10 +0000297THREAD_LIBS=""
298WITH_THREADS=0
299THREAD_CFLAGS=""
Daniel Veillardab7488e2001-10-17 11:30:37 +0000300TEST_THREADS=""
Daniel Veillard64a411c2001-10-15 12:32:07 +0000301
Daniel Veillardb8478642001-10-12 17:29:10 +0000302AC_ARG_WITH(threads, [ --with-threads Add multithread support(off)])
303if test "$with_threads" = "yes" ; then
304 echo Enabling multithreaded support
305
306 AC_CHECK_HEADER(pthread.h,
Daniel Veillardcbaf3992001-12-31 16:16:02 +0000307 AC_CHECK_LIB(pthread, pthread_join,[
Daniel Veillardb8478642001-10-12 17:29:10 +0000308 THREAD_LIBS="-lpthread"
309 AC_DEFINE(HAVE_LIBPTHREAD)
310 AC_DEFINE(HAVE_PTHREAD_H)
Daniel Veillardab7488e2001-10-17 11:30:37 +0000311 WITH_THREADS="1"]))
Daniel Veillardb8478642001-10-12 17:29:10 +0000312
313 if test "$WITH_THREADS" = "1" ; then
Daniel Veillardab7488e2001-10-17 11:30:37 +0000314 THREAD_CFLAGS="$THREAD_CFLAGS -D_REENTRANT"
315 TEST_THREADS="Threadtests"
Daniel Veillardb8478642001-10-12 17:29:10 +0000316 fi
317fi
Daniel Veillard64a411c2001-10-15 12:32:07 +0000318AC_ARG_WITH(thread-alloc, [ --with-thread-alloc Add per-thread memory(off)])
Daniel Veillardab7488e2001-10-17 11:30:37 +0000319if test "$with_threads_alloc" = "yes" -a "$WITH_THREADS" = "1" ; then
320 THREAD_CFLAGS="$THREAD_CFLAGS -DLIBXML_THREAD_ALLOC_ENABLED"
Daniel Veillard64a411c2001-10-15 12:32:07 +0000321fi
322
Daniel Veillardb8478642001-10-12 17:29:10 +0000323AC_SUBST(THREAD_LIBS)
324AC_SUBST(WITH_THREADS)
325AC_SUBST(THREAD_CFLAGS)
Daniel Veillardab7488e2001-10-17 11:30:37 +0000326AC_SUBST(TEST_THREADS)
Daniel Veillardb8478642001-10-12 17:29:10 +0000327
328AC_ARG_WITH(history, [ --with-history Add history support to xmllint shell(off)])
Daniel Veillard259ff742001-10-06 13:49:59 +0000329if test "$with_history" = "yes" ; then
Daniel Veillardf012a642001-07-23 19:10:52 +0000330 echo Enabling xmllint shell history
331 dnl check for terminal library. this is a very cool solution
332 dnl from octave's configure.in
333 unset tcap
334 for termlib in ncurses curses termcap terminfo termlib; do
335 AC_CHECK_LIB(${termlib}, tputs, [tcap="-l$termlib"])
336 test -n "$tcap" && break
337 done
338
339 AC_CHECK_HEADER(readline/history.h,
340 AC_CHECK_LIB(history, append_history,[
341 RDL_LIBS="-lhistory"
342 AC_DEFINE(HAVE_LIBHISTORY)]))
343 AC_CHECK_HEADER(readline/readline.h,
344 AC_CHECK_LIB(readline, readline,[
345 RDL_LIBS="-lreadline $RDL_LIBS $tcap"
346 AC_DEFINE(HAVE_LIBREADLINE)], , $tcap))
347 if test -n "$RDL_DIR" -a -n "$RDL_LIBS"; then
348 CPPFLAGS="$CPPFLAGS -I${RDL_DIR}/include"
349 RDL_LIBS="-L${RDL_DIR}/lib $RDL_LIBS"
350 else
351 CPPFLAGS=${_cppflags}
352 fi
353 LDFLAGS=${_ldflags}
354fi
355
356AC_SUBST(WITH_FTP)
357AC_SUBST(FTP_OBJ)
Daniel Veillard361d8452000-04-03 19:48:13 +0000358AC_ARG_WITH(ftp, [ --with-ftp Add the FTP support (on)])
359if test "$with_ftp" = "no" ; then
360 echo Disabling FTP support
361 WITH_FTP=0
362 FTP_OBJ=
363else
364 WITH_FTP=1
365 FTP_OBJ=nanoftp.o
366fi
367AC_SUBST(WITH_FTP)
368AC_SUBST(FTP_OBJ)
369
370AC_ARG_WITH(http, [ --with-http Add the HTTP support (on)])
371if test "$with_http" = "no" ; then
372 echo Disabling HTTP support
373 WITH_HTTP=0
374 HTTP_OBJ=
375else
376 WITH_HTTP=1
377 HTTP_OBJ=nanohttp.o
378fi
379AC_SUBST(WITH_HTTP)
380AC_SUBST(HTTP_OBJ)
381
382AC_ARG_WITH(html, [ --with-html Add the HTML support (on)])
383if test "$with_html" = "no" ; then
384 echo Disabling HTML support
385 WITH_HTML=0
386 HTML_OBJ=
387else
388 WITH_HTML=1
389 HTML_OBJ="HTMLparser.o HTMLtree.o"
390fi
391AC_SUBST(WITH_HTML)
392AC_SUBST(HTML_OBJ)
393
Daniel Veillarda7374592001-05-10 14:17:55 +0000394AC_ARG_WITH(catalog, [ --with-catalog Add the Catalog support (on)])
395if test "$with_catalog" = "no" ; then
396 echo Disabling Catalog support
397 WITH_CATALOG=0
398 CATALOG_OBJ=
399else
400 WITH_CATALOG=1
401 CATALOG_OBJ="catalog.o"
402fi
403AC_SUBST(WITH_CATALOG)
404AC_SUBST(CATALOG_OBJ)
405
Daniel Veillard6e90d192001-07-03 16:37:49 +0000406AC_ARG_WITH(docbook, [ --with-docbook Add Docbook SGML support (on)])
Daniel Veillardb59076b2001-04-29 17:04:07 +0000407if test "$with_docbook" = "no" ; then
408 echo Disabling Docbook support
Daniel Veillardeae522a2001-04-23 13:41:34 +0000409 WITH_DOCB=0
410 DOCB_OBJ=
Daniel Veillardb59076b2001-04-29 17:04:07 +0000411else
412 WITH_DOCB=1
413 DOCB_OBJ="DOCBparser.o"
Daniel Veillardeae522a2001-04-23 13:41:34 +0000414fi
415AC_SUBST(WITH_DOCB)
416AC_SUBST(DOCB_OBJ)
417
418
Daniel Veillard361d8452000-04-03 19:48:13 +0000419AC_ARG_WITH(xpath, [ --with-xpath Add the XPATH support (on)])
420if test "$with_xpath" = "no" ; then
421 echo Disabling XPATH support
Daniel Veillard52afe802000-10-22 16:56:02 +0000422 with_xptr="no"
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000423 with-c14n="no"
Daniel Veillard361d8452000-04-03 19:48:13 +0000424 WITH_XPATH=0
425 XPATH_OBJ=
426else
427 WITH_XPATH=1
428 XPATH_OBJ=xpath.o
429fi
430AC_SUBST(WITH_XPATH)
431AC_SUBST(XPATH_OBJ)
432
Daniel Veillardc8df0aa2000-10-10 23:50:30 +0000433AC_ARG_WITH(xptr, [ --with-xptr Add the XPointer support (on)])
434if test "$with_xptr" = "no" ; then
435 echo Disabling XPointer support
436 WITH_XPTR=0
437 XPTR_OBJ=
438else
439 WITH_XPTR=1
440 XPTR_OBJ=xpointer.o
441fi
442AC_SUBST(WITH_XPTR)
443AC_SUBST(XPTR_OBJ)
444
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000445AC_ARG_WITH(c14n, [ --with-c14n Add the Canonicalization support (on)])
446if test "$with_c14n" = "no" ; then
447 echo Disabling C14N support
448 WITH_C14N=0
449 C14N_OBJ=
450else
451 WITH_C14N=1
452 C14N_OBJ="c14n.c"
453fi
454AC_SUBST(WITH_C14N)
455AC_SUBST(C14N_OBJ)
456
Daniel Veillard9e8bfae2000-11-06 16:43:11 +0000457AC_ARG_WITH(xinclude, [ --with-xinclude Add the XInclude support (on)])
458if test "$with_xinclude" = "no" ; then
459 echo Disabling XInclude support
460 WITH_XINCLUDE=0
461 XINCLUDE_OBJ=
462 with_xinclude="no"
463else
464 WITH_XINCLUDE=1
465 XINCLUDE_OBJ=xinclude.o
466fi
467AC_SUBST(WITH_XINCLUDE)
468AC_SUBST(XINCLUDE_OBJ)
469
Daniel Veillard6e90d192001-07-03 16:37:49 +0000470WITH_ICONV=0
471AC_ARG_WITH(iconv, [ --with-iconv[=DIR] Add ICONV support (on)])
Daniel Veillard496a1cf2000-05-03 14:20:55 +0000472if test "$with_iconv" = "no" ; then
473 echo Disabling ICONV support
Daniel Veillardd574f782001-03-14 19:40:17 +0000474else
Daniel Veillard220346d2001-12-07 11:33:54 +0000475 if test "$with_iconv" != "yes" -a "$with_iconv" != "" ; then
Daniel Veillard6e90d192001-07-03 16:37:49 +0000476 CPPFLAGS="${CPPFLAGS} -I$with_iconv/include"
Daniel Veillardf5b44e42001-09-17 17:19:54 +0000477 # Export this since our headers include iconv.h
478 XML_INCLUDEDIR="${XML_INCLUDEDIR} -I$with_iconv/include"
Daniel Veillard6e90d192001-07-03 16:37:49 +0000479 ICONV_LIBS="-L$with_iconv/lib"
Daniel Veillard496a1cf2000-05-03 14:20:55 +0000480 fi
Daniel Veillard6e90d192001-07-03 16:37:49 +0000481
482 AC_CHECK_HEADER(iconv.h,
483 AC_MSG_CHECKING(for iconv)
484 AC_TRY_LINK([#include <stdlib.h>
485#include <iconv.h>],[
486iconv_t cd = iconv_open ("","");
487iconv (cd, NULL, NULL, NULL, NULL);],[
488 AC_MSG_RESULT(yes)
489 WITH_ICONV=1],[
490 AC_MSG_RESULT(no)
491 AC_MSG_CHECKING(for iconv in -liconv)
492
493 _ldflags="${LDFLAGS}"
494 _libs="${LIBS}"
495 LDFLAGS="${LDFLAGS} ${ICONV_LIBS}"
496 LIBS="${LIBS} -liconv"
497
498 AC_TRY_LINK([#include <stdlib.h>
499#include <iconv.h>],[
500iconv_t cd = iconv_open ("","");
501iconv (cd, NULL, NULL, NULL, NULL);],[
502 AC_MSG_RESULT(yes)
503 WITH_ICONV=1
504 ICONV_LIBS="${ICONV_LIBS} -liconv"
505 LIBS="${_libs}"
506 LDFLAGS="${_ldflags}"],[
507 AC_MSG_RESULT(no)
508 LIBS="${_libs}"
509 LDFLAGS="${_ldflags}"])]))
510fi
Daniel Veillardb82c1662001-12-09 14:00:54 +0000511M_LIBS="-lm"
512XML_LIBS="-lxml2 $Z_LIBS $THREAD_LIBS $ICONV_LIBS $M_LIBS $LIBS"
Daniel Veillard496a1cf2000-05-03 14:20:55 +0000513AC_SUBST(WITH_ICONV)
514
Daniel Veillard361d8452000-04-03 19:48:13 +0000515AC_ARG_WITH(debug, [ --with-debug Add the debugging module (on)])
516if test "$with_debug" = "no" ; then
517 echo Disabling DEBUG support
518 WITH_DEBUG=0
519 DEBUG_OBJ=
520else
521 WITH_DEBUG=1
522 DEBUG_OBJ=debugXML.o
523fi
524AC_SUBST(WITH_DEBUG)
525AC_SUBST(DEBUG_OBJ)
526
527AC_ARG_WITH(mem_debug, [ --with-mem-debug Add the memory debugging module (off)])
528if test "$with_mem_debug" = "yes" ; then
529 echo Enabling memory debug support
530 WITH_MEM_DEBUG=1
531else
532 WITH_MEM_DEBUG=0
533fi
534AC_SUBST(WITH_MEM_DEBUG)
535
Daniel Veillardd7e200c1999-11-15 17:53:11 +0000536AC_SUBST(CFLAGS)
Daniel Veillardf5c2c871999-12-01 09:51:45 +0000537AC_SUBST(XML_CFLAGS)
Daniel Veillardd7e200c1999-11-15 17:53:11 +0000538
Daniel Veillardb05deb71999-08-10 19:04:08 +0000539AC_SUBST(XML_LIBDIR)
540AC_SUBST(XML_LIBS)
Daniel Veillard81418e32001-05-22 15:08:55 +0000541AC_SUBST(ICONV_LIBS)
Daniel Veillardb05deb71999-08-10 19:04:08 +0000542AC_SUBST(XML_INCLUDEDIR)
543AC_SUBST(HTML_DIR)
544AC_SUBST(HAVE_ISNAN)
545AC_SUBST(HAVE_ISINF)
Daniel Veillardf1d0e6b2002-01-31 23:42:44 +0000546AC_SUBST(PYTHON)
547AC_SUBST(PYTHON_VERSION)
548AC_SUBST(PYTHON_INCLUDES)
Daniel Veillard253aa2c2002-02-02 09:17:16 +0000549AC_SUBST(PYTHON_SITE_PACKAGES)
Daniel Veillardb05deb71999-08-10 19:04:08 +0000550
Daniel Veillardb05deb71999-08-10 19:04:08 +0000551AC_SUBST(M_LIBS)
Daniel Veillard437b87b2000-01-03 17:30:46 +0000552AC_SUBST(RDL_LIBS)
Daniel Veillard361d8452000-04-03 19:48:13 +0000553
Daniel Veillardc575b992002-02-08 13:28:40 +0000554rm -f rm COPYING.LIB COPYING
555ln -s Copyright COPYING
556
Daniel Veillardfa49d872002-03-09 10:20:00 +0000557AC_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 +0000558