blob: 47b4e7a4645925302e0a377cbd2485e184226ccb [file] [log] [blame]
sewardjde4a1d02002-03-22 01:27:54 +00001# Process this file with autoconf to produce a configure script.
thughes6dbad732004-08-29 09:46:38 +00002AC_INIT(Valgrind, 2.1.3.CVS, valgrind-users@lists.sourceforge.net)
3AC_CONFIG_SRCDIR(coregrind/vg_main.c)
sewardjde4a1d02002-03-22 01:27:54 +00004AM_CONFIG_HEADER(config.h)
thughes6dbad732004-08-29 09:46:38 +00005AM_INIT_AUTOMAKE
sewardjde4a1d02002-03-22 01:27:54 +00006
gobryb0ed4672002-03-27 20:58:58 +00007AM_MAINTAINER_MODE
8
sewardjde4a1d02002-03-22 01:27:54 +00009# Checks for programs.
gobrye721a522002-03-22 13:38:30 +000010CFLAGS=""
11
sewardjde4a1d02002-03-22 01:27:54 +000012AC_PROG_LN_S
13AC_PROG_CC
14AC_PROG_CPP
njn25e49d8e72002-09-23 09:36:25 +000015AC_PROG_CXX
sewardjde4a1d02002-03-22 01:27:54 +000016AC_PROG_RANLIB
17
gobrye721a522002-03-22 13:38:30 +000018# Check for the compiler support
19if test "${GCC}" != "yes" ; then
20 AC_MSG_ERROR([Valgrind relies on GCC to be compiled])
21fi
22
sewardj2f685952002-12-22 19:32:23 +000023# figure out where perl lives
24AC_PATH_PROG(PERL, perl)
25
njn9315df32003-04-16 20:50:50 +000026# figure out where gdb lives
27AC_PATH_PROG(GDB, gdb)
njn17b85352003-04-18 12:54:24 +000028# autoheader tries to execute the 3rd string or something; I get warnings when
29# it's defined. So just leave it undefined. --njn 2002-Apr-18
30AC_DEFINE_UNQUOTED(GDB_PATH, "$GDB", "")
njn9315df32003-04-16 20:50:50 +000031
daywalker48ccca52002-04-15 00:31:58 +000032# some older automake's don't have it so try something on our own
33ifdef([AM_PROG_AS],[AM_PROG_AS],
34[
gobry1be19852002-03-26 20:44:55 +000035AS="${CC}"
36AC_SUBST(AS)
gobry3b777892002-04-04 09:18:39 +000037
gobry1be19852002-03-26 20:44:55 +000038ASFLAGS=""
39AC_SUBST(ASFLAGS)
daywalker48ccca52002-04-15 00:31:58 +000040])
gobry3b777892002-04-04 09:18:39 +000041
42# This variable will collect the individual suppression files
43# depending on the results of autoconf
44
45DEFAULT_SUPP=""
46
47
gobrye721a522002-03-22 13:38:30 +000048# We don't want gcc 2.7
49AC_MSG_CHECKING([for a supported version of gcc])
50
daywalker870ac4c2002-05-21 00:09:48 +000051gcc_version=`${CC} --version | head -n 1`
gobrye721a522002-03-22 13:38:30 +000052
53case "${gcc_version}" in
54 gcc-2.7.*)
55 AC_MSG_RESULT([no (${gcc_version})])
56 AC_MSG_ERROR([please use a recent (>= gcc-2.95) version of gcc])
57 ;;
58
59 *)
60 AC_MSG_RESULT([ok (${gcc_version})])
61 ;;
62esac
63
gobrye721a522002-03-22 13:38:30 +000064
sewardjde4a1d02002-03-22 01:27:54 +000065# Checks for the platform
66AC_CANONICAL_HOST
67
68AC_MSG_CHECKING([for a supported CPU])
nethercote888ecb72004-08-23 14:54:40 +000069AC_SUBST(VG_ARCH)
sewardjde4a1d02002-03-22 01:27:54 +000070
gobrye721a522002-03-22 13:38:30 +000071case "${host_cpu}" in
sewardjde4a1d02002-03-22 01:27:54 +000072 i?86)
73 AC_MSG_RESULT([ok (${host_cpu})])
nethercote888ecb72004-08-23 14:54:40 +000074 VG_ARCH="x86"
sewardjde4a1d02002-03-22 01:27:54 +000075 ;;
76
77 *)
78 AC_MSG_RESULT([no (${host_cpu})])
79 AC_MSG_ERROR([Valgrind is ix86 specific. Sorry])
80 ;;
81esac
82
83AC_MSG_CHECKING([for a supported OS])
nethercote888ecb72004-08-23 14:54:40 +000084AC_SUBST(VG_OS)
sewardjde4a1d02002-03-22 01:27:54 +000085
gobrye721a522002-03-22 13:38:30 +000086case "${host_os}" in
mueller8c68e042004-01-03 15:21:14 +000087 *linux*)
sewardjde4a1d02002-03-22 01:27:54 +000088 AC_MSG_RESULT([ok (${host_os})])
nethercote888ecb72004-08-23 14:54:40 +000089 VG_OS="linux"
mueller8c68e042004-01-03 15:21:14 +000090
91 # Ok, this is linux. Check the kernel version
92 AC_MSG_CHECKING([for the kernel version])
93
94 kernel=`uname -r`
95
96 case "${kernel}" in
97 2.6.*)
98 AC_MSG_RESULT([2.6 family (${kernel})])
99 AC_DEFINE([KERNEL_2_6], 1, [Define to 1 if you're using Linux 2.6.x])
100 ;;
101
102 2.4.*)
103 AC_MSG_RESULT([2.4 family (${kernel})])
104 AC_DEFINE([KERNEL_2_4], 1, [Define to 1 if you're using Linux 2.4.x])
105 ;;
106
107 2.2.*)
108 AC_MSG_RESULT([2.2 family (${kernel})])
109 AC_DEFINE([KERNEL_2_2], 1, [Define to 1 if you're using Linux 2.2.x])
110 ;;
111
112 *)
113 AC_MSG_RESULT([unsupported (${kernel})])
114 AC_MSG_ERROR([Valgrind works on kernels 2.2, 2.4, 2.6])
115 ;;
116 esac
117
118 ;;
119
120 *freebsd*)
121 AC_MSG_RESULT([ok (${host_os})])
nethercote888ecb72004-08-23 14:54:40 +0000122 VG_OS="freebsd"
sewardjde4a1d02002-03-22 01:27:54 +0000123 ;;
124
125 *)
126 AC_MSG_RESULT([no (${host_os})])
mueller8c68e042004-01-03 15:21:14 +0000127 AC_MSG_ERROR([Valgrind is operating system specific. Sorry. Please consider doing a port.])
sewardjde4a1d02002-03-22 01:27:54 +0000128 ;;
129esac
130
nethercote888ecb72004-08-23 14:54:40 +0000131AC_MSG_CHECKING([for a supported CPU/OS combination])
132AC_SUBST(VG_PLATFORM)
133
134VG_PLATFORM="$VG_ARCH-$VG_OS"
135
136case $VG_PLATFORM in
137 x86-linux)
138 AC_MSG_RESULT([ok (${host_cpu}-${host_os})])
139 ;;
140
141 *)
142 AC_MSG_RESULT([no (${host_cpu}-${host_os})])
143 AC_MSG_ERROR([Valgrind is platform specific. Sorry. Please consider doin
144g a port.])
145 ;;
146esac
sewardjde4a1d02002-03-22 01:27:54 +0000147
sewardjde4a1d02002-03-22 01:27:54 +0000148AC_SUBST(DEFAULT_SUPP)
149
sewardjde4a1d02002-03-22 01:27:54 +0000150glibc=""
151
152AC_EGREP_CPP([GLIBC_21], [
153#include <features.h>
154#ifdef __GNU_LIBRARY__
155 #if (__GLIBC__ == 2 && __GLIBC_MINOR__ == 1)
156 GLIBC_21
157 #endif
158#endif
159],
160glibc="2.1")
161
162AC_EGREP_CPP([GLIBC_22], [
163#include <features.h>
164#ifdef __GNU_LIBRARY__
165 #if (__GLIBC__ == 2 && __GLIBC_MINOR__ == 2)
166 GLIBC_22
167 #endif
168#endif
169],
170glibc="2.2")
171
sewardj08c7f012002-10-07 23:56:55 +0000172AC_EGREP_CPP([GLIBC_23], [
173#include <features.h>
174#ifdef __GNU_LIBRARY__
175 #if (__GLIBC__ == 2 && __GLIBC_MINOR__ == 3)
176 GLIBC_23
177 #endif
178#endif
179],
180glibc="2.3")
181
daywalkere9212b32003-06-15 22:39:15 +0000182# Ok, this is linux. Check the kernel version
183AC_MSG_CHECKING([the glibc version])
184
gobrye721a522002-03-22 13:38:30 +0000185case "${glibc}" in
sewardjde4a1d02002-03-22 01:27:54 +0000186 2.1)
187 AC_MSG_RESULT(2.1 family)
daywalker418c7482002-10-16 13:09:26 +0000188 AC_DEFINE([GLIBC_2_1], 1, [Define to 1 if you're using glibc 2.1.x])
gobry3b777892002-04-04 09:18:39 +0000189 DEFAULT_SUPP="${DEFAULT_SUPP} glibc-2.1.supp"
sewardjde4a1d02002-03-22 01:27:54 +0000190 ;;
191
192 2.2)
193 AC_MSG_RESULT(2.2 family)
daywalker418c7482002-10-16 13:09:26 +0000194 AC_DEFINE([GLIBC_2_2], 1, [Define to 1 if you're using glibc 2.2.x])
gobry3b777892002-04-04 09:18:39 +0000195 DEFAULT_SUPP="${DEFAULT_SUPP} glibc-2.2.supp"
sewardjde4a1d02002-03-22 01:27:54 +0000196 ;;
197
sewardj08c7f012002-10-07 23:56:55 +0000198 2.3)
199 AC_MSG_RESULT(2.3 family)
daywalker418c7482002-10-16 13:09:26 +0000200 AC_DEFINE([GLIBC_2_3], 1, [Define to 1 if you're using glibc 2.3.x])
daywalker63f6f782003-05-27 00:19:52 +0000201 DEFAULT_SUPP="${DEFAULT_SUPP} glibc-2.3.supp"
sewardj08c7f012002-10-07 23:56:55 +0000202 ;;
203
sewardjde4a1d02002-03-22 01:27:54 +0000204 *)
205 AC_MSG_RESULT(unsupported version)
sewardj08c7f012002-10-07 23:56:55 +0000206 AC_MSG_ERROR([Valgrind requires the glibc version 2.1, 2.2 or 2.3])
sewardjde4a1d02002-03-22 01:27:54 +0000207 ;;
208esac
209
sewardj3e909ce2002-06-03 13:27:15 +0000210# APIs introduced in recent glibc versions
211
212AC_MSG_CHECKING([whether sched_param has a sched_priority member])
213AC_CACHE_VAL(vg_have_sched_priority,
214[
215AC_TRY_COMPILE([#include <pthread.h>],[
216struct sched_param p; p.sched_priority=1;],
217vg_have_sched_priority=yes,
218vg_have_sched_priority=no)
219])
220AC_MSG_RESULT($vg_have_sched_priority)
221if test "$vg_have_sched_priority" = yes; then
daywalker418c7482002-10-16 13:09:26 +0000222AC_DEFINE([HAVE_SCHED_PRIORITY], 1, [pthread / sched_priority exists])
sewardj3e909ce2002-06-03 13:27:15 +0000223fi
224
225AC_MSG_CHECKING([whether nfds_t is defined])
226AC_CACHE_VAL(vg_have_nfds_t,
227[
228AC_TRY_COMPILE([#include <sys/poll.h>],[
229nfds_t i=0;],
230vg_have_nfds_t=yes,
231vg_have_nfds_t=no)
232])
233AC_MSG_RESULT($vg_have_nfds_t)
234if test "$vg_have_nfds_t" = yes; then
daywalker418c7482002-10-16 13:09:26 +0000235AC_DEFINE([HAVE_NFDS_T], 1, [nfds_t exists])
sewardj3e909ce2002-06-03 13:27:15 +0000236fi
237
sewardjde4a1d02002-03-22 01:27:54 +0000238# try to detect the XFree version
sewardj8ce25cd2002-06-18 01:05:58 +0000239# JRS 2002-06-17: this is completely bogus because it
240# detects the server version, whereas we need to know the
241# client library version. So what follows is hacked to
242# use all the X supp files regardless of what is detected.
243# This is really stoooopid and should be fixed properly.
sewardjde4a1d02002-03-22 01:27:54 +0000244
gobrye721a522002-03-22 13:38:30 +0000245AC_PATH_X
246
247if test "${no_x}" != 'yes' ; then
248
249 AC_MSG_CHECKING([XFree version])
250
251 cat<<EOF > conftest.c
252#include <X11/Xlib.h>
253
254int main (int argc, char * argv [])
255{
256 Display * display = XOpenDisplay (NULL);
257
258 if (display) {
259 printf ("%s version=%d\n", ServerVendor (display), VendorRelease (display));
260 }
261
262 return 0;
263}
264EOF
265
266 ${CC} -o conftest conftest.c -I${x_includes} -L${x_libraries} -lX11 >&5 2>&1
267
268 if test "$?" != 0 ; then
269 AC_MSG_RESULT([cannot compile test program])
270 else
271 xfree=`./conftest`
272
273 case "${xfree}" in
274 *XFree86*)
275 ;;
276
277 *) AC_MSG_RESULT([not a XFree86 server])
278 ;;
279 esac
280
281 case "${xfree}" in
282
283 *version=4*)
284 AC_MSG_RESULT([XFree 4.x family])
daywalker418c7482002-10-16 13:09:26 +0000285 AC_DEFINE([XFREE_4], 1, [Define to 1 if you're using XFree 4.x])
gobry3b777892002-04-04 09:18:39 +0000286 DEFAULT_SUPP="${DEFAULT_SUPP} xfree-4.supp"
sewardj8ce25cd2002-06-18 01:05:58 +0000287 # haaaaaaack!
288 DEFAULT_SUPP="${DEFAULT_SUPP} xfree-3.supp"
gobrye721a522002-03-22 13:38:30 +0000289 ;;
290
291 *version=3*)
292 AC_MSG_RESULT([XFree 3.x family])
daywalker418c7482002-10-16 13:09:26 +0000293 AC_DEFINE([XFREE_3], 1, [Define to 1 if you're using XFree86 3.x])
sewardj19e6a4d2002-05-22 11:58:25 +0000294 DEFAULT_SUPP="${DEFAULT_SUPP} xfree-3.supp"
sewardj8ce25cd2002-06-18 01:05:58 +0000295 # haaaaaaack!
296 DEFAULT_SUPP="${DEFAULT_SUPP} xfree-4.supp"
gobrye721a522002-03-22 13:38:30 +0000297 ;;
298
299 *) AC_MSG_RESULT([unknown XFree86 server (${xfree})])
sewardj8ce25cd2002-06-18 01:05:58 +0000300 # haaaaaaack!
301 DEFAULT_SUPP="${DEFAULT_SUPP} xfree-3.supp"
302 DEFAULT_SUPP="${DEFAULT_SUPP} xfree-4.supp"
gobrye721a522002-03-22 13:38:30 +0000303 ;;
304 esac
305 fi
306
307 rm -f conftest conftest.c
308fi
309
sewardj2e10a682003-04-07 19:36:41 +0000310
daywalker3664f562003-10-17 13:43:46 +0000311# check if the GNU as supports CFI directives
312AC_MSG_CHECKING([if gas accepts .cfi])
muellerece14bd2003-10-31 03:43:48 +0000313AC_TRY_LINK(, [
daywalker3664f562003-10-17 13:43:46 +0000314
315__asm__ __volatile__ (".cfi_startproc\n"
316 ".cfi_adjust_cfa_offset 0x0\n"
317 ".cfi_endproc\n");
318],
319[
320 AC_DEFINE_UNQUOTED([HAVE_GAS_CFI], 1, [Define if your GNU as supports .cfi])
321 AC_MSG_RESULT(yes)
322],
323 AC_MSG_RESULT(no)
324)
sewardj2e10a682003-04-07 19:36:41 +0000325
sewardj5b754b42002-06-03 22:53:35 +0000326# does this compiler support -mpreferred-stack-boundary=2 ?
327AC_MSG_CHECKING([if gcc accepts -mpreferred-stack-boundary])
328
daywalker3664f562003-10-17 13:43:46 +0000329safe_CFLAGS=$CFLAGS
sewardj5b754b42002-06-03 22:53:35 +0000330CFLAGS="-mpreferred-stack-boundary=2"
331
332AC_TRY_COMPILE(, [
333
334int main () { return 0 ; }
335
336],
337[
338PREFERRED_STACK_BOUNDARY="-mpreferred-stack-boundary=2"
daywalker3664f562003-10-17 13:43:46 +0000339AC_MSG_RESULT([yes])
sewardj5b754b42002-06-03 22:53:35 +0000340], [
341PREFERRED_STACK_BOUNDARY=""
342AC_MSG_RESULT([no])
343])
daywalker3664f562003-10-17 13:43:46 +0000344CFLAGS=$safe_CFLAGS
sewardj5b754b42002-06-03 22:53:35 +0000345
346AC_SUBST(PREFERRED_STACK_BOUNDARY)
347
348
349
sewardjde4a1d02002-03-22 01:27:54 +0000350# Checks for header files.
351AC_HEADER_STDC
nethercote2baf9aa2004-08-24 14:38:53 +0000352AC_CHECK_HEADERS([fcntl.h stdlib.h string.h sys/socket.h sys/statfs.h sys/time.h sys/endian.h endian.h termios.h unistd.h utime.h linux/fb.h mqueue.h linux/compiler.h])
353
thughes33448cc2004-08-24 23:09:07 +0000354AH_TEMPLATE([HAVE_LINUX_MII_H], [])
355AC_MSG_CHECKING([for linux/mii.h])
356AC_PREPROC_IFELSE([#include <linux/mii.h>],
357 [AC_DEFINE([HAVE_LINUX_MII_H])
358 AC_MSG_RESULT([yes])],
359 [AC_MSG_RESULT([no])])
sewardjde4a1d02002-03-22 01:27:54 +0000360
361# Checks for typedefs, structures, and compiler characteristics.
sewardjde4a1d02002-03-22 01:27:54 +0000362AC_TYPE_UID_T
363AC_TYPE_OFF_T
364AC_TYPE_SIZE_T
365AC_HEADER_TIME
thughesebed9982004-06-12 17:25:25 +0000366AC_CHECK_TYPES(__pthread_unwind_buf_t,,,[#include <pthread.h>])
thughesbe811712004-06-17 23:04:58 +0000367AC_CHECK_TYPES(u16,,,[#include <linux/mii.h>])
sewardjde4a1d02002-03-22 01:27:54 +0000368
369# Checks for library functions.
370AC_FUNC_MEMCMP
371AC_FUNC_MMAP
372AC_TYPE_SIGNAL
373
thughesbeb6eb92004-06-14 12:33:43 +0000374AC_CHECK_FUNCS([floor memchr memset mkdir strchr strdup strpbrk strrchr strstr semtimedop])
sewardjde4a1d02002-03-22 01:27:54 +0000375
gobrye721a522002-03-22 13:38:30 +0000376AC_OUTPUT(
sewardjde4a1d02002-03-22 01:27:54 +0000377 Makefile
njn25cac76cb2002-09-23 11:21:57 +0000378 valgrind.spec
muellerbddd6072003-11-19 21:50:07 +0000379 valgrind.pc
njn254d542432002-09-23 16:09:39 +0000380 docs/Makefile
381 tests/Makefile
njnc2e7f482002-09-27 08:44:17 +0000382 tests/vg_regtest
njn251ffab942002-09-23 16:42:19 +0000383 tests/unused/Makefile
njn254d542432002-09-23 16:09:39 +0000384 include/Makefile
njn7a6e7462002-11-09 17:53:30 +0000385 auxprogs/Makefile
njn25ab726032002-09-23 16:24:41 +0000386 coregrind/Makefile
387 coregrind/demangle/Makefile
388 coregrind/docs/Makefile
fitzhardinge98abfc72003-12-16 02:05:15 +0000389 coregrind/x86/Makefile
njn25cac76cb2002-09-23 11:21:57 +0000390 addrcheck/Makefile
njnf2df9b52002-10-04 11:35:47 +0000391 addrcheck/tests/Makefile
njn7da8fa72002-10-03 10:38:40 +0000392 addrcheck/docs/Makefile
njn25cac76cb2002-09-23 11:21:57 +0000393 memcheck/Makefile
394 memcheck/tests/Makefile
395 memcheck/docs/Makefile
396 cachegrind/Makefile
njn25cac76cb2002-09-23 11:21:57 +0000397 cachegrind/tests/Makefile
398 cachegrind/docs/Makefile
njnf2df9b52002-10-04 11:35:47 +0000399 cachegrind/cg_annotate
njn25cac76cb2002-09-23 11:21:57 +0000400 helgrind/Makefile
njnf2df9b52002-10-04 11:35:47 +0000401 helgrind/tests/Makefile
njn83157fc2002-10-03 10:07:34 +0000402 helgrind/docs/Makefile
nethercotec9f36922004-02-14 16:40:02 +0000403 massif/Makefile
404 massif/hp2ps/Makefile
405 massif/tests/Makefile
406 massif/docs/Makefile
407 corecheck/Makefile
408 corecheck/tests/Makefile
409 corecheck/docs/Makefile
njn25cac76cb2002-09-23 11:21:57 +0000410 lackey/Makefile
njnf2df9b52002-10-04 11:35:47 +0000411 lackey/tests/Makefile
njn83157fc2002-10-03 10:07:34 +0000412 lackey/docs/Makefile
njn25cac76cb2002-09-23 11:21:57 +0000413 none/Makefile
414 none/tests/Makefile
njn9bc8c002002-10-02 13:49:13 +0000415 none/docs/Makefile
njn25cac76cb2002-09-23 11:21:57 +0000416)
gobry3b777892002-04-04 09:18:39 +0000417
418cat<<EOF
419
420Using the following suppressions by default:
421
422 ${DEFAULT_SUPP}
423EOF
424
425cat<<EOF > default.supp
426# This is a generated file, composed of the following suppression rules:
427#
428# ${DEFAULT_SUPP}
429#
430
431EOF
432
433for file in ${DEFAULT_SUPP} ; do
434 cat ${srcdir}/$file >> default.supp
435done