• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1dnl   configuration script for expat
2dnl   Process this file with autoconf to produce a configure script.
3dnl
4dnl   Copyright 2000 Clark Cooper
5dnl
6dnl   This file is part of EXPAT.
7dnl
8dnl   EXPAT is free software; you can redistribute it and/or modify it
9dnl   under the terms of the License (based on the MIT/X license) contained
10dnl   in the file COPYING that comes with this distribution.
11dnl
12
13dnl Ensure that Expat is configured with autoconf 2.52 or newer
14AC_PREREQ(2.52)
15
16dnl Get the version number of Expat, using m4's esyscmd() command to run
17dnl the command at m4-generation time. This allows us to create an m4
18dnl symbol holding the correct version number. AC_INIT() requires the
19dnl version number at m4-time, rather than when ./configure is run, so
20dnl all this must happen as part of m4, not as part of the shell code
21dnl contained in ./configure.
22dnl
23dnl NOTE: esyscmd() is a GNU M4 extension. Thus, we wrap it in an appropriate
24dnl test. I believe this test will work, but I don't have a place with non-
25dnl GNU M4 to test it right now.
26define([expat_version], ifdef([__gnu__],
27                              [esyscmd(conftools/get-version.sh lib/expat.h)],
28                              [2.0.x]))
29AC_INIT(expat, expat_version, expat-bugs@libexpat.org)
30undefine([expat_version])
31
32AC_CONFIG_SRCDIR(Makefile.in)
33AC_CONFIG_AUX_DIR(conftools)
34
35
36dnl
37dnl Increment LIBREVISION if source code has changed at all
38dnl
39dnl If the API has changed, increment LIBCURRENT and set LIBREVISION to 0
40dnl
41dnl If the API changes compatibly (i.e. simply adding a new function
42dnl without changing or removing earlier interfaces), then increment LIBAGE.
43dnl
44dnl If the API changes incompatibly set LIBAGE back to 0
45dnl
46
47LIBCURRENT=6
48LIBREVISION=0
49LIBAGE=5
50
51AC_CONFIG_HEADER(expat_config.h)
52
53sinclude(conftools/libtool.m4)
54sinclude(conftools/ac_c_bigendian_cross.m4)
55
56AC_LIBTOOL_WIN32_DLL
57AC_PROG_LIBTOOL
58
59AC_SUBST(LIBCURRENT)
60AC_SUBST(LIBREVISION)
61AC_SUBST(LIBAGE)
62
63dnl Checks for programs.
64AC_PROG_CC
65AC_PROG_INSTALL
66
67if test "$GCC" = yes ; then
68    dnl
69    dnl Be careful about adding the -fexceptions option; some versions of
70    dnl GCC don't support it and it causes extra warnings that are only
71    dnl distracting; avoid.
72    dnl
73    OLDCFLAGS="$CFLAGS -Wall -Wmissing-prototypes -Wstrict-prototypes"
74    CFLAGS="$OLDCFLAGS -fexceptions"
75    AC_MSG_CHECKING(whether gcc accepts -fexceptions)
76    AC_TRY_COMPILE(,(void)1,
77                   AC_MSG_RESULT(yes),
78                   AC_MSG_RESULT(no); CFLAGS="$OLDCFLAGS")
79fi
80
81dnl Checks for header files.
82AC_HEADER_STDC
83
84dnl Checks for typedefs, structures, and compiler characteristics.
85
86dnl Note: Avoid using AC_C_BIGENDIAN because it does not
87dnl work in a cross compile.
88AC_C_BIGENDIAN_CROSS
89
90AC_C_CONST
91AC_TYPE_SIZE_T
92AC_CHECK_FUNCS(memmove bcopy)
93
94dnl Only needed for xmlwf:
95AC_CHECK_HEADERS(fcntl.h unistd.h)
96AC_TYPE_OFF_T
97AC_FUNC_MMAP
98
99if test "$ac_cv_func_mmap_fixed_mapped" = "yes"; then
100    FILEMAP=unixfilemap
101else
102    FILEMAP=readfilemap
103fi
104AC_SUBST(FILEMAP)
105
106dnl Needed for the test support code; this was found at
107dnl http://lists.gnu.org/archive/html/bug-autoconf/2002-07/msg00028.html
108
109# AC_CPP_FUNC
110# ------------------ #
111# Checks to see if ANSI C99 CPP variable __func__ works.
112# If not, perhaps __FUNCTION__ works instead.
113# If not, we'll just define __func__ to "".
114AC_DEFUN([AC_CPP_FUNC],
115[AC_REQUIRE([AC_PROG_CC_STDC])dnl
116AC_CACHE_CHECK([for an ANSI C99-conforming __func__], ac_cv_cpp_func,
117[AC_COMPILE_IFELSE([AC_LANG_PROGRAM([],
118[[char *foo = __func__;]])],
119  [ac_cv_cpp_func=yes],
120  [AC_COMPILE_IFELSE([AC_LANG_PROGRAM([],
121[[char *foo = __FUNCTION__;]])],
122  [ac_cv_cpp_func=__FUNCTION__],
123  [ac_cv_cpp_func=no])])])
124if test $ac_cv_cpp_func = __FUNCTION__; then
125  AC_DEFINE(__func__,__FUNCTION__,
126            [Define to __FUNCTION__ or "" if `__func__' does not conform to
127ANSI C.])
128elif test $ac_cv_cpp_func = no; then
129  AC_DEFINE(__func__,"",
130            [Define to __FUNCTION__ or "" if `__func__' does not conform to
131ANSI C.])
132fi
133])# AC_CPP_FUNC
134
135AC_CPP_FUNC
136
137
138dnl Some basic configuration:
139AC_DEFINE([XML_NS], 1,
140          [Define to make XML Namespaces functionality available.])
141AC_DEFINE([XML_DTD], 1,
142          [Define to make parameter entity parsing functionality available.])
143AC_DEFINE([XML_CONTEXT_BYTES], 1024,
144          [Define to specify how much context to retain around the current parse point.])
145
146AC_CONFIG_FILES(Makefile)
147AC_OUTPUT
148
149abs_srcdir="`cd $srcdir && pwd`"
150abs_builddir="`pwd`"
151if test "$abs_srcdir" != "$abs_builddir"; then
152  make mkdir-init
153fi
154