Fixed configure: should work now in a build directory again
[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 where is the configure file
29 CONF_DIR_NAME=`dirname $0`
30
31 dnl generate the config header file
32 AC_CONFIG_HEADER(config.h)
33
34 dnl keep track of the environment set by the user
35 libfirm_conf_env="${CC+CC='$CC'} ${CFLAGS+CFLAGS='$CFLAGS'} ${CPP+CPP='$CPP'} ${CPPFLAGS+CPPFLAGS='$CPPFLAGS'} ${LDFLAGS+LDFLAGS='$LDFLAGS'} ${LIBS+LIBS='$LIBS'}"
36 AC_SUBST(libfirm_conf_env)
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 Checks for programs.
133 dnl ====================
134
135 dnl check for a C compiler
136 dnl ----------------------
137 AC_PROG_CC
138
139 dnl check for prelinkable linker
140 dnl ----------------------------
141 LIBFIRM_PROG_LD_R
142 if test "$libfirm_cv_prog_ld_r" != "yes"; then
143   AC_MSG_ERROR(need a prelinkcapable linker)
144 fi
145
146 dnl check for ar
147 dnl ------------
148 AC_CHECK_PROG(AR, ar, "ar", "")
149 if test "$AR" != "ar"; then
150   AC_MSG_ERROR(need ar for creating archives)
151 fi
152
153 dnl check for tar
154 dnl -------------
155 AC_CHECK_PROG(TAR, tar, "tar", "")
156 if test "$TAR" != "tar"; then
157   AC_MSG_ERROR(need tar for creating archives in distribution)
158 fi
159
160 dnl check whether ar can handle option -s
161 dnl if not then ranlib is needed
162 dnl for simpliticity we use ranlib every time
163
164 AC_PROG_RANLIB
165
166 AC_PROG_INSTALL
167
168 touch tmp-install.a tmp-install.b
169 if eval "$INSTALL -C tmp-install.a tmp-install.b" ; then
170     INSTALL="$INSTALL -C"
171 fi
172 rm tmp-install.a tmp-install.b
173
174
175 AC_PROG_LN_S
176
177 dnl check for doxygen if enabled
178 dnl ----------------------------
179 if test "$enable_auto_documentation" = yes; then
180   AC_CHECK_PROG(DOXYGEN, doxygen, "doxygen", "")
181   if test "$DOXYGEN" != "doxygen"; then
182     AC_MSG_ERROR(need doxygen for auto documentation)
183   fi
184   AC_CHECK_PROG(DOT, dot, "dot", "")
185   if test "$DOT" != "dot"; then
186     AC_MSG_ERROR(need dot for doxygen documentation (for class graphs) (IPD: module add Graphviz))
187   fi
188 fi
189
190 dnl check for availability of a jdk
191 dnl -------------------------------
192 if test "$enable_firm_jni" = yes; then
193   AC_CHECK_PROG(JAVAC, javac, "javac", "")
194   if test "$JAVAC" != "javac"; then
195     AC_MSG_ERROR(need java compiler javac to generate jni (IPD: module add jdk-1.3.1-sun))
196   fi
197   AC_CHECK_PROG(JAVAH, javah, "javah", "")
198   if test "$JAVAH" != "javah"; then
199     AC_MSG_ERROR(need javah to generate jni headers (IPD: module add jdk-1.3.1-sun))
200   fi
201 fi
202
203
204 dnl Checks for header files.
205 dnl ========================
206
207 AC_HEADER_STDC
208
209 dnl check for the math header file
210
211 AC_CHECK_HEADERS(math.h, ac_math_headers="yes", ac_math_headers="no")
212 if test "$ac_math_headers" != yes; then
213   dnl math header not found.
214   AC_MSG_ERROR("math header file not found")
215 fi
216
217
218 #dnl check for the gnu multiprecission (gmp) header file
219
220 #AC_CHECK_HEADERS(gmp.h, ac_gmp_headers="yes", ac_gmp_headers="no")
221 #if test "$ac_gmp_headers" != yes; then
222 #  dnl gmp header not found.
223 #  AC_MSG_ERROR("GNU multiprecission gmp header file not found")
224 #fi
225
226
227 dnl check for the obstack header file
228 dnl does not work with:
229 dnl  - cygwin
230 dnl  - MacOSX
231 #AC_FUNC_OBSTACK
232
233 AC_CHECK_HEADERS(obstack.h, ac_obstack_headers="yes", ac_obstack_headers="no")
234 if test "$ac_obstack_headers" != yes; then
235   dnl obstack header not found.
236   AC_MSG_ERROR("obstack.h not found")
237 fi
238
239
240 AC_CHECK_HEADERS(alloca.h, ac_alloca_headers="yes", ac_alloca_headers="no")
241 if test "$ac_alloca_headers" = "yes"; then
242     AC_DEFINE(HAVE_ALLOCA_H)
243 else
244   if test "$ac_cv_header_stdc" = "no"; then
245     AC_MSG_ERROR("alloca.h and stdlib.h not found")
246   fi
247 fi
248
249
250 dnl check for jni header files
251
252 if test "$enable_firm_jni" = yes; then
253   AC_CHECK_HEADERS(jni.h, ac_jni_headers="yes", ac_jni_headers="no")
254   if test "$ac_jni_headers" != yes; then
255     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))
256   fi
257 fi
258
259
260 dnl Checks for libraries.
261 dnl =====================
262
263 #dnl check for the gnu multiprecission (gmp) library
264
265 #AC_CHECK_LIB(gmp, main, ac_gmp_library="yes", ac_gmp_library="no")
266 #if test "$ac_gmp_library" != yes; then
267 #  dnl gmp library not found.
268 #  AC_MSG_ERROR("GNU multiprecission gmp library not found")
269 #fi
270
271
272 AC_CHECK_LIB(m, main, ac_m_library="yes", ac_m_library="no")
273 if test "$ac_m_library" != yes; then
274   dnl std math library not found.
275   AC_MSG_ERROR("standard math library not found")
276 fi
277
278
279 dnl Checks for typedefs, structures, and compiler characteristics.
280 dnl ==============================================================
281 AC_C_CONST
282 AC_C_VOLATILE
283 AC_C_INLINE
284 AC_C_BIGENDIAN(,,,)
285 AC_C_LONG_DOUBLE
286
287 dnl Checks for library functions.
288 dnl =============================
289
290 dnl check for strerror
291
292 AC_CHECK_FUNC(strerror,,
293   AC_MSG_ERROR("need strerror function")
294 )
295
296
297 dnl Error messaging
298 dnl ===============
299
300
301 AC_OUTPUT($ac_output_file,[ touch stamp-h ])
302
303 dnl snip the lower prt of config.h and put it to ir/config/firm_config.h
304 gawk -f $CONF_DIR_NAME/filter.awk < config.h | sed -f $CONF_DIR_NAME/filter.sed > ir/config/firm_config.h