blob: 998324d2d989c3f6a5b822267ff6e73064c040dc [file] [log] [blame]
Roland McGrath6d2b3492002-12-30 00:51:30 +00001dnl Process this file with autoconf to create configure. Use autoreconf.
2AC_PREREQ(2.57)
Dmitry V. Levin417eb882012-05-02 12:34:56 +00003AC_INIT([strace],[4.7])
Roland McGrath6d2b3492002-12-30 00:51:30 +00004AC_CONFIG_SRCDIR([strace.c])
Roland McGrathffda2d32009-10-11 16:25:29 -07005AC_CONFIG_AUX_DIR([.])
Roland McGrath6d2b3492002-12-30 00:51:30 +00006AM_CONFIG_HEADER([config.h])
Dmitry V. Levin525a39a2011-02-27 14:05:58 +00007AM_INIT_AUTOMAKE([foreign check-news dist-xz no-dist-gzip silent-rules])
Roland McGrath6d2b3492002-12-30 00:51:30 +00008AM_MAINTAINER_MODE
9AC_CANONICAL_HOST
10
H.J. Lu35be5812012-04-16 13:00:01 +020011AC_PROG_CC
H.J. Lu35be5812012-04-16 13:00:01 +020012AC_USE_SYSTEM_EXTENSIONS
13
Roland McGrath6d2b3492002-12-30 00:51:30 +000014AC_MSG_CHECKING([for supported architecture])
15case "$host_cpu" in
Dmitry V. Levin87ea1f42008-11-10 22:21:41 +000016bfin)
17 arch=bfin
18 AC_DEFINE([BFIN], 1, [Define for the Blackfin architecture.])
19 ;;
Roland McGrath6d2b3492002-12-30 00:51:30 +000020i[[3456]]86|pentium)
21 arch=i386
22 AC_DEFINE([I386], 1, [Define for the i386 architecture.])
23 ;;
24ia64)
25 arch=ia64
26 AC_DEFINE([IA64], 1, [Define for the IA64 architecture.])
27 ;;
28m68k)
29 arch=m68k
30 AC_DEFINE([M68K], 1, [Define for the m68k architecture.])
31 ;;
Roland McGrath6d1a65c2004-07-12 07:44:08 +000032sparc64*)
33 arch=sparc64
34 AC_DEFINE([SPARC64], 1, [Define for the SPARC64 architecture.])
35 ;;
Roland McGrath6d2b3492002-12-30 00:51:30 +000036sparc*)
37 arch=sparc
38 AC_DEFINE([SPARC], 1, [Define for the SPARC architecture.])
39 ;;
James Hogan5f999a82013-02-22 14:44:10 +000040metag*)
41 arch=metag
42 AC_DEFINE([METAG], 1, [Define for the Meta architecture.])
43 ;;
Roland McGrath6d2b3492002-12-30 00:51:30 +000044mips*)
45 arch=mips
46 AC_DEFINE([MIPS], 1, [Define for the MIPS architecture.])
47 ;;
48alpha*)
49 arch=alpha
50 AC_DEFINE([ALPHA], 1, [Define for the Alpha architecture.])
51 ;;
Roland McGratheb285352003-01-14 09:59:00 +000052powerpc*)
Roland McGrath6d2b3492002-12-30 00:51:30 +000053 arch=powerpc
54 AC_DEFINE([POWERPC], 1, [Define for the PowerPC architecture.])
Andreas Schwabd69fa492010-07-12 21:39:57 +020055 if test $host_cpu = powerpc64; then
56 AC_DEFINE([POWERPC64], 1, [Define for the PowerPC64 architecture.])
57 fi
Roland McGrath6d2b3492002-12-30 00:51:30 +000058 ;;
59arm*)
60 arch=arm
61 AC_DEFINE([ARM], 1, [Define for the ARM architecture.])
62 ;;
Steve McIntyred8d3bd32012-10-24 17:58:16 +010063aarch64*)
64 arch=aarch64
65 AC_DEFINE([AARCH64], 1, [Define for the AArch64 architecture.])
66 ;;
Denys Vlasenko5ae2b7c2009-02-27 20:32:52 +000067avr32*)
68 arch=avr32
69 AC_DEFINE([AVR32], 1, [Define for the AVR32 architecture.])
70 ;;
Roland McGrath6d2b3492002-12-30 00:51:30 +000071s390)
72 arch=s390
73 AC_DEFINE([S390], 1, [Define for the S390 architecture.])
74 ;;
75s390x)
76 arch=s390x
77 AC_DEFINE([S390X], 1, [Define for the S390x architecture.])
78 ;;
79hppa*|parisc*)
80 arch=hppa
81 AC_DEFINE([HPPA], 1, [Define for the HPPA architecture.])
82 ;;
Roland McGrath67828ca2007-11-01 21:32:49 +000083sh64*)
Roland McGrathf5a47772003-06-26 22:40:42 +000084 arch=sh64
85 AC_DEFINE([SH64], 1, [Define for the SH64 architecture.])
Roland McGrathe1e584b2003-06-02 19:18:58 +000086 ;;
Roland McGrath67828ca2007-11-01 21:32:49 +000087sh*)
88 arch=sh
89 AC_DEFINE([SH], 1, [Define for the SH architecture.])
90 ;;
Roland McGrath6d2b3492002-12-30 00:51:30 +000091x86?64*)
H.J. Lu35be5812012-04-16 13:00:01 +020092 AC_TRY_COMPILE(
93[#ifndef __ILP32__
94# error not x32
95#endif], [], arch=x32, arch=x86_64)
96 if test "$arch" = "x86_64"; then
97 AC_DEFINE([X86_64], 1, [Define for the 64bit AMD x86-64 architecture.])
98 else
99 AC_DEFINE([X32], 1, [Define for the 32bit AMD x86-64 architecture.])
100 fi
Roland McGrath6d2b3492002-12-30 00:51:30 +0000101 ;;
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +0000102cris|crisv10)
103 arch=crisv10
104 AC_DEFINE([CRISV10], 1, [Define for the CRISv10 architecture.])
105 ;;
106crisv32)
107 arch=crisv32
108 AC_DEFINE([CRISV32], 1, [Define for the CRISv32 architecture.])
109 ;;
Chris Metcalfc8c66982009-12-28 10:00:15 -0500110tile*)
111 arch=tile
112 AC_DEFINE([TILE], 1, [Define for the Tile architecture])
113 ;;
Edgar E. Iglesias939caba2010-07-06 14:21:07 +0200114microblaze*)
115 arch=microblaze
116 AC_DEFINE([MICROBLAZE], 1, [Define for the MicroBlaze architecture.])
117 ;;
Christian Svensson492f81f2013-02-14 13:26:27 +0100118or1k*)
119 arch=or1k
120 AC_DEFINE([OR1K], 1, [Define for the OpenRISC 1000 architecture.])
121 ;;
122
Roland McGrath6d2b3492002-12-30 00:51:30 +0000123*)
124 AC_MSG_RESULT([NO!])
125 AC_MSG_ERROR([architecture $host_cpu is not supported by strace])
126 ;;
127esac
128AC_MSG_RESULT($arch)
129
Roland McGrath6d2b3492002-12-30 00:51:30 +0000130AC_SUBST(arch)
Roland McGrath6d2b3492002-12-30 00:51:30 +0000131
Roland McGrathbc44e402004-07-12 05:45:08 +0000132AM_CONDITIONAL([I386], [test x$arch = xi386])
Roland McGrath2746edd2002-12-30 09:13:08 +0000133AM_CONDITIONAL([X86_64], [test x$arch = xx86_64])
H.J. Lu35be5812012-04-16 13:00:01 +0200134AM_CONDITIONAL([X32], [test x$arch = xx32])
Roland McGrath45aeb6e2003-01-10 10:44:59 +0000135
Roland McGrath6d2b3492002-12-30 00:51:30 +0000136AC_INCLUDEDIR
137
Dmitry V. Levin918e49b2010-09-09 17:41:15 +0000138gl_WARN_ADD([-Wall])
Dmitry V. Levin1ed5d802010-09-09 17:42:28 +0000139gl_WARN_ADD([-Wwrite-strings])
Dmitry V. Levind376c922012-05-15 00:50:26 +0000140AC_ARG_ENABLE([gcc-Werror],
141 [AS_HELP_STRING([--enable-gcc-Werror], [turn on gcc's -Werror option])],
142 [case $enableval in
143 yes) gl_WARN_ADD([-Werror]) ;;
144 no) ;;
145 *) AC_MSG_ERROR([bad value $enableval for gcc-Werror option]) ;;
146 esac]
147)
Dmitry V. Levin918e49b2010-09-09 17:41:15 +0000148AC_SUBST([WARN_CFLAGS])
Roland McGrath6d2b3492002-12-30 00:51:30 +0000149
150AC_PROG_CPP
Roland McGrath6d2b3492002-12-30 00:51:30 +0000151AC_PROG_INSTALL
152AC_C_CONST
Mike Frysinger6d12afd2010-09-12 03:39:55 -0400153AC_C_BIGENDIAN
Roland McGrath6d2b3492002-12-30 00:51:30 +0000154AC_HEADER_STDC
Roland McGrath639658b2008-08-01 01:06:31 +0000155AC_HEADER_STDBOOL
Roland McGrath6d2b3492002-12-30 00:51:30 +0000156AC_HEADER_DIRENT
157AC_HEADER_STAT
Dmitry V. Levind8879f42012-03-25 15:12:16 +0000158AC_CHECK_MEMBERS(m4_normalize([
159 struct stat.st_aclcnt,
160 struct stat.st_blksize,
161 struct stat.st_blocks,
162 struct stat.st_flags,
163 struct stat.st_fstype,
164 struct stat.st_gen,
165 struct stat.st_level,
166 struct stat.st_rdev
167]))
Roland McGrath6d2b3492002-12-30 00:51:30 +0000168AC_STAT64
Bernhard Reutner-Fischer9906e6d2009-10-14 16:33:58 +0200169AC_STATFS64
Roland McGrath6d2b3492002-12-30 00:51:30 +0000170
171AC_TYPE_SIGNAL
172AC_TYPE_UID_T
173AC_TYPE_MODE_T
174AC_TYPE_GETGROUPS
175AC_HEADER_MAJOR
Roland McGrathacf06ef2003-01-10 19:57:34 +0000176AC_CHECK_TYPES([sig_atomic_t, siginfo_t],,, [#include <signal.h>])
Roland McGrathe07cd602003-02-26 20:34:02 +0000177AC_CHECK_MEMBERS([struct sockaddr_in6.sin6_scope_id],,,
178[#include <sys/types.h>
179#include <sys/socket.h>
180#include <netinet/in.h>])
Roland McGrath6d2b3492002-12-30 00:51:30 +0000181AC_CHECK_TYPES([long long])
182AC_LITTLE_ENDIAN_LONG_LONG
183AC_OFF_T_IS_LONG_LONG
Roland McGrath6d2b3492002-12-30 00:51:30 +0000184AC_CHECK_TYPES([struct opthdr],,, [#include <sys/socket.h>])
185AC_CHECK_TYPES([struct t_opthdr],,, [#include <sys/tiuser.h>])
186
Dmitry V. Levind8879f42012-03-25 15:12:16 +0000187AC_CHECK_FUNCS(m4_normalize([
188 fork
189 if_indextoname
190 inet_ntop
191 prctl
192 process_vm_readv
193 sendmsg
194 sigaction
195 stpcpy
196 strerror
197 strsignal
198 _sys_siglist
199 sys_siglist
200]))
201AC_CHECK_HEADERS(m4_normalize([
202 asm/cachectl.h
203 asm/sysmips.h
Dmitry V. Levinc41808b2013-03-18 00:52:29 +0000204 elf.h
Dmitry V. Levind8879f42012-03-25 15:12:16 +0000205 inttypes.h
206 ioctls.h
207 libaio.h
208 linux/capability.h
Ben Noordhuis88eafd82013-02-04 00:04:57 +0100209 linux/perf_event.h
Dmitry V. Levind8879f42012-03-25 15:12:16 +0000210 linux/ptrace.h
211 linux/utsname.h
212 mqueue.h
213 netinet/sctp.h
214 poll.h
215 stropts.h
216 sys/acl.h
217 sys/asynch.h
218 sys/conf.h
219 sys/epoll.h
220 sys/filio.h
221 sys/ioctl.h
222 sys/poll.h
223 sys/ptrace.h
224 sys/reg.h
225 sys/uio.h
226 sys/vfs.h
227]))
Roland McGrath6d2b3492002-12-30 00:51:30 +0000228AC_CHECK_HEADERS([linux/icmp.h linux/in6.h linux/netlink.h linux/if_packet.h],
Roland McGrathe7fa3052007-07-05 20:50:34 +0000229 [], [], [#include <stddef.h>
Andreas Schwab360986b2010-03-08 16:07:52 +0100230#include <sys/socket.h>
231#include <asm/types.h>])
Roland McGrath41074c02002-12-30 10:23:01 +0000232AC_CHECK_HEADERS([asm/sigcontext.h], [], [], [#include <signal.h>])
Roland McGrath587c7b52009-02-11 03:03:28 +0000233AC_CHECK_TYPES([struct sigcontext_struct,
234 struct sigcontext],,, [#include <signal.h>])
Roland McGratha7a0d382003-01-10 19:55:30 +0000235AC_CHECK_HEADERS([netinet/tcp.h netinet/udp.h],,, [#include <netinet/in.h>])
Roland McGrath6d2b3492002-12-30 00:51:30 +0000236
Roland McGrath6d2b3492002-12-30 00:51:30 +0000237AC_CHECK_MEMBERS([struct msghdr.msg_control],,, [#include <sys/socket.h>])
Roland McGrath6d2b3492002-12-30 00:51:30 +0000238
Roland McGratha7a0d382003-01-10 19:55:30 +0000239AC_CHECK_MEMBERS([struct T_conn_res.QUEUE_ptr,
240 struct T_conn_res.ACCEPTOR_id],,,
241[#include <sys/stream.h>
242#include <sys/tihdr.h>])
243
Roland McGrath79db8af2003-06-27 21:20:09 +0000244AC_CHECK_TYPES([struct __old_kernel_stat],,, [#include <asm/stat.h>])
245
Roland McGrathce9f0742004-03-01 21:29:22 +0000246AC_CHECK_TYPES([struct pt_all_user_regs, struct ia64_fpreg],,,
247 [#include <sys/ptrace.h>])
248
Roland McGrath7decfb22004-03-01 22:10:52 +0000249AC_CHECK_TYPES([struct user_desc],,, [#include <asm/ldt.h>])
250
Roland McGrathbe4d9f82005-08-03 12:18:09 +0000251AC_CHECK_MEMBERS([struct dqblk.dqb_curblocks],,, [#include <sys/quota.h>])
252
Roland McGrathfece3222007-07-05 19:08:42 +0000253AC_CHECK_MEMBERS([struct sigcontext.sc_hi2],,, [#include <signal.h>
Roland McGrathd26486e2007-07-11 07:11:20 +0000254#ifdef HAVE_ASM_SIGCONTEXT_H
255# include <asm/sigcontext.h>
256#endif])
Roland McGrathfece3222007-07-05 19:08:42 +0000257
Dmitry V. Levinea22e972012-05-01 20:56:32 +0000258AC_CHECK_MEMBERS([struct utsname.domainname],,, [#include <sys/utsname.h>])
259
Roland McGrath6d2b3492002-12-30 00:51:30 +0000260AC_CHECK_DECLS([sys_errlist])
261AC_CHECK_DECLS([sys_siglist, _sys_siglist],,, [#include <signal.h>])
Dmitry V. Levind8879f42012-03-25 15:12:16 +0000262AC_CHECK_DECLS(m4_normalize([
263 PTRACE_EVENT_CLONE,
264 PTRACE_EVENT_EXEC,
265 PTRACE_EVENT_EXIT,
266 PTRACE_EVENT_FORK,
267 PTRACE_EVENT_VFORK,
268 PTRACE_EVENT_VFORK_DONE,
269 PTRACE_GETEVENTMSG,
270 PTRACE_GETSIGINFO,
271 PTRACE_O_TRACECLONE,
272 PTRACE_O_TRACEEXEC,
273 PTRACE_O_TRACEEXIT,
274 PTRACE_O_TRACEFORK,
275 PTRACE_O_TRACESYSGOOD,
276 PTRACE_O_TRACEVFORK,
277 PTRACE_SETOPTIONS
278]),,, [#include <sys/ptrace.h>])
Roland McGrath6d2b3492002-12-30 00:51:30 +0000279
Dmitry V. Levincf050db2012-05-02 10:21:49 +0000280AC_CHECK_DECLS(m4_normalize([
281 LO_FLAGS_AUTOCLEAR,
282 LO_FLAGS_PARTSCAN
283]),,, [#include <linux/loop.h>])
284
Dmitry V. Levin25caa312011-08-16 21:36:16 +0000285AC_CACHE_CHECK([for BLKGETSIZE64], [ac_cv_have_blkgetsize64],
286 [AC_COMPILE_IFELSE([AC_LANG_PROGRAM([
287#include <stdlib.h>
288#include <linux/fs.h>], [return !BLKGETSIZE64;])],
289 [ac_cv_have_blkgetsize64=yes], [ac_cv_have_blkgetsize64=no])]
290 if test $ac_cv_have_blkgetsize64 = yes; then
291 AC_DEFINE([HAVE_BLKGETSIZE64], [1], [Define to 1 if you have BLKGETSIZE64.])
292 fi)
293
Dmitry V. Levin63e4f862012-03-15 20:42:46 +0000294AC_CHECK_SIZEOF([long])
Dmitry V. Levinb468f232012-03-16 23:05:21 +0400295AC_CHECK_SIZEOF([rlim_t],,[#include <sys/resource.h>])
Dmitry V. Levin63e4f862012-03-15 20:42:46 +0000296
Roland McGrath6d2b3492002-12-30 00:51:30 +0000297AC_PATH_PROG([PERL], [perl])
298
Dmitry V. Levin4e4b5ad2011-02-27 00:28:50 +0000299AC_CONFIG_FILES([Makefile tests/Makefile])
Roland McGrath6d2b3492002-12-30 00:51:30 +0000300AC_OUTPUT