Daniel Veillard | 01791d5 | 1998-07-24 19:24:09 +0000 | [diff] [blame] | 1 | dnl Process this file with autoconf to produce a configure script. |
Owen Taylor | 3473f88 | 2001-02-23 17:55:21 +0000 | [diff] [blame] | 2 | AC_INIT(entities.c) |
Daniel Veillard | 01791d5 | 1998-07-24 19:24:09 +0000 | [diff] [blame] | 3 | AM_CONFIG_HEADER(config.h) |
Daniel Veillard | d2ade93 | 2000-09-30 14:39:55 +0000 | [diff] [blame] | 4 | AC_CANONICAL_HOST |
Daniel Veillard | 14fff06 | 1999-06-22 21:49:07 +0000 | [diff] [blame] | 5 | |
Daniel Veillard | cf46199 | 2000-03-14 18:30:20 +0000 | [diff] [blame] | 6 | LIBXML_MAJOR_VERSION=2 |
Daniel Veillard | 4fc5281 | 2003-09-01 20:33:13 +0000 | [diff] [blame] | 7 | LIBXML_MINOR_VERSION=6 |
Daniel Veillard | fabafd5 | 2006-06-08 08:16:33 +0000 | [diff] [blame] | 8 | LIBXML_MICRO_VERSION=26 |
Daniel Veillard | 3e35f8e | 2003-10-21 00:05:38 +0000 | [diff] [blame] | 9 | LIBXML_MICRO_VERSION_SUFFIX= |
Daniel Veillard | 4fc5281 | 2003-09-01 20:33:13 +0000 | [diff] [blame] | 10 | LIBXML_VERSION=$LIBXML_MAJOR_VERSION.$LIBXML_MINOR_VERSION.$LIBXML_MICRO_VERSION$LIBXML_MICRO_VERSION_SUFFIX |
Daniel Veillard | 14fff06 | 1999-06-22 21:49:07 +0000 | [diff] [blame] | 11 | LIBXML_VERSION_INFO=`expr $LIBXML_MAJOR_VERSION + $LIBXML_MINOR_VERSION`:$LIBXML_MICRO_VERSION:$LIBXML_MINOR_VERSION |
| 12 | |
Daniel Veillard | 361d845 | 2000-04-03 19:48:13 +0000 | [diff] [blame] | 13 | LIBXML_VERSION_NUMBER=`expr $LIBXML_MAJOR_VERSION \* 10000 + $LIBXML_MINOR_VERSION \* 100 + $LIBXML_MICRO_VERSION` |
| 14 | |
William M. Brack | f402549 | 2004-08-18 21:08:46 +0000 | [diff] [blame] | 15 | if test -f CVS/Entries; then |
Daniel Veillard | dab93ea | 2004-08-20 16:47:10 +0000 | [diff] [blame] | 16 | 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. Brack | f402549 | 2004-08-18 21:08:46 +0000 | [diff] [blame] | 22 | fi |
Daniel Veillard | 14fff06 | 1999-06-22 21:49:07 +0000 | [diff] [blame] | 23 | AC_SUBST(LIBXML_MAJOR_VERSION) |
| 24 | AC_SUBST(LIBXML_MINOR_VERSION) |
| 25 | AC_SUBST(LIBXML_MICRO_VERSION) |
| 26 | AC_SUBST(LIBXML_VERSION) |
| 27 | AC_SUBST(LIBXML_VERSION_INFO) |
Daniel Veillard | 361d845 | 2000-04-03 19:48:13 +0000 | [diff] [blame] | 28 | AC_SUBST(LIBXML_VERSION_NUMBER) |
William M. Brack | f402549 | 2004-08-18 21:08:46 +0000 | [diff] [blame] | 29 | AC_SUBST(LIBXML_VERSION_EXTRA) |
Daniel Veillard | 14fff06 | 1999-06-22 21:49:07 +0000 | [diff] [blame] | 30 | |
Daniel Veillard | 361d845 | 2000-04-03 19:48:13 +0000 | [diff] [blame] | 31 | VERSION=${LIBXML_VERSION} |
Daniel Veillard | 14fff06 | 1999-06-22 21:49:07 +0000 | [diff] [blame] | 32 | |
Daniel Veillard | edfb29b | 2000-03-14 19:59:05 +0000 | [diff] [blame] | 33 | AM_INIT_AUTOMAKE(libxml2, $VERSION) |
Daniel Veillard | 1164e75 | 1999-02-16 16:29:17 +0000 | [diff] [blame] | 34 | |
Daniel Veillard | 01791d5 | 1998-07-24 19:24:09 +0000 | [diff] [blame] | 35 | dnl Checks for programs. |
| 36 | AC_PROG_CC |
| 37 | AC_PROG_INSTALL |
Sebastian Wilhelmi | a44c8a4 | 1998-08-07 08:38:58 +0000 | [diff] [blame] | 38 | AC_PROG_CPP |
Daniel Veillard | 01791d5 | 1998-07-24 19:24:09 +0000 | [diff] [blame] | 39 | AC_PATH_PROG(RM, rm, /bin/rm) |
| 40 | AC_PATH_PROG(MV, mv, /bin/mv) |
| 41 | AC_PATH_PROG(TAR, tar, /bin/tar) |
William M. Brack | 1826d0a | 2004-07-21 09:03:57 +0000 | [diff] [blame] | 42 | AC_PATH_PROG(PERL, perl, /usr/bin/perl) |
Daniel Veillard | 8b817da | 2004-09-30 09:19:33 +0000 | [diff] [blame] | 43 | AC_PATH_PROG(XMLLINT, xmllint, /usr/bin/xmllint) |
Daniel Veillard | 06500c8 | 2004-09-07 09:12:44 +0000 | [diff] [blame] | 44 | AC_PATH_PROG(XSLTPROC, xsltproc, /usr/bin/xsltproc) |
Daniel Veillard | 01791d5 | 1998-07-24 19:24:09 +0000 | [diff] [blame] | 45 | |
Daniel Veillard | 0310929 | 2000-08-14 14:58:22 +0000 | [diff] [blame] | 46 | dnl Make sure we have an ANSI compiler |
| 47 | AM_C_PROTOTYPES |
| 48 | test "x$U" != "x" && AC_MSG_ERROR(Compiler not ANSI compliant) |
| 49 | |
Daniel Veillard | 6984e6d | 2003-12-09 14:20:17 +0000 | [diff] [blame] | 50 | AC_LIBTOOL_WIN32_DLL |
Daniel Veillard | 01791d5 | 1998-07-24 19:24:09 +0000 | [diff] [blame] | 51 | AM_PROG_LIBTOOL |
| 52 | |
Daniel Veillard | 4432df2 | 2003-09-28 18:58:27 +0000 | [diff] [blame] | 53 | dnl |
William M. Brack | 21e4ef2 | 2005-01-02 09:53:13 +0000 | [diff] [blame] | 54 | dnl We process the AC_ARG_WITH first so that later we can modify |
| 55 | dnl some of them to try to prevent impossible combinations. This |
| 56 | dnl also allows up so alphabetize the choices |
Daniel Veillard | 4432df2 | 2003-09-28 18:58:27 +0000 | [diff] [blame] | 57 | dnl |
Daniel Veillard | 4432df2 | 2003-09-28 18:58:27 +0000 | [diff] [blame] | 58 | |
William M. Brack | 21e4ef2 | 2005-01-02 09:53:13 +0000 | [diff] [blame] | 59 | dnl |
| 60 | dnl zlib option might change flags, so we save them initially |
| 61 | dnl |
Owen Taylor | 3473f88 | 2001-02-23 17:55:21 +0000 | [diff] [blame] | 62 | _cppflags="${CPPFLAGS}" |
| 63 | _ldflags="${LDFLAGS}" |
Daniel Veillard | 71b656e | 2000-01-05 14:46:17 +0000 | [diff] [blame] | 64 | |
William M. Brack | 21e4ef2 | 2005-01-02 09:53:13 +0000 | [diff] [blame] | 65 | AC_ARG_WITH(c14n, |
| 66 | [ --with-c14n add the Canonicalization support (on)]) |
| 67 | AC_ARG_WITH(catalog, |
| 68 | [ --with-catalog add the Catalog support (on)]) |
| 69 | AC_ARG_WITH(debug, |
| 70 | [ --with-debug add the debugging module (on)]) |
| 71 | AC_ARG_WITH(docbook, |
| 72 | [ --with-docbook add Docbook SGML support (on)]) |
| 73 | AC_ARG_WITH(fexceptions, |
| 74 | [ --with-fexceptions add GCC flag -fexceptions for C++ exceptions (off)]) |
| 75 | AC_ARG_WITH(ftp, |
| 76 | [ --with-ftp add the FTP support (on)]) |
| 77 | AC_ARG_WITH(history, |
| 78 | [ --with-history add history support to xmllint shell(off)]) |
| 79 | AC_ARG_WITH(html, |
| 80 | [ --with-html add the HTML support (on)]) |
| 81 | dnl Specific dir for HTML output ? |
| 82 | AC_ARG_WITH(html-dir, AC_HELP_STRING([--with-html-dir=path], |
| 83 | [path to base html directory, default $datadir/doc/html]), |
| 84 | [HTML_DIR=$withval], [HTML_DIR='$(datadir)/doc']) |
Daniel Veillard | 259ff74 | 2001-10-06 13:49:59 +0000 | [diff] [blame] | 85 | |
William M. Brack | 21e4ef2 | 2005-01-02 09:53:13 +0000 | [diff] [blame] | 86 | AC_ARG_WITH(html-subdir, AC_HELP_STRING([--with-html-subdir=path], |
| 87 | [directory used under html-dir, default $PACKAGE-$VERSION/html]), |
| 88 | [test "x$withval" != "x" && HTML_DIR="$HTML_DIR/$withval"], |
| 89 | [HTML_DIR="$HTML_DIR/\$(PACKAGE)-\$(VERSION)/html"]) |
| 90 | AC_SUBST(HTML_DIR) |
| 91 | AC_ARG_WITH(http, |
| 92 | [ --with-http add the HTTP support (on)]) |
| 93 | AC_ARG_WITH(iconv, |
| 94 | [ --with-iconv[[=DIR]] add ICONV support (on)]) |
| 95 | AC_ARG_WITH(iso8859x, |
| 96 | [ --with-iso8859x add ISO8859X support if no iconv (on)]) |
| 97 | AC_ARG_WITH(legacy, |
| 98 | [ --with-legacy add deprecated APIs for compatibility (on)]) |
| 99 | AC_ARG_WITH(mem_debug, |
| 100 | [ --with-mem-debug add the memory debugging module (off)]) |
| 101 | AC_ARG_WITH(minimum, |
| 102 | [ --with-minimum build a minimally sized library (off)]) |
| 103 | AC_ARG_WITH(output, |
| 104 | [ --with-output add the serialization support (on)]) |
| 105 | AC_ARG_WITH(pattern, |
| 106 | [ --with-pattern add the xmlPattern selection interface (on)]) |
| 107 | AC_ARG_WITH(push, |
| 108 | [ --with-push add the PUSH parser interfaces (on)]) |
| 109 | AC_ARG_WITH(python, |
| 110 | [ --with-python[[=DIR]] build Python bindings if found]) |
| 111 | AC_ARG_WITH(reader, |
| 112 | [ --with-reader add the xmlReader parsing interface (on)]) |
| 113 | AC_ARG_WITH(readline, |
| 114 | [ --with-readline=DIR use readline in DIR],[ |
| 115 | if test "$withval" != "no" -a "$withval" != "yes"; then |
| 116 | RDL_DIR=$withval |
| 117 | CPPFLAGS="${CPPFLAGS} -I$withval/include" |
| 118 | LDFLAGS="${LDFLAGS} -L$withval/lib" |
| 119 | fi |
| 120 | ]) |
| 121 | AC_ARG_WITH(regexps, |
| 122 | [ --with-regexps add Regular Expressions support (on)]) |
| 123 | AC_ARG_WITH(run_debug, |
| 124 | [ --with-run-debug add the runtime debugging module (off)]) |
| 125 | AC_ARG_WITH(sax1, |
| 126 | [ --with-sax1 add the older SAX1 interface (on)]) |
| 127 | AC_ARG_WITH(schemas, |
Daniel Veillard | 39e5c89 | 2005-07-03 22:48:50 +0000 | [diff] [blame] | 128 | [ --with-schemas add Relax-NG and Schemas support (on)]) |
Daniel Veillard | ed6c549 | 2005-07-23 15:00:22 +0000 | [diff] [blame] | 129 | AC_ARG_WITH(schematron, |
| 130 | [ --with-schematron add Schematron support (on)]) |
William M. Brack | 21e4ef2 | 2005-01-02 09:53:13 +0000 | [diff] [blame] | 131 | AC_ARG_WITH(threads, |
| 132 | [ --with-threads add multithread support(on)]) |
| 133 | AC_ARG_WITH(thread-alloc, |
| 134 | [ --with-thread-alloc add per-thread memory(off)]) |
| 135 | AC_ARG_WITH(tree, |
| 136 | [ --with-tree add the DOM like tree manipulation APIs (on)]) |
| 137 | AC_ARG_WITH(valid, |
| 138 | [ --with-valid add the DTD validation support (on)]) |
| 139 | AC_ARG_WITH(writer, |
| 140 | [ --with-writer add the xmlWriter saving interface (on)]) |
| 141 | AC_ARG_WITH(xinclude, |
| 142 | [ --with-xinclude add the XInclude support (on)]) |
| 143 | AC_ARG_WITH(xpath, |
| 144 | [ --with-xpath add the XPATH support (on)]) |
| 145 | AC_ARG_WITH(xptr, |
| 146 | [ --with-xptr add the XPointer support (on)]) |
Daniel Veillard | f6b71bd | 2005-01-04 17:50:14 +0000 | [diff] [blame] | 147 | AC_ARG_WITH(modules, |
| 148 | [ --with-modules add the dynamic modules support (on)]) |
Owen Taylor | 3473f88 | 2001-02-23 17:55:21 +0000 | [diff] [blame] | 149 | AC_ARG_WITH(zlib, |
William M. Brack | 97ad4c7 | 2003-05-13 08:08:36 +0000 | [diff] [blame] | 150 | [ --with-zlib[[=DIR]] use libz in DIR],[ |
Owen Taylor | 3473f88 | 2001-02-23 17:55:21 +0000 | [diff] [blame] | 151 | if test "$withval" != "no" -a "$withval" != "yes"; then |
| 152 | Z_DIR=$withval |
| 153 | CPPFLAGS="${CPPFLAGS} -I$withval/include" |
| 154 | LDFLAGS="${LDFLAGS} -L$withval/lib" |
| 155 | fi |
Daniel Veillard | 259ff74 | 2001-10-06 13:49:59 +0000 | [diff] [blame] | 156 | ]) |
William M. Brack | 21e4ef2 | 2005-01-02 09:53:13 +0000 | [diff] [blame] | 157 | |
| 158 | dnl |
Daniel Veillard | 39e5c89 | 2005-07-03 22:48:50 +0000 | [diff] [blame] | 159 | dnl hard dependancies on options |
| 160 | dnl |
| 161 | if test "$with_schemas" = "yes" |
| 162 | then |
| 163 | with_pattern=yes |
| 164 | with_regexp=yes |
| 165 | fi |
Daniel Veillard | ed6c549 | 2005-07-23 15:00:22 +0000 | [diff] [blame] | 166 | if test "$with_schematron" = "yes" |
| 167 | then |
| 168 | with_pattern=yes |
| 169 | with_xpath=yes |
| 170 | fi |
Daniel Veillard | 39e5c89 | 2005-07-03 22:48:50 +0000 | [diff] [blame] | 171 | if test "$with_reader" = "yes" |
| 172 | then |
| 173 | with_push=yes |
| 174 | fi |
| 175 | if test "$with_xptr" = "yes" |
| 176 | then |
| 177 | with_xpath=yes |
| 178 | fi |
| 179 | dnl |
William M. Brack | 21e4ef2 | 2005-01-02 09:53:13 +0000 | [diff] [blame] | 180 | dnl option to build a minimal libxml2 library |
| 181 | dnl |
| 182 | if test "$with_minimum" = "yes" |
Daniel Veillard | 4432df2 | 2003-09-28 18:58:27 +0000 | [diff] [blame] | 183 | then |
William M. Brack | 21e4ef2 | 2005-01-02 09:53:13 +0000 | [diff] [blame] | 184 | echo "Configuring for a minimal library" |
| 185 | if test "$with_c14n" = "" |
| 186 | then |
| 187 | with_c14n=no |
| 188 | fi |
| 189 | if test "$with_catalog" = "" |
| 190 | then |
| 191 | with_catalog=no |
| 192 | fi |
| 193 | echo So far so good! |
| 194 | if test "$with_debug" = "" |
| 195 | then |
| 196 | with_debug=no |
| 197 | fi |
| 198 | if test "$with_docbook" = "" |
| 199 | then |
| 200 | with_docbook=no |
| 201 | fi |
| 202 | if test "$with_fexceptions" = "" |
| 203 | then |
| 204 | with_fexceptions=no |
| 205 | fi |
| 206 | if test "$with_ftp" = "" |
| 207 | then |
| 208 | with_ftp=no |
| 209 | fi |
| 210 | if test "$with_history" = "" |
| 211 | then |
| 212 | with_history=no |
| 213 | fi |
| 214 | if test "$with_html" = "" |
| 215 | then |
| 216 | with_html=no |
| 217 | fi |
| 218 | if test "$with_http" = "" |
| 219 | then |
| 220 | with_http=no |
| 221 | fi |
| 222 | if test "$with_iconv" = "" |
| 223 | then |
| 224 | with_iconv=no |
| 225 | fi |
| 226 | if test "$with_iso8859x" = "" |
| 227 | then |
| 228 | with_iso8859x=no |
| 229 | fi |
| 230 | if test "$with_legacy" = "" |
| 231 | then |
| 232 | with_legacy=no |
| 233 | fi |
| 234 | if test "$with_mem_debug" = "" |
| 235 | then |
| 236 | with_mem_debug=no |
| 237 | fi |
| 238 | if test "$with_output" = "" |
| 239 | then |
| 240 | with_output=no |
| 241 | fi |
| 242 | if test "$with_pattern" = "" |
| 243 | then |
| 244 | with_pattern=no |
| 245 | fi |
| 246 | if test "$with_push" = "" |
| 247 | then |
| 248 | with_push=no |
| 249 | fi |
| 250 | if test "$with_python" = "" |
| 251 | then |
| 252 | with_python=no |
| 253 | fi |
| 254 | if test "$with_reader" = "" |
| 255 | then |
| 256 | with_reader=no |
| 257 | fi |
| 258 | if test "$with_readline" = "" |
| 259 | then |
| 260 | with_readline=no |
| 261 | fi |
| 262 | if test "$with_regexp" = "" |
| 263 | then |
| 264 | with_regexp=no |
| 265 | fi |
| 266 | if test "$with_run_debug" = "" |
| 267 | then |
| 268 | with_run_debug=no |
| 269 | fi |
| 270 | if test "$with_sax1" = "" |
| 271 | then |
| 272 | with_sax1=no |
| 273 | fi |
| 274 | if test "$with_schemas" = "" |
| 275 | then |
| 276 | with_schemas=no |
| 277 | fi |
Daniel Veillard | ed6c549 | 2005-07-23 15:00:22 +0000 | [diff] [blame] | 278 | if test "$with_schematron" = "" |
| 279 | then |
| 280 | with_schematron=no |
| 281 | fi |
William M. Brack | 21e4ef2 | 2005-01-02 09:53:13 +0000 | [diff] [blame] | 282 | if test "$with_threads" = "" |
| 283 | then |
| 284 | with_threads=no |
| 285 | fi |
| 286 | if test "$with_thread_alloc" = "" |
| 287 | then |
| 288 | with_thread_alloc=no |
| 289 | fi |
| 290 | if test "$with_tree" = "" |
| 291 | then |
| 292 | with_tree=no |
| 293 | fi |
| 294 | if test "$with_valid" = "" |
| 295 | then |
| 296 | with_valid=no |
| 297 | fi |
| 298 | if test "$with_writer" = "" |
| 299 | then |
| 300 | with_writer=no |
| 301 | fi |
| 302 | if test "$with_xinclude" = "" |
| 303 | then |
| 304 | with_xinclude=no |
| 305 | fi |
| 306 | if test "$with_xpath" = "" |
| 307 | then |
| 308 | with_xpath=no |
| 309 | fi |
| 310 | if test "$with_xptr" = "" |
| 311 | then |
| 312 | with_xptr=no |
| 313 | fi |
| 314 | if test "$with_zlib" = "" |
| 315 | then |
| 316 | with_zlib=no |
| 317 | fi |
Daniel Veillard | f6b71bd | 2005-01-04 17:50:14 +0000 | [diff] [blame] | 318 | if test "$with_modules" = "" |
| 319 | then |
| 320 | with_modules=no |
| 321 | fi |
Daniel Veillard | 4432df2 | 2003-09-28 18:58:27 +0000 | [diff] [blame] | 322 | fi |
William M. Brack | 21e4ef2 | 2005-01-02 09:53:13 +0000 | [diff] [blame] | 323 | |
| 324 | echo Checking zlib |
| 325 | |
| 326 | dnl Checks for zlib library. |
| 327 | |
Daniel Veillard | 75acfee | 2006-07-13 06:29:56 +0000 | [diff] [blame] | 328 | WITH_ZLIB=0 |
Daniel Veillard | 259ff74 | 2001-10-06 13:49:59 +0000 | [diff] [blame] | 329 | if test "$with_zlib" = "no"; then |
| 330 | echo "Disabling compression support" |
| 331 | else |
Daniel Veillard | 3fbe8e3 | 2001-10-06 13:30:33 +0000 | [diff] [blame] | 332 | AC_CHECK_HEADERS(zlib.h, |
| 333 | AC_CHECK_LIB(z, gzread,[ |
Daniel Veillard | 75acfee | 2006-07-13 06:29:56 +0000 | [diff] [blame] | 334 | AC_DEFINE([HAVE_LIBZ], [1], [Have compression library]) |
| 335 | WITH_ZLIB=1 |
Daniel Veillard | 3fbe8e3 | 2001-10-06 13:30:33 +0000 | [diff] [blame] | 336 | if test "x${Z_DIR}" != "x"; then |
| 337 | Z_CFLAGS="-I${Z_DIR}/include" |
| 338 | Z_LIBS="-L${Z_DIR}/lib -lz" |
| 339 | [case ${host} in |
| 340 | *-*-solaris*) |
| 341 | Z_LIBS="-L${Z_DIR}/lib -R${Z_DIR}/lib -lz" |
| 342 | ;; |
| 343 | esac] |
| 344 | else |
| 345 | Z_LIBS="-lz" |
| 346 | fi])) |
Daniel Veillard | 259ff74 | 2001-10-06 13:49:59 +0000 | [diff] [blame] | 347 | fi |
Owen Taylor | 3473f88 | 2001-02-23 17:55:21 +0000 | [diff] [blame] | 348 | |
Owen Taylor | 3473f88 | 2001-02-23 17:55:21 +0000 | [diff] [blame] | 349 | AC_SUBST(Z_CFLAGS) |
| 350 | AC_SUBST(Z_LIBS) |
Daniel Veillard | 75acfee | 2006-07-13 06:29:56 +0000 | [diff] [blame] | 351 | AC_SUBST(WITH_ZLIB) |
Owen Taylor | 3473f88 | 2001-02-23 17:55:21 +0000 | [diff] [blame] | 352 | |
| 353 | CPPFLAGS=${_cppflags} |
| 354 | LDFLAGS=${_ldflags} |
Daniel Veillard | b05deb7 | 1999-08-10 19:04:08 +0000 | [diff] [blame] | 355 | |
William M. Brack | 21e4ef2 | 2005-01-02 09:53:13 +0000 | [diff] [blame] | 356 | echo Checking headers |
| 357 | |
Daniel Veillard | 01791d5 | 1998-07-24 19:24:09 +0000 | [diff] [blame] | 358 | dnl Checks for header files. |
| 359 | AC_HEADER_DIRENT |
| 360 | AC_HEADER_STDC |
Daniel Veillard | 817e70b | 2002-11-19 22:28:48 +0000 | [diff] [blame] | 361 | AC_CHECK_HEADERS([fcntl.h]) |
| 362 | AC_CHECK_HEADERS([unistd.h]) |
| 363 | AC_CHECK_HEADERS([ctype.h]) |
| 364 | AC_CHECK_HEADERS([dirent.h]) |
| 365 | AC_CHECK_HEADERS([errno.h]) |
| 366 | AC_CHECK_HEADERS([malloc.h]) |
| 367 | AC_CHECK_HEADERS([stdarg.h]) |
| 368 | AC_CHECK_HEADERS([sys/stat.h]) |
| 369 | AC_CHECK_HEADERS([sys/types.h]) |
| 370 | AC_CHECK_HEADERS([time.h]) |
| 371 | AC_CHECK_HEADERS([ansidecl.h]) |
| 372 | AC_CHECK_HEADERS([ieeefp.h]) |
| 373 | AC_CHECK_HEADERS([nan.h]) |
| 374 | AC_CHECK_HEADERS([math.h]) |
Daniel Veillard | ebe48c6 | 2003-12-03 12:12:27 +0000 | [diff] [blame] | 375 | AC_CHECK_HEADERS([limits.h]) |
Daniel Veillard | 817e70b | 2002-11-19 22:28:48 +0000 | [diff] [blame] | 376 | AC_CHECK_HEADERS([fp_class.h]) |
| 377 | AC_CHECK_HEADERS([float.h]) |
| 378 | AC_CHECK_HEADERS([stdlib.h]) |
| 379 | AC_CHECK_HEADERS([sys/socket.h], [], [], |
| 380 | [#if HAVE_SYS_TYPES_H |
| 381 | # include <sys/types.h> |
| 382 | # endif |
| 383 | ]) |
| 384 | AC_CHECK_HEADERS([netinet/in.h], [], [], |
| 385 | [#if HAVE_SYS_TYPES_H |
| 386 | # include <sys/types.h> |
| 387 | # endif |
| 388 | ]) |
| 389 | AC_CHECK_HEADERS([arpa/inet.h], [], [], |
| 390 | [#if HAVE_SYS_TYPES_H |
| 391 | # include <sys/types.h> |
| 392 | # endif |
| 393 | #if HAVE_ARPA_INET_H |
| 394 | # include <arpa/inet.h> |
| 395 | # endif |
| 396 | ]) |
| 397 | AC_CHECK_HEADERS([netdb.h]) |
| 398 | AC_CHECK_HEADERS([sys/time.h]) |
| 399 | AC_CHECK_HEADERS([sys/select.h]) |
| 400 | AC_CHECK_HEADERS([sys/mman.h]) |
| 401 | AC_CHECK_HEADERS([sys/timeb.h]) |
| 402 | AC_CHECK_HEADERS([signal.h]) |
| 403 | AC_CHECK_HEADERS([arpa/nameser.h], [], [], |
| 404 | [#if HAVE_SYS_TYPES_H |
| 405 | # include <sys/types.h> |
| 406 | # endif |
| 407 | ]) |
| 408 | AC_CHECK_HEADERS([resolv.h], [], [], |
| 409 | [#if HAVE_SYS_TYPES_H |
| 410 | # include <sys/types.h> |
| 411 | # endif |
| 412 | #if HAVE_NETINET_IN_H |
| 413 | # include <netinet/in.h> |
| 414 | # endif |
| 415 | #if HAVE_ARPA_NAMESER_H |
| 416 | # include <arpa/nameser.h> |
| 417 | # endif |
| 418 | ]) |
Daniel Veillard | dcd9390 | 2005-01-13 11:25:15 +0000 | [diff] [blame] | 419 | AC_CHECK_HEADERS([dl.h]) |
| 420 | AC_CHECK_HEADERS([dlfcn.h]) |
Daniel Veillard | 01791d5 | 1998-07-24 19:24:09 +0000 | [diff] [blame] | 421 | |
Daniel Veillard | fc97906 | 2004-03-04 22:07:16 +0000 | [diff] [blame] | 422 | |
William M. Brack | 21e4ef2 | 2005-01-02 09:53:13 +0000 | [diff] [blame] | 423 | echo Checking libraries |
Daniel Veillard | 1164e75 | 1999-02-16 16:29:17 +0000 | [diff] [blame] | 424 | |
Daniel Veillard | 01791d5 | 1998-07-24 19:24:09 +0000 | [diff] [blame] | 425 | dnl Checks for library functions. |
| 426 | AC_FUNC_STRFTIME |
Daniel Veillard | 92ad210 | 2001-03-27 12:47:33 +0000 | [diff] [blame] | 427 | AC_CHECK_FUNCS(strdup strndup strerror) |
Daniel Veillard | 71b656e | 2000-01-05 14:46:17 +0000 | [diff] [blame] | 428 | AC_CHECK_FUNCS(finite isnand fp_class class fpclass) |
Daniel Veillard | 90bc371 | 2002-03-07 15:12:58 +0000 | [diff] [blame] | 429 | AC_CHECK_FUNCS(strftime localtime gettimeofday ftime) |
Daniel Veillard | 068a965 | 2001-06-07 15:30:26 +0000 | [diff] [blame] | 430 | AC_CHECK_FUNCS(stat _stat signal) |
Daniel Veillard | 7f7d111 | 1999-09-22 09:46:25 +0000 | [diff] [blame] | 431 | |
Daniel Veillard | 92ad210 | 2001-03-27 12:47:33 +0000 | [diff] [blame] | 432 | dnl Checking the standard string functions availability |
| 433 | AC_CHECK_FUNCS(printf sprintf fprintf snprintf vfprintf vsprintf vsnprintf sscanf,, |
| 434 | NEED_TRIO=1) |
| 435 | |
William M. Brack | f4caa5e | 2005-10-20 09:04:05 +0000 | [diff] [blame] | 436 | dnl Checking for va_copy availability |
| 437 | AC_MSG_CHECKING([for va_copy]) |
| 438 | AC_TRY_LINK([#include <stdarg.h> |
| 439 | va_list ap1,ap2;], [va_copy(ap1,ap2);], |
| 440 | have_va_copy=yes, |
| 441 | have_va_copy=no) |
| 442 | AC_MSG_RESULT($have_va_copy) |
| 443 | if test x"$have_va_copy" = x"yes"; then |
| 444 | AC_DEFINE(HAVE_VA_COPY,1,[Whether va_copy() is available]) |
| 445 | else |
| 446 | AC_MSG_CHECKING([for __va_copy]) |
| 447 | AC_TRY_LINK([#include <stdarg.h> |
| 448 | va_list ap1,ap2;], [__va_copy(ap1,ap2);], |
| 449 | have___va_copy=yes, |
| 450 | have___va_copy=no) |
| 451 | AC_MSG_RESULT($have___va_copy) |
| 452 | if test x"$have___va_copy" = x"yes"; then |
| 453 | AC_DEFINE(HAVE___VA_COPY,1,[Whether __va_copy() is available]) |
| 454 | fi |
| 455 | fi |
| 456 | |
Daniel Veillard | 7f7d111 | 1999-09-22 09:46:25 +0000 | [diff] [blame] | 457 | dnl Checks for inet libraries: |
Daniel Veillard | d4e39ae | 2005-10-28 15:59:14 +0000 | [diff] [blame] | 458 | AC_SEARCH_LIBS(gethostent, [nsl]) |
| 459 | AC_SEARCH_LIBS(setsockopt, [socket net]) |
| 460 | AC_SEARCH_LIBS(connect, [inet]) |
Daniel Veillard | b05deb7 | 1999-08-10 19:04:08 +0000 | [diff] [blame] | 461 | |
Daniel Veillard | b0426ca | 2000-10-11 23:39:43 +0000 | [diff] [blame] | 462 | dnl Determine what socket length (socklen_t) data type is |
| 463 | AC_MSG_CHECKING([for type of socket length (socklen_t)]) |
| 464 | AC_TRY_COMPILE2([ |
| 465 | #include <stddef.h> |
| 466 | #include <sys/types.h> |
| 467 | #include <sys/socket.h>],[ |
| 468 | (void)getsockopt (1, 1, 1, NULL, (socklen_t *)NULL)],[ |
| 469 | AC_MSG_RESULT(socklen_t *) |
Daniel Veillard | c284c64 | 2005-03-31 10:24:24 +0000 | [diff] [blame] | 470 | XML_SOCKLEN_T=socklen_t],[ |
Daniel Veillard | b0426ca | 2000-10-11 23:39:43 +0000 | [diff] [blame] | 471 | AC_TRY_COMPILE2([ |
| 472 | #include <stddef.h> |
| 473 | #include <sys/types.h> |
| 474 | #include <sys/socket.h>],[ |
| 475 | (void)getsockopt (1, 1, 1, NULL, (size_t *)NULL)],[ |
| 476 | AC_MSG_RESULT(size_t *) |
Daniel Veillard | c284c64 | 2005-03-31 10:24:24 +0000 | [diff] [blame] | 477 | XML_SOCKLEN_T=size_t],[ |
Daniel Veillard | b0426ca | 2000-10-11 23:39:43 +0000 | [diff] [blame] | 478 | AC_TRY_COMPILE2([ |
| 479 | #include <stddef.h> |
| 480 | #include <sys/types.h> |
| 481 | #include <sys/socket.h>],[ |
| 482 | (void)getsockopt (1, 1, 1, NULL, (int *)NULL)],[ |
| 483 | AC_MSG_RESULT(int *) |
Daniel Veillard | c284c64 | 2005-03-31 10:24:24 +0000 | [diff] [blame] | 484 | XML_SOCKLEN_T=int],[ |
William M. Brack | 2e6b143 | 2004-02-09 15:10:28 +0000 | [diff] [blame] | 485 | AC_MSG_WARN(could not determine) |
Daniel Veillard | c284c64 | 2005-03-31 10:24:24 +0000 | [diff] [blame] | 486 | XML_SOCKLEN_T="int"])])]) |
| 487 | AC_DEFINE_UNQUOTED(XML_SOCKLEN_T, $XML_SOCKLEN_T, [Determine what socket length (socklen_t) data type is]) |
Daniel Veillard | b0426ca | 2000-10-11 23:39:43 +0000 | [diff] [blame] | 488 | |
Daniel Veillard | de2a67b | 2003-06-21 14:20:04 +0000 | [diff] [blame] | 489 | dnl ***********************Checking for availability of IPv6******************* |
| 490 | |
| 491 | AC_MSG_CHECKING([whether to enable IPv6]) |
William M. Brack | 21e4ef2 | 2005-01-02 09:53:13 +0000 | [diff] [blame] | 492 | AC_ARG_ENABLE(ipv6, [ --enable-ipv6[[=yes/no]] enables compilation of IPv6 code [[default=yes]]],, enable_ipv6=yes) |
Daniel Veillard | 4432df2 | 2003-09-28 18:58:27 +0000 | [diff] [blame] | 493 | if test "$with_minimum" = "yes" |
| 494 | then |
| 495 | enable_ipv6=no |
| 496 | fi |
Daniel Veillard | de2a67b | 2003-06-21 14:20:04 +0000 | [diff] [blame] | 497 | if test $enable_ipv6 = yes; then |
| 498 | have_ipv6=no |
| 499 | AC_TRY_COMPILE([ |
| 500 | #include <sys/socket.h> |
| 501 | #include <sys/types.h>], [ |
| 502 | struct sockaddr_storage ss; |
| 503 | socket(AF_INET6, SOCK_STREAM, 0) |
| 504 | ], |
| 505 | have_ipv6=yes, |
| 506 | have_ipv6=no |
| 507 | ) |
| 508 | AC_MSG_RESULT($have_ipv6) |
| 509 | |
William M. Brack | 476cd96 | 2003-08-13 11:09:42 +0000 | [diff] [blame] | 510 | if test $have_ipv6 = yes; then |
Daniel Veillard | c790bf4 | 2003-10-11 10:50:10 +0000 | [diff] [blame] | 511 | AC_DEFINE([SUPPORT_IP6], [], [Support for IPv6]) |
Dodji Seketeli | 8eba3f3 | 2004-11-09 18:30:30 +0000 | [diff] [blame] | 512 | have_broken_ss_family=no |
| 513 | |
| 514 | dnl ********************************************************************* |
| 515 | dnl on some platforms (like AIX 5L), the structure sockaddr doesn't have |
| 516 | dnl a ss_family member, but rather __ss_family. Let's detect that |
William M. Brack | 7d8b36b | 2005-06-25 07:30:50 +0000 | [diff] [blame] | 517 | dnl and define the HAVE_BROKEN_SS_FAMILY when we are on one of these |
| 518 | dnl platforms. However, we should only do this if ss_family is not |
| 519 | dnl present. |
Dodji Seketeli | 8eba3f3 | 2004-11-09 18:30:30 +0000 | [diff] [blame] | 520 | dnl ******************************************************************** |
William M. Brack | 7d8b36b | 2005-06-25 07:30:50 +0000 | [diff] [blame] | 521 | AC_MSG_CHECKING([struct sockaddr::ss_family]) |
Dodji Seketeli | 8eba3f3 | 2004-11-09 18:30:30 +0000 | [diff] [blame] | 522 | AC_TRY_COMPILE([ |
| 523 | #include <sys/socket.h> |
| 524 | #include <sys/types.h>], [ |
| 525 | struct sockaddr_storage ss ; |
William M. Brack | 7d8b36b | 2005-06-25 07:30:50 +0000 | [diff] [blame] | 526 | ss.ss_family = 0 ; |
Dodji Seketeli | 8eba3f3 | 2004-11-09 18:30:30 +0000 | [diff] [blame] | 527 | ], |
William M. Brack | 7d8b36b | 2005-06-25 07:30:50 +0000 | [diff] [blame] | 528 | have_ss_family=yes, |
| 529 | have_ss_family=no |
Dodji Seketeli | 8eba3f3 | 2004-11-09 18:30:30 +0000 | [diff] [blame] | 530 | ) |
William M. Brack | 7d8b36b | 2005-06-25 07:30:50 +0000 | [diff] [blame] | 531 | AC_MSG_RESULT($have_ss_family) |
| 532 | if test x$have_ss_family = xno ; then |
| 533 | AC_MSG_CHECKING([broken struct sockaddr::ss_family]) |
| 534 | AC_TRY_COMPILE([ |
| 535 | #include <sys/socket.h> |
| 536 | #include <sys/types.h>], [ |
| 537 | struct sockaddr_storage ss ; |
| 538 | ss.__ss_family = 0 ; |
| 539 | ], |
| 540 | have_broken_ss_family=yes, |
| 541 | have_broken_ss_family=no |
| 542 | ) |
| 543 | AC_MSG_RESULT($have_broken_ss_family) |
| 544 | if test x$have_broken_ss_family = xyes ; then |
| 545 | AC_DEFINE(HAVE_BROKEN_SS_FAMILY, [], |
| 546 | [Whether struct sockaddr::__ss_family exists]) |
| 547 | AC_DEFINE(ss_family, __ss_family, |
| 548 | [ss_family is not defined here, use __ss_family instead]) |
| 549 | else |
| 550 | AC_MSG_WARN(ss_family and __ss_family not found) |
| 551 | fi |
Dodji Seketeli | 8eba3f3 | 2004-11-09 18:30:30 +0000 | [diff] [blame] | 552 | fi |
Daniel Veillard | de2a67b | 2003-06-21 14:20:04 +0000 | [diff] [blame] | 553 | |
| 554 | have_getaddrinfo=no |
| 555 | AC_CHECK_FUNC(getaddrinfo, have_getaddrinfo=yes) |
| 556 | if test $have_getaddrinfo != yes; then |
| 557 | for lib in bsd socket inet; do |
| 558 | AC_CHECK_LIB($lib, getaddrinfo, [LIBS="$LIBS -l$lib";have_getaddrinfo=yes;break]) |
| 559 | done |
| 560 | fi |
| 561 | |
William M. Brack | 476cd96 | 2003-08-13 11:09:42 +0000 | [diff] [blame] | 562 | if test $have_getaddrinfo = yes; then |
Daniel Veillard | c790bf4 | 2003-10-11 10:50:10 +0000 | [diff] [blame] | 563 | AC_DEFINE([HAVE_GETADDRINFO], [], [Define if getaddrinfo is there]) |
Daniel Veillard | de2a67b | 2003-06-21 14:20:04 +0000 | [diff] [blame] | 564 | fi |
| 565 | fi |
| 566 | fi |
| 567 | |
| 568 | dnl ******************************End IPv6 checks****************************** |
| 569 | |
Daniel Veillard | b05deb7 | 1999-08-10 19:04:08 +0000 | [diff] [blame] | 570 | dnl Checks for isnan in libm if not in libc |
Daniel Veillard | 6984e6d | 2003-12-09 14:20:17 +0000 | [diff] [blame] | 571 | AC_CHECK_FUNC(isnan, AC_DEFINE([HAVE_ISNAN],[], [Define if isnan is there]) , AC_CHECK_LIB(m, isnan, |
Daniel Veillard | c790bf4 | 2003-10-11 10:50:10 +0000 | [diff] [blame] | 572 | [AC_DEFINE([HAVE_ISNAN],[], [Define if isnan is there])])) |
Daniel Veillard | b05deb7 | 1999-08-10 19:04:08 +0000 | [diff] [blame] | 573 | |
Daniel Veillard | c790bf4 | 2003-10-11 10:50:10 +0000 | [diff] [blame] | 574 | AC_CHECK_FUNC(isinf, AC_DEFINE([HAVE_ISINF], [], [Define if isinf is there]) , AC_CHECK_LIB(m, isinf, |
| 575 | [AC_DEFINE([HAVE_ISINF], [], [Define if isinf is there])])) |
Daniel Veillard | b05deb7 | 1999-08-10 19:04:08 +0000 | [diff] [blame] | 576 | |
| 577 | XML_LIBDIR='-L${libdir}' |
Daniel Veillard | e7dd2b8 | 2002-03-15 18:44:02 +0000 | [diff] [blame] | 578 | XML_INCLUDEDIR='-I${includedir}/libxml2' |
Daniel Veillard | b05deb7 | 1999-08-10 19:04:08 +0000 | [diff] [blame] | 579 | |
Daniel Veillard | d7e200c | 1999-11-15 17:53:11 +0000 | [diff] [blame] | 580 | dnl |
Daniel Veillard | f5c2c87 | 1999-12-01 09:51:45 +0000 | [diff] [blame] | 581 | dnl Extra flags |
| 582 | dnl |
| 583 | XML_CFLAGS="" |
Daniel Veillard | 357c960 | 2001-05-03 10:49:20 +0000 | [diff] [blame] | 584 | RDL_LIBS="" |
Daniel Veillard | f5c2c87 | 1999-12-01 09:51:45 +0000 | [diff] [blame] | 585 | |
| 586 | dnl |
Daniel Veillard | b45c43b | 2001-04-28 17:02:11 +0000 | [diff] [blame] | 587 | dnl Workaround for native compilers |
| 588 | dnl HP : http://bugs.gnome.org/db/31/3163.html |
| 589 | dnl DEC : Enable NaN/Inf |
Daniel Veillard | d7e200c | 1999-11-15 17:53:11 +0000 | [diff] [blame] | 590 | dnl |
Daniel Veillard | 0310929 | 2000-08-14 14:58:22 +0000 | [diff] [blame] | 591 | if test "${GCC}" != "yes" ; then |
Daniel Veillard | d7e200c | 1999-11-15 17:53:11 +0000 | [diff] [blame] | 592 | case "${host}" in |
Daniel Veillard | 6a0baa0 | 2005-12-10 11:11:12 +0000 | [diff] [blame] | 593 | hppa*-*-hpux* ) |
Daniel Veillard | 0310929 | 2000-08-14 14:58:22 +0000 | [diff] [blame] | 594 | CFLAGS="${CFLAGS} -Wp,-H30000" |
Daniel Veillard | d7e200c | 1999-11-15 17:53:11 +0000 | [diff] [blame] | 595 | ;; |
Daniel Veillard | b45c43b | 2001-04-28 17:02:11 +0000 | [diff] [blame] | 596 | *-dec-osf* ) |
| 597 | CFLAGS="${CFLAGS} -ieee" |
| 598 | ;; |
William M. Brack | 476cd96 | 2003-08-13 11:09:42 +0000 | [diff] [blame] | 599 | alpha*-*-linux* ) |
| 600 | CFLAGS="${CFLAGS} -ieee" |
| 601 | ;; |
Daniel Veillard | d7e200c | 1999-11-15 17:53:11 +0000 | [diff] [blame] | 602 | esac |
Daniel Veillard | d574f78 | 2001-03-14 19:40:17 +0000 | [diff] [blame] | 603 | else |
Daniel Veillard | d94849b | 2003-07-28 13:02:24 +0000 | [diff] [blame] | 604 | if test "$with_fexceptions" = "yes" |
| 605 | then |
| 606 | # |
| 607 | # Not activated by default because this inflates the code size |
| 608 | # Used to allow propagation of C++ exceptions through the library |
| 609 | # |
| 610 | CFLAGS="${CFLAGS} -fexceptions" |
| 611 | fi |
| 612 | |
Daniel Veillard | 05f9735 | 2004-10-31 15:35:32 +0000 | [diff] [blame] | 613 | 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 Veillard | 14839d5 | 2001-06-06 16:11:56 +0000 | [diff] [blame] | 614 | case "${host}" in |
| 615 | alpha*-*-linux* ) |
| 616 | CFLAGS="${CFLAGS} -mieee" |
| 617 | ;; |
Daniel Veillard | cb5b4d6 | 2002-04-11 08:24:26 +0000 | [diff] [blame] | 618 | alpha*-*-osf* ) |
| 619 | CFLAGS="${CFLAGS} -mieee" |
| 620 | ;; |
Daniel Veillard | 14839d5 | 2001-06-06 16:11:56 +0000 | [diff] [blame] | 621 | esac |
Daniel Veillard | d7e200c | 1999-11-15 17:53:11 +0000 | [diff] [blame] | 622 | fi |
Daniel Veillard | b0426ca | 2000-10-11 23:39:43 +0000 | [diff] [blame] | 623 | case ${host} in |
| 624 | *-*-solaris*) |
Daniel Veillard | d2ade93 | 2000-09-30 14:39:55 +0000 | [diff] [blame] | 625 | XML_LIBDIR="${XML_LIBDIR} -R${libdir}" |
| 626 | ;; |
Daniel Veillard | d30be4a | 2002-03-28 18:25:31 +0000 | [diff] [blame] | 627 | hppa*-hp-mpeix) |
| 628 | NEED_TRIO=1 |
| 629 | ;; |
Daniel Veillard | 4188ddf | 2006-01-19 08:58:42 +0000 | [diff] [blame] | 630 | *-*-mingw* | *-*-cygwin* | *-*-msvc* ) |
| 631 | # If the host is Windows, and shared libraries are disabled, we |
| 632 | # need to add -DLIBXML_STATIC to CFLAGS in order for linking to |
| 633 | # work properly (without it, xmlexports.h would force the use of |
| 634 | # DLL imports, which obviously aren't present in a static |
| 635 | # library). |
| 636 | if test "x$enable_shared" = "xno"; then |
| 637 | XML_CFLAGS="$XML_CFLAGS -DLIBXML_STATIC" |
| 638 | CFLAGS="$CFLAGS -DLIBXML_STATIC" |
| 639 | fi |
| 640 | ;; |
Daniel Veillard | d2ade93 | 2000-09-30 14:39:55 +0000 | [diff] [blame] | 641 | esac |
| 642 | |
Daniel Veillard | f5c2c87 | 1999-12-01 09:51:45 +0000 | [diff] [blame] | 643 | |
Daniel Veillard | f1d0e6b | 2002-01-31 23:42:44 +0000 | [diff] [blame] | 644 | dnl |
| 645 | dnl check for python |
| 646 | dnl |
| 647 | |
Daniel Veillard | f1d0e6b | 2002-01-31 23:42:44 +0000 | [diff] [blame] | 648 | PYTHON_VERSION= |
| 649 | PYTHON_INCLUDES= |
Daniel Veillard | 253aa2c | 2002-02-02 09:17:16 +0000 | [diff] [blame] | 650 | PYTHON_SITE_PACKAGES= |
Daniel Veillard | 6dc9196 | 2004-03-22 19:10:02 +0000 | [diff] [blame] | 651 | PYTHON_TESTS= |
Daniel Veillard | 38b80a8 | 2003-05-14 18:59:00 +0000 | [diff] [blame] | 652 | pythondir= |
Daniel Veillard | f1d0e6b | 2002-01-31 23:42:44 +0000 | [diff] [blame] | 653 | if test "$with_python" != "no" ; then |
| 654 | if test -x "$with_python/bin/python" |
| 655 | then |
| 656 | echo Found python in $with_python/bin/python |
| 657 | PYTHON="$with_python/bin/python" |
Daniel Veillard | 9b731d7 | 2002-04-14 12:56:08 +0000 | [diff] [blame] | 658 | else |
Daniel Veillard | a8a89fe | 2002-04-12 21:03:34 +0000 | [diff] [blame] | 659 | if test -x "$with_python" |
| 660 | then |
Daniel Veillard | 4efd3be | 2002-11-18 09:11:13 +0000 | [diff] [blame] | 661 | echo Found python in $with_python |
| 662 | PYTHON="$with_python" |
Daniel Veillard | a8a89fe | 2002-04-12 21:03:34 +0000 | [diff] [blame] | 663 | else |
Daniel Veillard | 4f69eb6 | 2005-08-24 22:19:10 +0000 | [diff] [blame] | 664 | if test -x "$PYTHON" |
| 665 | then |
| 666 | echo Found python in environment PYTHON=$PYTHON |
Daniel Veillard | 8492ba1 | 2006-04-25 12:52:12 +0000 | [diff] [blame] | 667 | with_python=`$PYTHON -c "import sys; print sys.exec_prefix"` |
Daniel Veillard | 4f69eb6 | 2005-08-24 22:19:10 +0000 | [diff] [blame] | 668 | else |
Daniel Veillard | c2f7056 | 2005-09-01 12:45:26 +0000 | [diff] [blame] | 669 | AC_PATH_PROG(PYTHON, python python2.6 python2.5 python2.4 python2.3 python2.2 python2.1 python2.0 python1.6 python1.5) |
Daniel Veillard | 4f69eb6 | 2005-08-24 22:19:10 +0000 | [diff] [blame] | 670 | fi |
Daniel Veillard | a8a89fe | 2002-04-12 21:03:34 +0000 | [diff] [blame] | 671 | fi |
Daniel Veillard | f1d0e6b | 2002-01-31 23:42:44 +0000 | [diff] [blame] | 672 | fi |
| 673 | if test "$PYTHON" != "" |
| 674 | then |
| 675 | PYTHON_VERSION=`$PYTHON -c "import sys; print sys.version[[0:3]]"` |
| 676 | echo Found Python version $PYTHON_VERSION |
| 677 | fi |
| 678 | if test "$PYTHON_VERSION" != "" |
| 679 | then |
Daniel Veillard | 253aa2c | 2002-02-02 09:17:16 +0000 | [diff] [blame] | 680 | if test -r $with_python/include/python$PYTHON_VERSION/Python.h -a \ |
| 681 | -d $with_python/lib/python$PYTHON_VERSION/site-packages |
Daniel Veillard | f1d0e6b | 2002-01-31 23:42:44 +0000 | [diff] [blame] | 682 | then |
| 683 | PYTHON_INCLUDES=$with_python/include/python$PYTHON_VERSION |
Daniel Veillard | d7d0748 | 2006-05-03 13:15:44 +0000 | [diff] [blame] | 684 | PYTHON_SITE_PACKAGES=$libdir/python$PYTHON_VERSION/site-packages |
Daniel Veillard | f1d0e6b | 2002-01-31 23:42:44 +0000 | [diff] [blame] | 685 | else |
| 686 | if test -r $prefix/include/python$PYTHON_VERSION/Python.h |
| 687 | then |
Daniel Veillard | 8492ba1 | 2006-04-25 12:52:12 +0000 | [diff] [blame] | 688 | PYTHON_INCLUDES=$prefix/include/python$PYTHON_VERSION |
Daniel Veillard | d7d0748 | 2006-05-03 13:15:44 +0000 | [diff] [blame] | 689 | PYTHON_SITE_PACKAGES=$libdir/python$PYTHON_VERSION/site-packages |
Daniel Veillard | f1d0e6b | 2002-01-31 23:42:44 +0000 | [diff] [blame] | 690 | else |
| 691 | if test -r /usr/include/python$PYTHON_VERSION/Python.h |
| 692 | then |
| 693 | PYTHON_INCLUDES=/usr/include/python$PYTHON_VERSION |
Daniel Veillard | d7d0748 | 2006-05-03 13:15:44 +0000 | [diff] [blame] | 694 | PYTHON_SITE_PACKAGES=$libdir/python$PYTHON_VERSION/site-packages |
Daniel Veillard | f1d0e6b | 2002-01-31 23:42:44 +0000 | [diff] [blame] | 695 | else |
| 696 | echo could not find python$PYTHON_VERSION/Python.h |
| 697 | fi |
| 698 | fi |
William M. Brack | 5d4cba4 | 2004-01-06 15:19:12 +0000 | [diff] [blame] | 699 | if test ! -d "$PYTHON_SITE_PACKAGES" |
Daniel Veillard | b6984ef | 2002-08-14 16:55:31 +0000 | [diff] [blame] | 700 | then |
| 701 | PYTHON_SITE_PACKAGES=`$PYTHON -c "from distutils import sysconfig; print sysconfig.get_python_lib()"` |
| 702 | fi |
Daniel Veillard | f1d0e6b | 2002-01-31 23:42:44 +0000 | [diff] [blame] | 703 | fi |
| 704 | fi |
Daniel Veillard | 38b80a8 | 2003-05-14 18:59:00 +0000 | [diff] [blame] | 705 | if test "$with_python" != "" |
| 706 | then |
Daniel Veillard | d7d0748 | 2006-05-03 13:15:44 +0000 | [diff] [blame] | 707 | pythondir='$(PYTHON_SITE_PACKAGES)' |
Daniel Veillard | 38b80a8 | 2003-05-14 18:59:00 +0000 | [diff] [blame] | 708 | else |
Daniel Veillard | b2f8f1d | 2006-04-28 16:30:48 +0000 | [diff] [blame] | 709 | pythondir='$(libdir)/python$(PYTHON_VERSION)/site-packages' |
Daniel Veillard | 38b80a8 | 2003-05-14 18:59:00 +0000 | [diff] [blame] | 710 | fi |
Daniel Veillard | 4f69eb6 | 2005-08-24 22:19:10 +0000 | [diff] [blame] | 711 | else |
| 712 | PYTHON= |
Daniel Veillard | f1d0e6b | 2002-01-31 23:42:44 +0000 | [diff] [blame] | 713 | fi |
| 714 | AM_CONDITIONAL(WITH_PYTHON, test "$PYTHON_INCLUDES" != "") |
Daniel Veillard | 40b1134 | 2002-09-20 12:01:39 +0000 | [diff] [blame] | 715 | if test "$PYTHON_INCLUDES" != "" |
| 716 | then |
| 717 | PYTHON_SUBDIR=python |
| 718 | else |
| 719 | PYTHON_SUBDIR= |
| 720 | fi |
Daniel Veillard | 38b80a8 | 2003-05-14 18:59:00 +0000 | [diff] [blame] | 721 | AC_SUBST(pythondir) |
Daniel Veillard | 40b1134 | 2002-09-20 12:01:39 +0000 | [diff] [blame] | 722 | AC_SUBST(PYTHON_SUBDIR) |
Daniel Veillard | f1d0e6b | 2002-01-31 23:42:44 +0000 | [diff] [blame] | 723 | |
Daniel Veillard | ce1648b | 2005-01-04 15:10:22 +0000 | [diff] [blame] | 724 | dnl check for dso support |
| 725 | WITH_MODULES=0 |
Daniel Veillard | ce1648b | 2005-01-04 15:10:22 +0000 | [diff] [blame] | 726 | TEST_MODULES= |
| 727 | |
Daniel Veillard | f6b71bd | 2005-01-04 17:50:14 +0000 | [diff] [blame] | 728 | if test "$with_modules" != "no" ; then |
Daniel Veillard | 9202b67 | 2005-07-14 09:31:14 +0000 | [diff] [blame] | 729 | case "$host" in |
| 730 | *-*-cygwin*) |
| 731 | MODULE_EXTENSION=".dll" |
| 732 | AC_CHECK_LIB(cygwin, dlopen, [ |
| 733 | WITH_MODULES=1 |
| 734 | MODULE_PLATFORM_LIBS= |
| 735 | AC_DEFINE([HAVE_DLOPEN], [], [Have dlopen based dso]) |
| 736 | ]) |
| 737 | ;; |
| 738 | *) |
Daniel Veillard | 1d96f5a | 2005-10-28 08:44:48 +0000 | [diff] [blame] | 739 | AC_CHECK_FUNC(shl_load, libxml_have_shl_load=yes, [ |
| 740 | AC_CHECK_LIB(dld, shl_load, [ |
| 741 | MODULE_PLATFORM_LIBS="-ldld" |
| 742 | libxml_have_shl_load=yes], [ |
| 743 | AC_CHECK_FUNC(dlopen, libxml_have_dlopen=yes, [ |
| 744 | AC_CHECK_LIB(dl, dlopen, [ |
| 745 | MODULE_PLATFORM_LIBS="-ldl" |
| 746 | libxml_have_dlopen=yes])])])]) |
| 747 | |
| 748 | if test "${libxml_have_shl_load}" = "yes"; then |
| 749 | MODULE_EXTENSION=".sl" |
Daniel Veillard | 9202b67 | 2005-07-14 09:31:14 +0000 | [diff] [blame] | 750 | WITH_MODULES=1 |
Daniel Veillard | 9202b67 | 2005-07-14 09:31:14 +0000 | [diff] [blame] | 751 | AC_DEFINE([HAVE_SHLLOAD], [], [Have shl_load based dso]) |
Daniel Veillard | 1d96f5a | 2005-10-28 08:44:48 +0000 | [diff] [blame] | 752 | fi |
Daniel Veillard | 9202b67 | 2005-07-14 09:31:14 +0000 | [diff] [blame] | 753 | |
Daniel Veillard | 1d96f5a | 2005-10-28 08:44:48 +0000 | [diff] [blame] | 754 | if test "${libxml_have_dlopen}" = "yes"; then |
| 755 | case "${host}" in |
| 756 | *-*-hpux* ) |
| 757 | MODULE_EXTENSION=".sl" |
| 758 | ;; |
| 759 | * ) |
| 760 | MODULE_EXTENSION=".so" |
| 761 | ;; |
| 762 | esac |
| 763 | |
Daniel Veillard | 9202b67 | 2005-07-14 09:31:14 +0000 | [diff] [blame] | 764 | WITH_MODULES=1 |
Daniel Veillard | 9202b67 | 2005-07-14 09:31:14 +0000 | [diff] [blame] | 765 | AC_DEFINE([HAVE_DLOPEN], [], [Have dlopen based dso]) |
Daniel Veillard | 1d96f5a | 2005-10-28 08:44:48 +0000 | [diff] [blame] | 766 | fi |
Daniel Veillard | 9202b67 | 2005-07-14 09:31:14 +0000 | [diff] [blame] | 767 | ;; |
| 768 | esac |
Daniel Veillard | f6b71bd | 2005-01-04 17:50:14 +0000 | [diff] [blame] | 769 | fi |
Daniel Veillard | ce1648b | 2005-01-04 15:10:22 +0000 | [diff] [blame] | 770 | |
| 771 | if test "${WITH_MODULES}" = "1"; then |
| 772 | TEST_MODULES="ModuleTests" |
| 773 | fi |
| 774 | |
| 775 | AC_SUBST(WITH_MODULES) |
| 776 | AC_SUBST(MODULE_PLATFORM_LIBS) |
| 777 | AC_SUBST(MODULE_EXTENSION) |
| 778 | AC_SUBST(TEST_MODULES) |
| 779 | |
Daniel Veillard | 437b87b | 2000-01-03 17:30:46 +0000 | [diff] [blame] | 780 | dnl |
| 781 | dnl Tester makes use of readline if present |
| 782 | dnl |
Daniel Veillard | 0310929 | 2000-08-14 14:58:22 +0000 | [diff] [blame] | 783 | |
Daniel Veillard | 361d845 | 2000-04-03 19:48:13 +0000 | [diff] [blame] | 784 | dnl |
William M. Brack | 21e4ef2 | 2005-01-02 09:53:13 +0000 | [diff] [blame] | 785 | dnl specific tests to setup DV and Bill's devel environments with debug etc ... |
Daniel Veillard | 81418e3 | 2001-05-22 15:08:55 +0000 | [diff] [blame] | 786 | dnl (-Wunreachable-code) |
Daniel Veillard | f6eea27 | 2001-01-18 12:17:12 +0000 | [diff] [blame] | 787 | dnl |
William M. Brack | 871611b | 2003-10-18 04:53:14 +0000 | [diff] [blame] | 788 | if [[ "${LOGNAME}" = "veillard" -a "`pwd`" = "/u/veillard/XML" ]] || \ |
Daniel Veillard | b7c6ac4 | 2004-06-29 22:01:27 +0000 | [diff] [blame] | 789 | [[ "${LOGNAME}" = "veillard" -a "`pwd`" = "/home/veillard/libxml2" ]] || \ |
William M. Brack | a2e844a | 2004-01-06 11:52:13 +0000 | [diff] [blame] | 790 | [[ "${LOGNAME}" = "bill" -a "`pwd`" = "/home/bill/gnomecvs/xmltest" ]] || \ |
William M. Brack | 4119d1c | 2004-06-24 02:24:44 +0000 | [diff] [blame] | 791 | [[ "${LOGNAME}" = "wbrack" -a "`pwd`" = "/Users/wbrack/gnomecvs/xmltest" ]] |
William M. Brack | 871611b | 2003-10-18 04:53:14 +0000 | [diff] [blame] | 792 | then |
Daniel Veillard | 4432df2 | 2003-09-28 18:58:27 +0000 | [diff] [blame] | 793 | if test "$with_minimum" != "yes" |
| 794 | then |
| 795 | if test "${with_mem_debug}" = "" ; then |
Daniel Veillard | 379a3b7 | 2005-08-12 10:18:14 +0000 | [diff] [blame] | 796 | echo Activating memory debugging |
Daniel Veillard | 4432df2 | 2003-09-28 18:58:27 +0000 | [diff] [blame] | 797 | with_mem_debug="yes" |
Daniel Veillard | 22cdb84 | 2004-10-04 14:09:17 +0000 | [diff] [blame] | 798 | with_run_debug="yes" |
Daniel Veillard | 4432df2 | 2003-09-28 18:58:27 +0000 | [diff] [blame] | 799 | fi |
| 800 | if test "${with_docbook}" = "" ; then |
| 801 | with_docbook="yes" |
| 802 | fi |
Daniel Veillard | eae522a | 2001-04-23 13:41:34 +0000 | [diff] [blame] | 803 | fi |
Daniel Veillard | 3854c57 | 2005-08-25 10:17:45 +0000 | [diff] [blame] | 804 | if test "${GCC}" = "yes" ; then |
Daniel Veillard | 05f9735 | 2004-10-31 15:35:32 +0000 | [diff] [blame] | 805 | 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 Veillard | eff45a9 | 2004-10-29 12:10:55 +0000 | [diff] [blame] | 806 | fi |
Daniel Veillard | 2e9b165 | 2003-02-19 13:29:45 +0000 | [diff] [blame] | 807 | STATIC_BINARIES="-static" |
Daniel Veillard | c86a4fa | 2001-03-26 16:28:29 +0000 | [diff] [blame] | 808 | dnl -Wcast-qual -ansi |
Daniel Veillard | 2e9b165 | 2003-02-19 13:29:45 +0000 | [diff] [blame] | 809 | else |
| 810 | STATIC_BINARIES= |
Daniel Veillard | f6eea27 | 2001-01-18 12:17:12 +0000 | [diff] [blame] | 811 | fi |
Daniel Veillard | 2e9b165 | 2003-02-19 13:29:45 +0000 | [diff] [blame] | 812 | AC_SUBST(STATIC_BINARIES) |
Daniel Veillard | 92ad210 | 2001-03-27 12:47:33 +0000 | [diff] [blame] | 813 | |
| 814 | dnl |
| 815 | dnl Check for trio string functions |
| 816 | dnl |
| 817 | |
| 818 | if test "${NEED_TRIO}" = "1" ; then |
| 819 | echo Adding trio library for string functions |
| 820 | WITH_TRIO=1 |
| 821 | else |
| 822 | WITH_TRIO=0 |
| 823 | fi |
Daniel Veillard | 01ef738 | 2001-05-08 07:31:43 +0000 | [diff] [blame] | 824 | AM_CONDITIONAL(WITH_TRIO_SOURCES, test "${NEED_TRIO}" = "1") |
Daniel Veillard | 92ad210 | 2001-03-27 12:47:33 +0000 | [diff] [blame] | 825 | AC_SUBST(WITH_TRIO) |
| 826 | |
Daniel Veillard | f6eea27 | 2001-01-18 12:17:12 +0000 | [diff] [blame] | 827 | dnl |
William M. Brack | 97ad4c7 | 2003-05-13 08:08:36 +0000 | [diff] [blame] | 828 | dnl Allow to enable/disable various pieces |
Daniel Veillard | 361d845 | 2000-04-03 19:48:13 +0000 | [diff] [blame] | 829 | dnl |
William M. Brack | 21e4ef2 | 2005-01-02 09:53:13 +0000 | [diff] [blame] | 830 | echo Checking configuration requirements |
Daniel Veillard | 361d845 | 2000-04-03 19:48:13 +0000 | [diff] [blame] | 831 | |
William M. Brack | 21e4ef2 | 2005-01-02 09:53:13 +0000 | [diff] [blame] | 832 | dnl |
| 833 | dnl Thread-related stuff |
| 834 | dnl |
Daniel Veillard | b847864 | 2001-10-12 17:29:10 +0000 | [diff] [blame] | 835 | THREAD_LIBS="" |
Daniel Veillard | dbfe05a | 2005-05-04 09:18:00 +0000 | [diff] [blame] | 836 | BASE_THREAD_LIBS="" |
Daniel Veillard | b847864 | 2001-10-12 17:29:10 +0000 | [diff] [blame] | 837 | WITH_THREADS=0 |
| 838 | THREAD_CFLAGS="" |
Daniel Veillard | ab7488e | 2001-10-17 11:30:37 +0000 | [diff] [blame] | 839 | TEST_THREADS="" |
Daniel Veillard | 6984e6d | 2003-12-09 14:20:17 +0000 | [diff] [blame] | 840 | THREADS_W32="" |
Daniel Veillard | 64a411c | 2001-10-15 12:32:07 +0000 | [diff] [blame] | 841 | |
Daniel Veillard | 8494271 | 2003-04-18 14:40:05 +0000 | [diff] [blame] | 842 | if test "$with_threads" = "no" ; then |
| 843 | echo Disabling multithreaded support |
| 844 | else |
Daniel Veillard | b847864 | 2001-10-12 17:29:10 +0000 | [diff] [blame] | 845 | echo Enabling multithreaded support |
| 846 | |
| 847 | AC_CHECK_HEADER(pthread.h, |
Daniel Veillard | cbaf399 | 2001-12-31 16:16:02 +0000 | [diff] [blame] | 848 | AC_CHECK_LIB(pthread, pthread_join,[ |
Daniel Veillard | b847864 | 2001-10-12 17:29:10 +0000 | [diff] [blame] | 849 | THREAD_LIBS="-lpthread" |
Daniel Veillard | c790bf4 | 2003-10-11 10:50:10 +0000 | [diff] [blame] | 850 | AC_DEFINE([HAVE_LIBPTHREAD], [], [Define if pthread library is there (-lpthread)]) |
| 851 | AC_DEFINE([HAVE_PTHREAD_H], [], [Define if <pthread.h> is there]) |
Daniel Veillard | ab7488e | 2001-10-17 11:30:37 +0000 | [diff] [blame] | 852 | WITH_THREADS="1"])) |
Daniel Veillard | 6984e6d | 2003-12-09 14:20:17 +0000 | [diff] [blame] | 853 | case $host_os in |
| 854 | *mingw32*) WITH_THREADS="1" |
| 855 | THREADS_W32="Win32" |
| 856 | THREAD_CFLAGS="$THREAD_CFLAGS -DHAVE_WIN32_THREADS" |
| 857 | ;; |
William M. Brack | a73f45b | 2005-01-11 02:21:33 +0000 | [diff] [blame] | 858 | *cygwin*) THREAD_LIBS="" |
| 859 | ;; |
Daniel Veillard | 7a3447a | 2005-01-04 14:31:14 +0000 | [diff] [blame] | 860 | *beos*) WITH_THREADS="1" |
| 861 | THREAD_CFLAGS="$THREAD_CFLAGS -DHAVE_BEOS_THREADS" |
| 862 | ;; |
Daniel Veillard | dbfe05a | 2005-05-04 09:18:00 +0000 | [diff] [blame] | 863 | *linux*) |
Daniel Veillard | 32a461f | 2005-08-25 21:48:54 +0000 | [diff] [blame] | 864 | if test "${GCC}" = "yes" ; then |
| 865 | GCC_VERSION=`${CC} --version | head -1 | awk '{print $3}'` |
| 866 | GCC_MAJOR=`echo ${GCC_VERSION} | sed 's+\..*++'` |
| 867 | GCC_MEDIUM=`echo ${GCC_VERSION} | sed 's+[[0-9]]*\.++' | sed 's+\..*++'` |
| 868 | if test "${THREAD_LIBS}" = "-lpthread" ; then |
| 869 | if expr ${GCC_MEDIUM} \> 2 \& ${GCC_MAJOR} = 3 > /dev/null |
| 870 | then |
| 871 | THREAD_LIBS="" |
| 872 | BASE_THREAD_LIBS="-lpthread" |
| 873 | else |
| 874 | if expr ${GCC_MAJOR} \> 3 > /dev/null |
| 875 | then |
| 876 | THREAD_LIBS="" |
| 877 | BASE_THREAD_LIBS="-lpthread" |
| 878 | else |
| 879 | echo old GCC disabling weak symbols for pthread |
| 880 | fi |
| 881 | fi |
| 882 | fi |
Daniel Veillard | dbfe05a | 2005-05-04 09:18:00 +0000 | [diff] [blame] | 883 | fi |
| 884 | ;; |
Daniel Veillard | 6984e6d | 2003-12-09 14:20:17 +0000 | [diff] [blame] | 885 | esac |
Daniel Veillard | b847864 | 2001-10-12 17:29:10 +0000 | [diff] [blame] | 886 | if test "$WITH_THREADS" = "1" ; then |
Daniel Veillard | ab7488e | 2001-10-17 11:30:37 +0000 | [diff] [blame] | 887 | THREAD_CFLAGS="$THREAD_CFLAGS -D_REENTRANT" |
| 888 | TEST_THREADS="Threadtests" |
Daniel Veillard | b847864 | 2001-10-12 17:29:10 +0000 | [diff] [blame] | 889 | fi |
| 890 | fi |
William M. Brack | 306e33c | 2004-06-12 01:01:22 +0000 | [diff] [blame] | 891 | if test "$with_thread_alloc" = "yes" -a "$WITH_THREADS" = "1" ; then |
Daniel Veillard | ab7488e | 2001-10-17 11:30:37 +0000 | [diff] [blame] | 892 | THREAD_CFLAGS="$THREAD_CFLAGS -DLIBXML_THREAD_ALLOC_ENABLED" |
Daniel Veillard | 64a411c | 2001-10-15 12:32:07 +0000 | [diff] [blame] | 893 | fi |
| 894 | |
Daniel Veillard | b847864 | 2001-10-12 17:29:10 +0000 | [diff] [blame] | 895 | AC_SUBST(THREAD_LIBS) |
Daniel Veillard | dbfe05a | 2005-05-04 09:18:00 +0000 | [diff] [blame] | 896 | AC_SUBST(BASE_THREAD_LIBS) |
Daniel Veillard | b847864 | 2001-10-12 17:29:10 +0000 | [diff] [blame] | 897 | AC_SUBST(WITH_THREADS) |
| 898 | AC_SUBST(THREAD_CFLAGS) |
Daniel Veillard | ab7488e | 2001-10-17 11:30:37 +0000 | [diff] [blame] | 899 | AC_SUBST(TEST_THREADS) |
Daniel Veillard | 6984e6d | 2003-12-09 14:20:17 +0000 | [diff] [blame] | 900 | AC_SUBST(THREADS_W32) |
Daniel Veillard | b847864 | 2001-10-12 17:29:10 +0000 | [diff] [blame] | 901 | |
William M. Brack | 21e4ef2 | 2005-01-02 09:53:13 +0000 | [diff] [blame] | 902 | dnl |
| 903 | dnl xmllint shell history |
| 904 | dnl |
Daniel Veillard | 259ff74 | 2001-10-06 13:49:59 +0000 | [diff] [blame] | 905 | if test "$with_history" = "yes" ; then |
Daniel Veillard | f012a64 | 2001-07-23 19:10:52 +0000 | [diff] [blame] | 906 | echo Enabling xmllint shell history |
| 907 | dnl check for terminal library. this is a very cool solution |
| 908 | dnl from octave's configure.in |
| 909 | unset tcap |
| 910 | for termlib in ncurses curses termcap terminfo termlib; do |
| 911 | AC_CHECK_LIB(${termlib}, tputs, [tcap="-l$termlib"]) |
| 912 | test -n "$tcap" && break |
| 913 | done |
| 914 | |
| 915 | AC_CHECK_HEADER(readline/history.h, |
| 916 | AC_CHECK_LIB(history, append_history,[ |
| 917 | RDL_LIBS="-lhistory" |
Daniel Veillard | c790bf4 | 2003-10-11 10:50:10 +0000 | [diff] [blame] | 918 | AC_DEFINE([HAVE_LIBHISTORY], [], [Define if history library is there (-lhistory)])])) |
Daniel Veillard | f012a64 | 2001-07-23 19:10:52 +0000 | [diff] [blame] | 919 | AC_CHECK_HEADER(readline/readline.h, |
| 920 | AC_CHECK_LIB(readline, readline,[ |
| 921 | RDL_LIBS="-lreadline $RDL_LIBS $tcap" |
Daniel Veillard | c790bf4 | 2003-10-11 10:50:10 +0000 | [diff] [blame] | 922 | AC_DEFINE([HAVE_LIBREADLINE], [], [Define if readline library is there (-lreadline)])], , $tcap)) |
Daniel Veillard | f012a64 | 2001-07-23 19:10:52 +0000 | [diff] [blame] | 923 | if test -n "$RDL_DIR" -a -n "$RDL_LIBS"; then |
| 924 | CPPFLAGS="$CPPFLAGS -I${RDL_DIR}/include" |
| 925 | RDL_LIBS="-L${RDL_DIR}/lib $RDL_LIBS" |
Daniel Veillard | f012a64 | 2001-07-23 19:10:52 +0000 | [diff] [blame] | 926 | fi |
Daniel Veillard | f012a64 | 2001-07-23 19:10:52 +0000 | [diff] [blame] | 927 | fi |
| 928 | |
William M. Brack | 21e4ef2 | 2005-01-02 09:53:13 +0000 | [diff] [blame] | 929 | dnl |
| 930 | dnl Tree functions |
| 931 | dnl |
Daniel Veillard | 652327a | 2003-09-29 18:02:38 +0000 | [diff] [blame] | 932 | if test "$with_tree" = "no" ; then |
| 933 | echo Disabling DOM like tree manipulation APIs |
| 934 | WITH_TREE=0 |
| 935 | else |
| 936 | WITH_TREE=1 |
| 937 | fi |
| 938 | AC_SUBST(WITH_TREE) |
| 939 | |
Daniel Veillard | 361d845 | 2000-04-03 19:48:13 +0000 | [diff] [blame] | 940 | if test "$with_ftp" = "no" ; then |
| 941 | echo Disabling FTP support |
| 942 | WITH_FTP=0 |
| 943 | FTP_OBJ= |
| 944 | else |
| 945 | WITH_FTP=1 |
| 946 | FTP_OBJ=nanoftp.o |
| 947 | fi |
| 948 | AC_SUBST(WITH_FTP) |
| 949 | AC_SUBST(FTP_OBJ) |
| 950 | |
Daniel Veillard | 361d845 | 2000-04-03 19:48:13 +0000 | [diff] [blame] | 951 | if test "$with_http" = "no" ; then |
| 952 | echo Disabling HTTP support |
| 953 | WITH_HTTP=0 |
| 954 | HTTP_OBJ= |
| 955 | else |
| 956 | WITH_HTTP=1 |
| 957 | HTTP_OBJ=nanohttp.o |
| 958 | fi |
| 959 | AC_SUBST(WITH_HTTP) |
| 960 | AC_SUBST(HTTP_OBJ) |
| 961 | |
Daniel Veillard | 4432df2 | 2003-09-28 18:58:27 +0000 | [diff] [blame] | 962 | if test "$with_legacy" = "no" ; then |
| 963 | echo Disabling deprecated APIs |
| 964 | WITH_LEGACY=0 |
| 965 | else |
| 966 | WITH_LEGACY=1 |
| 967 | fi |
| 968 | AC_SUBST(WITH_LEGACY) |
| 969 | |
Daniel Veillard | 8127390 | 2003-09-30 00:43:48 +0000 | [diff] [blame] | 970 | if test "$with_reader" = "no" ; then |
| 971 | echo Disabling the xmlReader parsing interface |
| 972 | WITH_READER=0 |
Daniel Veillard | 73b013f | 2003-09-30 12:36:01 +0000 | [diff] [blame] | 973 | READER_TEST= |
Daniel Veillard | 8127390 | 2003-09-30 00:43:48 +0000 | [diff] [blame] | 974 | else |
| 975 | WITH_READER=1 |
Daniel Veillard | 73b013f | 2003-09-30 12:36:01 +0000 | [diff] [blame] | 976 | READER_TEST=Readertests |
William M. Brack | 21e4ef2 | 2005-01-02 09:53:13 +0000 | [diff] [blame] | 977 | if test "$with_push" = "no" ; then |
| 978 | echo xmlReader requires Push interface - enabling it |
| 979 | with_push=yes |
| 980 | fi |
Daniel Veillard | 8127390 | 2003-09-30 00:43:48 +0000 | [diff] [blame] | 981 | fi |
| 982 | AC_SUBST(WITH_READER) |
Daniel Veillard | 73b013f | 2003-09-30 12:36:01 +0000 | [diff] [blame] | 983 | AC_SUBST(READER_TEST) |
Daniel Veillard | 8127390 | 2003-09-30 00:43:48 +0000 | [diff] [blame] | 984 | |
William M. Brack | 21e4ef2 | 2005-01-02 09:53:13 +0000 | [diff] [blame] | 985 | if test "$with_writer" = "no" ; then |
| 986 | echo Disabling the xmlWriter saving interface |
| 987 | WITH_WRITER=0 |
| 988 | # WRITER_TEST= |
| 989 | else |
| 990 | WITH_WRITER=1 |
| 991 | # WRITER_TEST=Writertests |
| 992 | if test "$with_push" = "no" ; then |
| 993 | echo xmlWriter requires Push interface - enabling it |
| 994 | with_push=yes |
| 995 | fi |
| 996 | if test "$with_output" = "no" ; then |
| 997 | echo xmlWriter requires Output interface - enabling it |
| 998 | with_output=yes |
| 999 | fi |
Daniel Veillard | b3de70c | 2003-12-02 22:32:15 +0000 | [diff] [blame] | 1000 | fi |
William M. Brack | 21e4ef2 | 2005-01-02 09:53:13 +0000 | [diff] [blame] | 1001 | AC_SUBST(WITH_WRITER) |
| 1002 | #AC_SUBST(WRITER_TEST) |
| 1003 | |
Daniel Veillard | b3de70c | 2003-12-02 22:32:15 +0000 | [diff] [blame] | 1004 | if test "$with_pattern" = "no" ; then |
| 1005 | echo Disabling the xmlPattern parsing interface |
| 1006 | WITH_PATTERN=0 |
Daniel Veillard | f9d1691 | 2005-01-30 22:36:30 +0000 | [diff] [blame] | 1007 | TEST_PATTERN= |
Daniel Veillard | b3de70c | 2003-12-02 22:32:15 +0000 | [diff] [blame] | 1008 | else |
| 1009 | WITH_PATTERN=1 |
Daniel Veillard | f9d1691 | 2005-01-30 22:36:30 +0000 | [diff] [blame] | 1010 | TEST_PATTERN=Patterntests |
Daniel Veillard | b3de70c | 2003-12-02 22:32:15 +0000 | [diff] [blame] | 1011 | fi |
| 1012 | AC_SUBST(WITH_PATTERN) |
Daniel Veillard | f9d1691 | 2005-01-30 22:36:30 +0000 | [diff] [blame] | 1013 | AC_SUBST(TEST_PATTERN) |
Daniel Veillard | b3de70c | 2003-12-02 22:32:15 +0000 | [diff] [blame] | 1014 | |
Daniel Veillard | 8127390 | 2003-09-30 00:43:48 +0000 | [diff] [blame] | 1015 | if test "$with_sax1" = "no" ; then |
| 1016 | echo Disabling the older SAX1 interface |
| 1017 | WITH_SAX1=0 |
| 1018 | TEST_SAX= |
| 1019 | else |
| 1020 | WITH_SAX1=1 |
| 1021 | TEST_SAX=SAXtests |
| 1022 | fi |
| 1023 | AC_SUBST(WITH_SAX1) |
| 1024 | AC_SUBST(TEST_SAX) |
| 1025 | |
Daniel Veillard | 73b013f | 2003-09-30 12:36:01 +0000 | [diff] [blame] | 1026 | if test "$with_push" = "no" ; then |
| 1027 | echo Disabling the PUSH parser interfaces |
| 1028 | WITH_PUSH=0 |
| 1029 | TEST_PUSH= |
| 1030 | else |
| 1031 | WITH_PUSH=1 |
| 1032 | TEST_PUSH="XMLPushtests" |
| 1033 | fi |
| 1034 | AC_SUBST(WITH_PUSH) |
| 1035 | AC_SUBST(TEST_PUSH) |
| 1036 | |
Daniel Veillard | 73b013f | 2003-09-30 12:36:01 +0000 | [diff] [blame] | 1037 | if test "$with_html" = "no" ; then |
| 1038 | echo Disabling HTML support |
| 1039 | WITH_HTML=0 |
| 1040 | HTML_OBJ= |
| 1041 | TEST_HTML= |
| 1042 | else |
| 1043 | WITH_HTML=1 |
| 1044 | HTML_OBJ="HTMLparser.o HTMLtree.o" |
| 1045 | TEST_HTML=HTMLtests |
William M. Brack | 871611b | 2003-10-18 04:53:14 +0000 | [diff] [blame] | 1046 | if test "$with_push" != "no" ; then |
Daniel Veillard | 73b013f | 2003-09-30 12:36:01 +0000 | [diff] [blame] | 1047 | TEST_PHTML=HTMLPushtests |
| 1048 | else |
| 1049 | TEST_PHTML= |
| 1050 | fi |
| 1051 | fi |
| 1052 | AC_SUBST(WITH_HTML) |
| 1053 | AC_SUBST(HTML_OBJ) |
| 1054 | AC_SUBST(TEST_HTML) |
| 1055 | AC_SUBST(TEST_PHTML) |
| 1056 | |
Daniel Veillard | 73b013f | 2003-09-30 12:36:01 +0000 | [diff] [blame] | 1057 | if test "$with_valid" = "no" ; then |
Daniel Veillard | 4432df2 | 2003-09-28 18:58:27 +0000 | [diff] [blame] | 1058 | echo Disabling DTD validation support |
| 1059 | WITH_VALID=0 |
| 1060 | TEST_VALID= |
| 1061 | TEST_VTIME= |
| 1062 | else |
| 1063 | WITH_VALID=1 |
| 1064 | TEST_VALID=Validtests |
| 1065 | TEST_VTIME=VTimingtests |
| 1066 | fi |
| 1067 | AC_SUBST(WITH_VALID) |
| 1068 | AC_SUBST(TEST_VALID) |
| 1069 | AC_SUBST(TEST_VTIME) |
Daniel Veillard | 361d845 | 2000-04-03 19:48:13 +0000 | [diff] [blame] | 1070 | |
Daniel Veillard | a737459 | 2001-05-10 14:17:55 +0000 | [diff] [blame] | 1071 | if test "$with_catalog" = "no" ; then |
| 1072 | echo Disabling Catalog support |
| 1073 | WITH_CATALOG=0 |
| 1074 | CATALOG_OBJ= |
Daniel Veillard | 4432df2 | 2003-09-28 18:58:27 +0000 | [diff] [blame] | 1075 | TEST_CATALOG= |
Daniel Veillard | a737459 | 2001-05-10 14:17:55 +0000 | [diff] [blame] | 1076 | else |
| 1077 | WITH_CATALOG=1 |
| 1078 | CATALOG_OBJ="catalog.o" |
Daniel Veillard | 4432df2 | 2003-09-28 18:58:27 +0000 | [diff] [blame] | 1079 | TEST_CATALOG=Catatests |
Daniel Veillard | a737459 | 2001-05-10 14:17:55 +0000 | [diff] [blame] | 1080 | fi |
| 1081 | AC_SUBST(WITH_CATALOG) |
| 1082 | AC_SUBST(CATALOG_OBJ) |
Daniel Veillard | 4432df2 | 2003-09-28 18:58:27 +0000 | [diff] [blame] | 1083 | AC_SUBST(TEST_CATALOG) |
Daniel Veillard | a737459 | 2001-05-10 14:17:55 +0000 | [diff] [blame] | 1084 | |
Daniel Veillard | b59076b | 2001-04-29 17:04:07 +0000 | [diff] [blame] | 1085 | if test "$with_docbook" = "no" ; then |
| 1086 | echo Disabling Docbook support |
Daniel Veillard | eae522a | 2001-04-23 13:41:34 +0000 | [diff] [blame] | 1087 | WITH_DOCB=0 |
| 1088 | DOCB_OBJ= |
Daniel Veillard | b59076b | 2001-04-29 17:04:07 +0000 | [diff] [blame] | 1089 | else |
| 1090 | WITH_DOCB=1 |
| 1091 | DOCB_OBJ="DOCBparser.o" |
Daniel Veillard | eae522a | 2001-04-23 13:41:34 +0000 | [diff] [blame] | 1092 | fi |
| 1093 | AC_SUBST(WITH_DOCB) |
| 1094 | AC_SUBST(DOCB_OBJ) |
| 1095 | |
| 1096 | |
William M. Brack | 21e4ef2 | 2005-01-02 09:53:13 +0000 | [diff] [blame] | 1097 | if test "$with_xptr" = "no" ; then |
| 1098 | echo Disabling XPointer support |
| 1099 | WITH_XPTR=0 |
| 1100 | XPTR_OBJ= |
| 1101 | TEST_XPTR= |
| 1102 | else |
| 1103 | WITH_XPTR=1 |
| 1104 | XPTR_OBJ=xpointer.o |
| 1105 | TEST_XPTR=XPtrtests |
| 1106 | if test "$with_xpath" = "no" ; then |
| 1107 | echo XPointer requires XPath support - enabling it |
| 1108 | with_xpath=yes |
| 1109 | fi |
Daniel Veillard | 4432df2 | 2003-09-28 18:58:27 +0000 | [diff] [blame] | 1110 | fi |
William M. Brack | 21e4ef2 | 2005-01-02 09:53:13 +0000 | [diff] [blame] | 1111 | AC_SUBST(WITH_XPTR) |
| 1112 | AC_SUBST(XPTR_OBJ) |
| 1113 | AC_SUBST(TEST_XPTR) |
| 1114 | |
| 1115 | if test "$with_c14n" = "no" ; then |
| 1116 | echo Disabling C14N support |
| 1117 | WITH_C14N=0 |
| 1118 | C14N_OBJ= |
| 1119 | TEST_C14N= |
| 1120 | else |
| 1121 | WITH_C14N=1 |
| 1122 | C14N_OBJ="c14n.c" |
| 1123 | TEST_C14N=C14Ntests |
| 1124 | if test "$with_xpath" = "no" ; then |
| 1125 | echo C14N requires XPath support - enabling it |
| 1126 | with_xpath=yes |
| 1127 | fi |
| 1128 | fi |
| 1129 | AC_SUBST(WITH_C14N) |
| 1130 | AC_SUBST(C14N_OBJ) |
| 1131 | AC_SUBST(TEST_C14N) |
| 1132 | |
| 1133 | if test "$with_xinclude" = "no" ; then |
| 1134 | echo Disabling XInclude support |
| 1135 | WITH_XINCLUDE=0 |
| 1136 | XINCLUDE_OBJ= |
| 1137 | with_xinclude="no" |
| 1138 | TEST_XINCLUDE= |
| 1139 | else |
| 1140 | WITH_XINCLUDE=1 |
| 1141 | XINCLUDE_OBJ=xinclude.o |
| 1142 | TEST_XINCLUDE=XIncludetests |
| 1143 | if test "$with_xpath" = "no" ; then |
| 1144 | echo XInclude requires XPath support - enabling it |
| 1145 | with_xpath=yes |
| 1146 | fi |
| 1147 | fi |
| 1148 | AC_SUBST(WITH_XINCLUDE) |
| 1149 | AC_SUBST(XINCLUDE_OBJ) |
| 1150 | AC_SUBST(TEST_XINCLUDE) |
| 1151 | |
Daniel Veillard | 361d845 | 2000-04-03 19:48:13 +0000 | [diff] [blame] | 1152 | if test "$with_xpath" = "no" ; then |
| 1153 | echo Disabling XPATH support |
| 1154 | WITH_XPATH=0 |
| 1155 | XPATH_OBJ= |
Daniel Veillard | 4432df2 | 2003-09-28 18:58:27 +0000 | [diff] [blame] | 1156 | TEST_XPATH= |
Daniel Veillard | 361d845 | 2000-04-03 19:48:13 +0000 | [diff] [blame] | 1157 | else |
| 1158 | WITH_XPATH=1 |
| 1159 | XPATH_OBJ=xpath.o |
Daniel Veillard | 4432df2 | 2003-09-28 18:58:27 +0000 | [diff] [blame] | 1160 | TEST_XPATH=XPathtests |
Daniel Veillard | 361d845 | 2000-04-03 19:48:13 +0000 | [diff] [blame] | 1161 | fi |
| 1162 | AC_SUBST(WITH_XPATH) |
| 1163 | AC_SUBST(XPATH_OBJ) |
Daniel Veillard | 4432df2 | 2003-09-28 18:58:27 +0000 | [diff] [blame] | 1164 | AC_SUBST(TEST_XPATH) |
Daniel Veillard | 361d845 | 2000-04-03 19:48:13 +0000 | [diff] [blame] | 1165 | |
William M. Brack | 21e4ef2 | 2005-01-02 09:53:13 +0000 | [diff] [blame] | 1166 | dnl |
| 1167 | dnl output functions |
| 1168 | dnl |
| 1169 | if test "$with_output" = "no" ; then |
| 1170 | echo Disabling serialization/saving support |
| 1171 | WITH_OUTPUT=0 |
Daniel Veillard | c8df0aa | 2000-10-10 23:50:30 +0000 | [diff] [blame] | 1172 | else |
William M. Brack | 21e4ef2 | 2005-01-02 09:53:13 +0000 | [diff] [blame] | 1173 | WITH_OUTPUT=1 |
Daniel Veillard | c8df0aa | 2000-10-10 23:50:30 +0000 | [diff] [blame] | 1174 | fi |
William M. Brack | 21e4ef2 | 2005-01-02 09:53:13 +0000 | [diff] [blame] | 1175 | AC_SUBST(WITH_OUTPUT) |
Daniel Veillard | 9e8bfae | 2000-11-06 16:43:11 +0000 | [diff] [blame] | 1176 | |
Daniel Veillard | 6e90d19 | 2001-07-03 16:37:49 +0000 | [diff] [blame] | 1177 | WITH_ICONV=0 |
Daniel Veillard | 496a1cf | 2000-05-03 14:20:55 +0000 | [diff] [blame] | 1178 | if test "$with_iconv" = "no" ; then |
| 1179 | echo Disabling ICONV support |
Daniel Veillard | d574f78 | 2001-03-14 19:40:17 +0000 | [diff] [blame] | 1180 | else |
Daniel Veillard | 220346d | 2001-12-07 11:33:54 +0000 | [diff] [blame] | 1181 | if test "$with_iconv" != "yes" -a "$with_iconv" != "" ; then |
Daniel Veillard | 6e90d19 | 2001-07-03 16:37:49 +0000 | [diff] [blame] | 1182 | CPPFLAGS="${CPPFLAGS} -I$with_iconv/include" |
Daniel Veillard | f5b44e4 | 2001-09-17 17:19:54 +0000 | [diff] [blame] | 1183 | # Export this since our headers include iconv.h |
| 1184 | XML_INCLUDEDIR="${XML_INCLUDEDIR} -I$with_iconv/include" |
Daniel Veillard | 6e90d19 | 2001-07-03 16:37:49 +0000 | [diff] [blame] | 1185 | ICONV_LIBS="-L$with_iconv/lib" |
Daniel Veillard | 496a1cf | 2000-05-03 14:20:55 +0000 | [diff] [blame] | 1186 | fi |
Daniel Veillard | 6e90d19 | 2001-07-03 16:37:49 +0000 | [diff] [blame] | 1187 | |
| 1188 | AC_CHECK_HEADER(iconv.h, |
| 1189 | AC_MSG_CHECKING(for iconv) |
| 1190 | AC_TRY_LINK([#include <stdlib.h> |
| 1191 | #include <iconv.h>],[ |
| 1192 | iconv_t cd = iconv_open ("",""); |
| 1193 | iconv (cd, NULL, NULL, NULL, NULL);],[ |
| 1194 | AC_MSG_RESULT(yes) |
| 1195 | WITH_ICONV=1],[ |
| 1196 | AC_MSG_RESULT(no) |
| 1197 | AC_MSG_CHECKING(for iconv in -liconv) |
| 1198 | |
| 1199 | _ldflags="${LDFLAGS}" |
| 1200 | _libs="${LIBS}" |
| 1201 | LDFLAGS="${LDFLAGS} ${ICONV_LIBS}" |
| 1202 | LIBS="${LIBS} -liconv" |
| 1203 | |
| 1204 | AC_TRY_LINK([#include <stdlib.h> |
| 1205 | #include <iconv.h>],[ |
| 1206 | iconv_t cd = iconv_open ("",""); |
| 1207 | iconv (cd, NULL, NULL, NULL, NULL);],[ |
| 1208 | AC_MSG_RESULT(yes) |
| 1209 | WITH_ICONV=1 |
| 1210 | ICONV_LIBS="${ICONV_LIBS} -liconv" |
| 1211 | LIBS="${_libs}" |
| 1212 | LDFLAGS="${_ldflags}"],[ |
| 1213 | AC_MSG_RESULT(no) |
| 1214 | LIBS="${_libs}" |
| 1215 | LDFLAGS="${_ldflags}"])])) |
| 1216 | fi |
Daniel Veillard | 6984e6d | 2003-12-09 14:20:17 +0000 | [diff] [blame] | 1217 | case "$host" in |
| 1218 | *mingw*) M_LIBS="" |
| 1219 | ;; |
Daniel Veillard | 7a3447a | 2005-01-04 14:31:14 +0000 | [diff] [blame] | 1220 | *beos*) M_LIBS="" |
| 1221 | ;; |
Daniel Veillard | 6984e6d | 2003-12-09 14:20:17 +0000 | [diff] [blame] | 1222 | *) M_LIBS="-lm" |
| 1223 | ;; |
| 1224 | esac |
Daniel Veillard | b82c166 | 2001-12-09 14:00:54 +0000 | [diff] [blame] | 1225 | XML_LIBS="-lxml2 $Z_LIBS $THREAD_LIBS $ICONV_LIBS $M_LIBS $LIBS" |
Daniel Veillard | 90d165b | 2003-09-01 20:33:13 +0000 | [diff] [blame] | 1226 | XML_LIBTOOLLIBS="libxml2.la" |
Daniel Veillard | 496a1cf | 2000-05-03 14:20:55 +0000 | [diff] [blame] | 1227 | AC_SUBST(WITH_ICONV) |
| 1228 | |
Daniel Veillard | 01fc1a9 | 2003-07-30 15:12:01 +0000 | [diff] [blame] | 1229 | WITH_ISO8859X=1 |
Daniel Veillard | 01fc1a9 | 2003-07-30 15:12:01 +0000 | [diff] [blame] | 1230 | if test "$WITH_ICONV" != "1" ; then |
| 1231 | if test "$with_iso8859x" = "no" ; then |
| 1232 | echo Disabling ISO8859X support |
| 1233 | WITH_ISO8859X=0 |
| 1234 | fi |
| 1235 | fi |
| 1236 | AC_SUBST(WITH_ISO8859X) |
| 1237 | |
Daniel Veillard | ed6c549 | 2005-07-23 15:00:22 +0000 | [diff] [blame] | 1238 | if test "$with_schematron" = "no" ; then |
| 1239 | echo "Disabling Schematron support" |
| 1240 | WITH_SCHEMATRON=0 |
| 1241 | TEST_SCHEMATRON= |
| 1242 | else |
| 1243 | echo "Enabled Schematron support" |
| 1244 | WITH_SCHEMATRON=1 |
| 1245 | TEST_SCHEMATRON="Schematrontests" |
| 1246 | with_xpath=yes |
| 1247 | with_pattern=yes |
| 1248 | fi |
| 1249 | AC_SUBST(WITH_SCHEMATRON) |
| 1250 | AC_SUBST(TEST_SCHEMATRON) |
| 1251 | |
Daniel Veillard | ef4d3bc | 2003-02-07 12:38:22 +0000 | [diff] [blame] | 1252 | if test "$with_schemas" = "no" ; then |
William M. Brack | 21e4ef2 | 2005-01-02 09:53:13 +0000 | [diff] [blame] | 1253 | echo "Disabling Schemas/Relax-NG support" |
Daniel Veillard | ef4d3bc | 2003-02-07 12:38:22 +0000 | [diff] [blame] | 1254 | WITH_SCHEMAS=0 |
| 1255 | TEST_SCHEMAS= |
| 1256 | else |
Daniel Veillard | 71531f3 | 2003-02-05 13:19:53 +0000 | [diff] [blame] | 1257 | echo "Enabled Schemas/Relax-NG support" |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 1258 | WITH_SCHEMAS=1 |
Daniel Veillard | 6eadf63 | 2003-01-23 18:29:16 +0000 | [diff] [blame] | 1259 | TEST_SCHEMAS="Schemastests Relaxtests" |
Daniel Veillard | 6dc9196 | 2004-03-22 19:10:02 +0000 | [diff] [blame] | 1260 | if test "$PYTHON_INCLUDES" != "" ; then |
| 1261 | PYTHON_TESTS="$PYTHON_TESTS RelaxNGPythonTests SchemasPythonTests" |
| 1262 | fi |
Daniel Veillard | 23e7357 | 2002-09-19 19:56:43 +0000 | [diff] [blame] | 1263 | with_regexps=yes |
Daniel Veillard | 4255d50 | 2002-04-16 15:50:10 +0000 | [diff] [blame] | 1264 | fi |
| 1265 | AC_SUBST(WITH_SCHEMAS) |
| 1266 | AC_SUBST(TEST_SCHEMAS) |
| 1267 | |
Daniel Veillard | 23e7357 | 2002-09-19 19:56:43 +0000 | [diff] [blame] | 1268 | if test "$with_regexps" = "no" ; then |
| 1269 | echo Disabling Regexps support |
| 1270 | WITH_REGEXPS=0 |
| 1271 | TEST_REGEXPS= |
| 1272 | else |
| 1273 | WITH_REGEXPS=1 |
| 1274 | TEST_REGEXPS="Regexptests Automatatests" |
| 1275 | fi |
| 1276 | AC_SUBST(WITH_REGEXPS) |
| 1277 | AC_SUBST(TEST_REGEXPS) |
| 1278 | |
Daniel Veillard | 361d845 | 2000-04-03 19:48:13 +0000 | [diff] [blame] | 1279 | if test "$with_debug" = "no" ; then |
| 1280 | echo Disabling DEBUG support |
| 1281 | WITH_DEBUG=0 |
| 1282 | DEBUG_OBJ= |
Daniel Veillard | 4432df2 | 2003-09-28 18:58:27 +0000 | [diff] [blame] | 1283 | TEST_DEBUG= |
Daniel Veillard | 361d845 | 2000-04-03 19:48:13 +0000 | [diff] [blame] | 1284 | else |
| 1285 | WITH_DEBUG=1 |
| 1286 | DEBUG_OBJ=debugXML.o |
Daniel Veillard | 4432df2 | 2003-09-28 18:58:27 +0000 | [diff] [blame] | 1287 | TEST_DEBUG=Scripttests |
Daniel Veillard | 361d845 | 2000-04-03 19:48:13 +0000 | [diff] [blame] | 1288 | fi |
| 1289 | AC_SUBST(WITH_DEBUG) |
| 1290 | AC_SUBST(DEBUG_OBJ) |
Daniel Veillard | 4432df2 | 2003-09-28 18:58:27 +0000 | [diff] [blame] | 1291 | AC_SUBST(TEST_DEBUG) |
Daniel Veillard | 361d845 | 2000-04-03 19:48:13 +0000 | [diff] [blame] | 1292 | |
Daniel Veillard | 361d845 | 2000-04-03 19:48:13 +0000 | [diff] [blame] | 1293 | if test "$with_mem_debug" = "yes" ; then |
William M. Brack | 306e33c | 2004-06-12 01:01:22 +0000 | [diff] [blame] | 1294 | if test "$with_thread_alloc" = "yes" ; then |
| 1295 | echo Disabling memory debug - cannot use mem-debug with thread-alloc! |
| 1296 | WITH_MEM_DEBUG=0 |
| 1297 | else |
| 1298 | echo Enabling memory debug support |
| 1299 | WITH_MEM_DEBUG=1 |
| 1300 | fi |
Daniel Veillard | 361d845 | 2000-04-03 19:48:13 +0000 | [diff] [blame] | 1301 | else |
| 1302 | WITH_MEM_DEBUG=0 |
| 1303 | fi |
| 1304 | AC_SUBST(WITH_MEM_DEBUG) |
| 1305 | |
Daniel Veillard | 22cdb84 | 2004-10-04 14:09:17 +0000 | [diff] [blame] | 1306 | if test "$with_run_debug" = "yes" ; then |
| 1307 | echo Enabling runtime debug support |
| 1308 | WITH_RUN_DEBUG=1 |
| 1309 | else |
| 1310 | WITH_RUN_DEBUG=0 |
| 1311 | fi |
| 1312 | AC_SUBST(WITH_RUN_DEBUG) |
Daniel Veillard | 1638a47 | 2003-08-14 01:23:25 +0000 | [diff] [blame] | 1313 | |
| 1314 | WIN32_EXTRA_LIBADD= |
| 1315 | WIN32_EXTRA_LDFLAGS= |
William M. Brack | a73f45b | 2005-01-11 02:21:33 +0000 | [diff] [blame] | 1316 | CYGWIN_EXTRA_LDFLAGS= |
| 1317 | CYGWIN_EXTRA_PYTHON_LIBADD= |
Daniel Veillard | 1638a47 | 2003-08-14 01:23:25 +0000 | [diff] [blame] | 1318 | case "$host" in |
| 1319 | *-*-mingw*) |
Daniel Veillard | 6984e6d | 2003-12-09 14:20:17 +0000 | [diff] [blame] | 1320 | CPPFLAGS="$CPPFLAGS -DWIN32" |
| 1321 | WIN32_EXTRA_LIBADD="-lws2_32" |
Daniel Veillard | 1638a47 | 2003-08-14 01:23:25 +0000 | [diff] [blame] | 1322 | WIN32_EXTRA_LDFLAGS="-no-undefined" |
| 1323 | AC_DEFINE([_WINSOCKAPI_],1,[Using the Win32 Socket implementation]) |
| 1324 | AC_DEFINE([snprintf],[_snprintf],[Win32 Std C name mangling work-around]) |
| 1325 | AC_DEFINE([vsnprintf],[_vsnprintf],[Win32 Std C name mangling work-around]) |
| 1326 | ;; |
Daniel Veillard | d392ba7 | 2004-08-04 14:56:45 +0000 | [diff] [blame] | 1327 | *-*-cygwin*) |
| 1328 | CYGWIN_EXTRA_LDFLAGS="-no-undefined" |
William M. Brack | a73f45b | 2005-01-11 02:21:33 +0000 | [diff] [blame] | 1329 | if test "${PYTHON}" != "" |
| 1330 | then |
| 1331 | CYGWIN_EXTRA_PYTHON_LIBADD="-L/usr/lib/python${PYTHON_VERSION}/config -lpython${PYTHON_VERSION}" |
| 1332 | fi |
Daniel Veillard | d392ba7 | 2004-08-04 14:56:45 +0000 | [diff] [blame] | 1333 | ;; |
Daniel Veillard | 1638a47 | 2003-08-14 01:23:25 +0000 | [diff] [blame] | 1334 | esac |
| 1335 | AC_SUBST(WIN32_EXTRA_LIBADD) |
| 1336 | AC_SUBST(WIN32_EXTRA_LDFLAGS) |
Daniel Veillard | d392ba7 | 2004-08-04 14:56:45 +0000 | [diff] [blame] | 1337 | AC_SUBST(CYGWIN_EXTRA_LDFLAGS) |
| 1338 | AC_SUBST(CYGWIN_EXTRA_PYTHON_LIBADD) |
Daniel Veillard | 1638a47 | 2003-08-14 01:23:25 +0000 | [diff] [blame] | 1339 | |
Daniel Veillard | 6984e6d | 2003-12-09 14:20:17 +0000 | [diff] [blame] | 1340 | AC_SUBST(CPPFLAGS) |
Daniel Veillard | d7e200c | 1999-11-15 17:53:11 +0000 | [diff] [blame] | 1341 | AC_SUBST(CFLAGS) |
Daniel Veillard | f5c2c87 | 1999-12-01 09:51:45 +0000 | [diff] [blame] | 1342 | AC_SUBST(XML_CFLAGS) |
Daniel Veillard | d7e200c | 1999-11-15 17:53:11 +0000 | [diff] [blame] | 1343 | |
Daniel Veillard | b05deb7 | 1999-08-10 19:04:08 +0000 | [diff] [blame] | 1344 | AC_SUBST(XML_LIBDIR) |
| 1345 | AC_SUBST(XML_LIBS) |
Daniel Veillard | 90d165b | 2003-09-01 20:33:13 +0000 | [diff] [blame] | 1346 | AC_SUBST(XML_LIBTOOLLIBS) |
Daniel Veillard | 81418e3 | 2001-05-22 15:08:55 +0000 | [diff] [blame] | 1347 | AC_SUBST(ICONV_LIBS) |
Daniel Veillard | b05deb7 | 1999-08-10 19:04:08 +0000 | [diff] [blame] | 1348 | AC_SUBST(XML_INCLUDEDIR) |
| 1349 | AC_SUBST(HTML_DIR) |
| 1350 | AC_SUBST(HAVE_ISNAN) |
| 1351 | AC_SUBST(HAVE_ISINF) |
Daniel Veillard | f1d0e6b | 2002-01-31 23:42:44 +0000 | [diff] [blame] | 1352 | AC_SUBST(PYTHON) |
| 1353 | AC_SUBST(PYTHON_VERSION) |
| 1354 | AC_SUBST(PYTHON_INCLUDES) |
Daniel Veillard | 253aa2c | 2002-02-02 09:17:16 +0000 | [diff] [blame] | 1355 | AC_SUBST(PYTHON_SITE_PACKAGES) |
Daniel Veillard | b05deb7 | 1999-08-10 19:04:08 +0000 | [diff] [blame] | 1356 | |
Daniel Veillard | b05deb7 | 1999-08-10 19:04:08 +0000 | [diff] [blame] | 1357 | AC_SUBST(M_LIBS) |
Daniel Veillard | 437b87b | 2000-01-03 17:30:46 +0000 | [diff] [blame] | 1358 | AC_SUBST(RDL_LIBS) |
Daniel Veillard | 361d845 | 2000-04-03 19:48:13 +0000 | [diff] [blame] | 1359 | |
Daniel Veillard | 9715c17 | 2002-11-25 16:33:40 +0000 | [diff] [blame] | 1360 | dnl for the spec file |
| 1361 | RELDATE=`date +'%a %b %e %Y'` |
| 1362 | AC_SUBST(RELDATE) |
Daniel Veillard | 6dc9196 | 2004-03-22 19:10:02 +0000 | [diff] [blame] | 1363 | AC_SUBST(PYTHON_TESTS) |
Daniel Veillard | 9715c17 | 2002-11-25 16:33:40 +0000 | [diff] [blame] | 1364 | |
Daniel Veillard | c6e997c | 2003-01-27 12:35:42 +0000 | [diff] [blame] | 1365 | rm -f COPYING.LIB COPYING |
Daniel Veillard | c575b99 | 2002-02-08 13:28:40 +0000 | [diff] [blame] | 1366 | ln -s Copyright COPYING |
| 1367 | |
Daniel Veillard | e4177a5 | 2004-01-08 16:43:57 +0000 | [diff] [blame] | 1368 | # keep on one line for cygwin c.f. #130896 |
Daniel Veillard | 99b7850 | 2005-09-11 22:04:08 +0000 | [diff] [blame] | 1369 | AC_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 Espinosa | 15fe6e7 | 1998-09-07 17:27:57 +0000 | [diff] [blame] | 1370 | |
Daniel Veillard | 06d2524 | 2004-02-25 13:01:42 +0000 | [diff] [blame] | 1371 | chmod +x xml2-config python/setup.py |
Daniel Veillard | 6795260 | 2006-01-05 15:29:44 +0000 | [diff] [blame] | 1372 | echo Done configuring |