*** empty log message ***
[libfirm] / configure.in
1 dnl
2 dnl Project:     libFIRM
3 dnl File name:   configure.in
4 dnl Purpose:
5 dnl Author:      Till Riedel (??)
6 dnl Modified by:
7 dnl Created:
8 dnl CVS-ID:      $Id$
9 dnl Copyright:   (c) 2002-2003 Universität Karlsruhe
10 dnl Licence:     This file protected by GPL -  GNU GENERAL PUBLIC LICENSE.
11 dnl
12
13
14 AC_REVISION($Id$)
15
16
17
18 AC_INIT(libfirm,0.3.0)
19 AC_PREREQ(2.50)
20 dnl if other files should be generated just add them to ac_output_files
21 ac_output_file="Makefile MakeRules ir/Makefile ir/adt/Makefile ir/debug/Makefile \
22                 ir/tv/Makefile ir/common/Makefile ir/ident/Makefile ir/ir/Makefile \
23                 ir/ana/Makefile ir/tr/Makefile ir/ana2/Makefile ir/stat/Makefile \
24                 ir/opt/Makefile ir/external/Makefile ir/config/Makefile \
25                 testprograms/Makefile firmjni/Makefile firmjni/testprograms/Makefile \
26                 libfirm.doxygen"
27
28 dnl generate the config header file
29 AC_CONFIG_HEADER(config.h)
30
31 dnl keep track of the environment set by the user
32 libfirm_conf_env="${CC+CC='$CC'} ${CFLAGS+CFLAGS='$CFLAGS'} ${CPP+CPP='$CPP'} ${CPPFLAGS+CPPFLAGS='$CPPFLAGS'} ${LDFLAGS+LDFLAGS='$LDFLAGS'} ${LIBS+LIBS='$LIBS'}"
33 AC_SUBST(libfirm_conf_env)
34
35 dnl where is the configure file
36 CONF_DIR_NAME=`dirname $0`
37
38 dnl check for additional include dirs
39 AC_ARG_WITH(includedir, [  --with-includedir=add colon seperated list of directories to include search path],
40     CPPFLAGS=$CPPFLAGS" -I"`echo $withval|sed 's;\:; -I;g'`, T_FLAG="")
41
42 dnl check for additional library dirs
43 AC_ARG_WITH(libdir, [  --with-libdir=add colon seperated list of directories to linker search path],
44     LDFLAGS=$LDFLAGS" -L"`echo $withval|sed 's;\:; -L;g'`, T_FLAG="")
45
46 dnl Package options
47 dnl ===============
48
49 dnl set debugging
50 dnl -------------
51 AC_ARG_ENABLE(debug,
52 [  --enable-debug          enable assertions and additional debugging routines],
53 [if test "$enableval" = yes; then
54   AC_DEFINE(DEBUG_libfirm)
55 else
56   AC_DEFINE(NDEBUG)
57 fi])
58 AC_SUBST(enable_debug_libfirm)
59
60 dnl disable inlining
61 dnl ----------------
62 AC_ARG_ENABLE(inlining,
63 [  --disable-inlining      disable inline C-extension],
64 [if test "$enableval" = yes; then
65   AC_DEFINE(USE_INLINING)
66 fi],
67 AC_DEFINE(USE_INLINING)
68 )
69
70 dnl set profiling
71 dnl -------------
72 AC_ARG_ENABLE(profile,
73 [  --enable-profile        enable profiling],
74 [if test "$enableval"=yes; then
75   enable_profile_libfirm=yes
76 fi],
77 [enable_profile_libfirm=no])
78 AC_SUBST(enable_profile_libfirm)
79
80 dnl set auto documentation
81 dnl ----------------------
82 AC_ARG_ENABLE(autodoc,
83 [  --enable-autodoc        enable auto documentation],
84 [if test "$enableval"=yes; then
85   enable_auto_documentation=yes
86 fi],
87 [enable_auto_documentation=no])
88 AC_SUBST(enable_auto_documentation)
89
90
91 dnl set firm jni
92 dnl ------------
93 AC_ARG_ENABLE(firmjni,
94 [  --enable-firmjni        check for tools necesarry to construct a java native interface for Firm],
95 [if test "$enableval"=yes; then
96   enable_firm_jni=yes
97 fi],
98 [enable_firm_jni=no])
99 AC_SUBST(enable_firm_jni)
100
101 dnl set heap analyses support
102 dnl -------------------------
103 AC_ARG_ENABLE(heapanalysis, [  --enable-heapanalysis       Compile with heap analysis.],
104         [enable_heapanalysis=$enableval], [enable_heapanalysis="no"])
105 if test "$enable_heapanalysis" = "no"; then
106   AC_MSG_RESULT([heapanalysis disabled])
107 else
108   AC_DEFINE(DO_HEAPANALYSIS)
109   AC_MSG_RESULT([heapanalysis enabled])
110 fi
111 AC_SUBST(enable_heapanalysis)
112
113 dnl disable linking of libiberty parts (xmalloc, xprintf, obstack, ...)
114 dnl ----------------------
115 AC_ARG_ENABLE(libiberty,
116 [  --disable-libiberty     disable own libiberty parts],
117 [if test "$enableval"=yes; then
118   disable_libiberty_=yes
119 fi],
120 [disable_libiberty=no])
121 AC_SUBST(disable_libiberty)
122
123 dnl enable Firm statistics
124 dnl -------------
125 AC_ARG_ENABLE(statistics,
126 [  --enable-statistics     enable Firm statistics],
127 [if test "$enableval"=yes; then
128   AC_DEFINE(FIRM_STATISTICS)
129 fi])
130 AC_SUBST(enable_statistics)
131
132 dnl disable external effects in XML
133 dnl -------------------------------
134 AC_MSG_CHECKING([for using external effects in xml2])
135 AC_ARG_ENABLE(external-effects,
136 [  --disable-effects       disable descriptions of external effects in XML],
137 [if test "$enableval"=no; then
138   enable_external_effects=no
139 fi],
140 [enable_external_effects=yes])
141 AC_SUBST(enable_external_effects)
142 if test "$enable_external_effects" == "no"; then
143   AC_MSG_RESULT([disabled])
144 else
145   AC_MSG_RESULT([enabled])
146 fi
147 dnl check for header and library below
148
149
150 dnl Checks for programs.
151 dnl ====================
152
153 dnl check for a C compiler
154 dnl ----------------------
155 AC_PROG_CC
156
157 dnl check for prelinkable linker
158 dnl ----------------------------
159 LIBFIRM_PROG_LD_R
160 if test "$libfirm_cv_prog_ld_r" != "yes"; then
161   AC_MSG_ERROR(need a prelinkcapable linker)
162 fi
163
164 dnl check for ar
165 dnl ------------
166 AC_CHECK_PROG(AR, ar, "ar", "")
167 if test "$AR" != "ar"; then
168   AC_MSG_ERROR(need ar for creating archives)
169 fi
170
171 dnl check for tar
172 dnl -------------
173 AC_CHECK_PROG(TAR, tar, "tar", "")
174 if test "$TAR" != "tar"; then
175   AC_MSG_ERROR(need tar for creating archives in distribution)
176 fi
177
178 dnl check whether ar can handle option -s
179 dnl if not then ranlib is needed
180 dnl for simpliticity we use ranlib every time
181
182 AC_PROG_RANLIB
183
184 AC_PROG_INSTALL
185
186 touch tmp-install.a tmp-install.b
187 if eval "$INSTALL -C tmp-install.a tmp-install.b" ; then
188     INSTALL="$INSTALL -C"
189 fi
190 rm tmp-install.a tmp-install.b
191
192
193 AC_PROG_LN_S
194
195 dnl check for doxygen if enabled
196 dnl ----------------------------
197 if test "$enable_auto_documentation" = yes; then
198   AC_CHECK_PROG(DOXYGEN, doxygen, "doxygen", "")
199   if test "$DOXYGEN" != "doxygen"; then
200     AC_MSG_ERROR(need doxygen for auto documentation)
201   fi
202   AC_CHECK_PROG(DOT, dot, "dot", "")
203   if test "$DOT" != "dot"; then
204     AC_MSG_ERROR(need dot for doxygen documentation (for class graphs) (IPD: module add Graphviz))
205   fi
206 fi
207
208 dnl check for availability of a jdk
209 dnl -------------------------------
210 if test "$enable_firm_jni" = yes; then
211   AC_CHECK_PROG(JAVAC, javac, "javac", "")
212   if test "$JAVAC" != "javac"; then
213     AC_MSG_ERROR(need java compiler javac to generate jni (IPD: module add jdk-1.3.1-sun))
214   fi
215   AC_CHECK_PROG(JAVAH, javah, "javah", "")
216   if test "$JAVAH" != "javah"; then
217     AC_MSG_ERROR(need javah to generate jni headers (IPD: module add jdk-1.3.1-sun))
218   fi
219 fi
220
221
222 dnl Checks for header files.
223 dnl ========================
224
225 AC_HEADER_STDC
226
227 dnl check for the math header file
228
229 AC_CHECK_HEADERS(math.h, ac_math_headers="yes", ac_math_headers="no")
230 if test "$ac_math_headers" != yes; then
231   dnl math header not found.
232   AC_MSG_ERROR("math header file not found")
233 fi
234
235
236 #dnl check for the gnu multiprecission (gmp) header file
237
238 #AC_CHECK_HEADERS(gmp.h, ac_gmp_headers="yes", ac_gmp_headers="no")
239 #if test "$ac_gmp_headers" != yes; then
240 #  dnl gmp header not found.
241 #  AC_MSG_ERROR("GNU multiprecission gmp header file not found")
242 #fi
243
244
245 dnl check for the obstack header file
246 dnl does not work with:
247 dnl  - cygwin
248 dnl  - MacOSX
249 #AC_FUNC_OBSTACK
250
251 AC_CHECK_HEADERS(obstack.h, ac_obstack_headers="yes", ac_obstack_headers="no")
252 if test "$ac_obstack_headers" != yes; then
253   dnl obstack header not found.
254   AC_MSG_ERROR("obstack.h not found")
255 fi
256
257
258 AC_CHECK_HEADERS(alloca.h, ac_alloca_headers="yes", ac_alloca_headers="no")
259 if test "$ac_alloca_headers" = "yes"; then
260     AC_DEFINE(HAVE_ALLOCA_H)
261 else
262   if test "$ac_cv_header_stdc" = "no"; then
263     AC_MSG_ERROR("alloca.h and stdlib.h not found")
264   fi
265 fi
266
267
268 dnl check for jni header files
269
270 if test "$enable_firm_jni" = yes; then
271   AC_CHECK_HEADERS(jni.h, ac_jni_headers="yes", ac_jni_headers="no")
272   if test "$ac_jni_headers" != yes; then
273     AC_MSG_ERROR(jni header file not found. (IPD: add --with-includedir=/usr/public2/java/jdk1.3.1-sun/include/:/usr/public2/java/jdk1.3.1-sun/include/linux/ to configure flags))
274   fi
275 fi
276
277
278 if test "$enable_external_effects" == "yes"; then
279   AC_CHECK_HEADERS(libxml/parser.h, ac_xml_headers="yes", ac_xml_headers="no")
280   if test "$ac_xml_headers" != yes; then
281     AC_MSG_ERROR(xml header files not found. (IPD: add --with-includedir=/usr/public/libxml2/include/libxml2/ to configure flags))
282   fi
283 fi
284
285 dnl Checks for libraries.
286 dnl =====================
287
288 #dnl check for the gnu multiprecission (gmp) library
289
290 #AC_CHECK_LIB(gmp, main, ac_gmp_library="yes", ac_gmp_library="no")
291 #if test "$ac_gmp_library" != yes; then
292 #  dnl gmp library not found.
293 #  AC_MSG_ERROR("GNU multiprecission gmp library not found")
294 #fi
295
296
297 AC_CHECK_LIB(m, main, ac_m_library="yes", ac_m_library="no")
298 if test "$ac_m_library" != yes; then
299   dnl std math library not found.
300   AC_MSG_ERROR("standard math library not found")
301 fi
302
303
304 if test "$enable_external_effects" == "yes"; then
305   AC_CHECK_LIB(xml2, xmlParseFile, ac_xml_library="yes", ac_xml_library="no")
306   if test "$ac_m_library" != yes; then
307     AC_MSG_ERROR("xml2 library not found (IPD: add --with-libdir=/usr/public/libxml2/lib/ to configure flags)")
308   else
309     LIBS=$LIBS" -lxml2"
310   fi
311 fi
312
313 dnl Checks for typedefs, structures, and compiler characteristics.
314 dnl ==============================================================
315 AC_C_CONST
316 AC_C_VOLATILE
317 AC_C_INLINE
318 AC_C_BIGENDIAN(,,,)
319 AC_C_LONG_DOUBLE
320
321 dnl Checks for library functions.
322 dnl =============================
323
324 dnl check for strerror
325
326 AC_CHECK_FUNC(strerror,,
327   AC_MSG_ERROR("need strerror function")
328 )
329
330
331 dnl Error messaging
332 dnl ===============
333
334
335 AC_OUTPUT($ac_output_file,[ touch stamp-h ])
336
337 dnl snip the lower prt of config.h and put it to ir/config/firm_config.h
338 gawk -f $CONF_DIR_NAME/filter.awk < config.h | sed -f $CONF_DIR_NAME/filter.sed > ir/config/firm_config.h