blob: 789a997dde4ceff621101c922df00abe21be6b16 [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. Levin50e69cb2011-02-21 22:58:59 +00003AC_INIT([strace],[4.6])
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
11AC_MSG_CHECKING([for supported operating system])
12case "$host_os" in
Dmitry V. Levind915c802008-11-10 17:34:26 +000013*linux*)
Roland McGrath6d2b3492002-12-30 00:51:30 +000014 opsys=linux
15 AC_DEFINE([LINUX], 1, [Define for the Linux operating system.])
16 ;;
17sunos4*)
18 opsys=sunos4
19 AC_DEFINE([SUNOS4], 1, [Define for the SunOS 4.x operating system.])
20 ;;
21solaris2* | sysv[[45]]* | irix[[56]]*)
22 opsys=svr4
23 AC_DEFINE([SVR4], 1, [Define for the System V release 4 operating
24system or a derivative like Solaris 2.x or Irix 5.x.])
25 case "$host_os" in
26 sysv4.2uw*)
27 AC_DEFINE(UNIXWARE, 2, [Define for UnixWare systems.])
28 ;;
29 sysv5*)
30 AC_DEFINE(UNIXWARE, 7, [Define for UnixWare systems.])
31 ;;
32 esac
33 ;;
34freebsd*)
35 opsys=freebsd
36 AC_DEFINE([FREEBSD], 1, [Define for the FreeBSD operating system.])
37 ;;
38*)
39 AC_MSG_RESULT([NO!])
40 AC_MSG_ERROR([operating system $host_os is not supported by strace])
41 ;;
42esac
43AC_MSG_RESULT($opsys)
44
45AC_MSG_CHECKING([for supported architecture])
46case "$host_cpu" in
Dmitry V. Levin87ea1f42008-11-10 22:21:41 +000047bfin)
48 arch=bfin
49 AC_DEFINE([BFIN], 1, [Define for the Blackfin architecture.])
50 ;;
Roland McGrath6d2b3492002-12-30 00:51:30 +000051i[[3456]]86|pentium)
52 arch=i386
53 AC_DEFINE([I386], 1, [Define for the i386 architecture.])
54 ;;
55ia64)
56 arch=ia64
57 AC_DEFINE([IA64], 1, [Define for the IA64 architecture.])
58 ;;
59m68k)
60 arch=m68k
61 AC_DEFINE([M68K], 1, [Define for the m68k architecture.])
62 ;;
Roland McGrath6d1a65c2004-07-12 07:44:08 +000063sparc64*)
64 arch=sparc64
65 AC_DEFINE([SPARC64], 1, [Define for the SPARC64 architecture.])
66 ;;
Roland McGrath6d2b3492002-12-30 00:51:30 +000067sparc*)
68 arch=sparc
69 AC_DEFINE([SPARC], 1, [Define for the SPARC architecture.])
70 ;;
71mips*)
72 arch=mips
73 AC_DEFINE([MIPS], 1, [Define for the MIPS architecture.])
74 ;;
75alpha*)
76 arch=alpha
77 AC_DEFINE([ALPHA], 1, [Define for the Alpha architecture.])
78 ;;
Roland McGratheb285352003-01-14 09:59:00 +000079powerpc*)
Roland McGrath6d2b3492002-12-30 00:51:30 +000080 arch=powerpc
81 AC_DEFINE([POWERPC], 1, [Define for the PowerPC architecture.])
Andreas Schwabd69fa492010-07-12 21:39:57 +020082 if test $host_cpu = powerpc64; then
83 AC_DEFINE([POWERPC64], 1, [Define for the PowerPC64 architecture.])
84 fi
Roland McGrath6d2b3492002-12-30 00:51:30 +000085 ;;
86arm*)
87 arch=arm
88 AC_DEFINE([ARM], 1, [Define for the ARM architecture.])
89 ;;
Denys Vlasenko5ae2b7c2009-02-27 20:32:52 +000090avr32*)
91 arch=avr32
92 AC_DEFINE([AVR32], 1, [Define for the AVR32 architecture.])
93 ;;
Roland McGrath6d2b3492002-12-30 00:51:30 +000094s390)
95 arch=s390
96 AC_DEFINE([S390], 1, [Define for the S390 architecture.])
97 ;;
98s390x)
99 arch=s390x
100 AC_DEFINE([S390X], 1, [Define for the S390x architecture.])
101 ;;
102hppa*|parisc*)
103 arch=hppa
104 AC_DEFINE([HPPA], 1, [Define for the HPPA architecture.])
105 ;;
Roland McGrath67828ca2007-11-01 21:32:49 +0000106sh64*)
Roland McGrathf5a47772003-06-26 22:40:42 +0000107 arch=sh64
108 AC_DEFINE([SH64], 1, [Define for the SH64 architecture.])
Roland McGrathe1e584b2003-06-02 19:18:58 +0000109 ;;
Roland McGrath67828ca2007-11-01 21:32:49 +0000110sh*)
111 arch=sh
112 AC_DEFINE([SH], 1, [Define for the SH architecture.])
113 ;;
Roland McGrath6d2b3492002-12-30 00:51:30 +0000114x86?64*)
115 arch=x86_64
116 AC_DEFINE([X86_64], 1, [Define for the AMD x86-64 architecture.])
117 ;;
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +0000118cris|crisv10)
119 arch=crisv10
120 AC_DEFINE([CRISV10], 1, [Define for the CRISv10 architecture.])
121 ;;
122crisv32)
123 arch=crisv32
124 AC_DEFINE([CRISV32], 1, [Define for the CRISv32 architecture.])
125 ;;
Chris Metcalfc8c66982009-12-28 10:00:15 -0500126tile*)
127 arch=tile
128 AC_DEFINE([TILE], 1, [Define for the Tile architecture])
129 ;;
Edgar E. Iglesias939caba2010-07-06 14:21:07 +0200130microblaze*)
131 arch=microblaze
132 AC_DEFINE([MICROBLAZE], 1, [Define for the MicroBlaze architecture.])
133 ;;
Roland McGrath6d2b3492002-12-30 00:51:30 +0000134*)
135 AC_MSG_RESULT([NO!])
136 AC_MSG_ERROR([architecture $host_cpu is not supported by strace])
137 ;;
138esac
139AC_MSG_RESULT($arch)
140
Roland McGrath6d2b3492002-12-30 00:51:30 +0000141AC_SUBST(opsys)
142AC_SUBST(arch)
Roland McGrath6d2b3492002-12-30 00:51:30 +0000143
Roland McGrath2746edd2002-12-30 09:13:08 +0000144AM_CONDITIONAL([LINUX], [test x$opsys = xlinux])
Roland McGrathbc44e402004-07-12 05:45:08 +0000145AM_CONDITIONAL([I386], [test x$arch = xi386])
Roland McGrath2746edd2002-12-30 09:13:08 +0000146AM_CONDITIONAL([X86_64], [test x$arch = xx86_64])
147AM_CONDITIONAL([SUNOS4], [test x$opsys = xsunos4])
148AM_CONDITIONAL([SVR4], [test x$opsys = xsvr4])
149AM_CONDITIONAL([FREEBSD], [test x$opsys = xfreebsd])
150
Roland McGrath6d2b3492002-12-30 00:51:30 +0000151AC_PROG_CC
Roland McGrath795edb12005-02-02 04:44:57 +0000152AC_GNU_SOURCE
Roland McGrath45aeb6e2003-01-10 10:44:59 +0000153
Roland McGrath6d2b3492002-12-30 00:51:30 +0000154AC_INCLUDEDIR
155
156if test "x$opsys" = "xsunos4" && test "x$arch" = "xsparc"
157then
158 AC_MSG_CHECKING(for valid machine include directory)
159 if test -d "$includedir/sun4"
160 then
161 rm -f machine
162 ln -s $includedir/sun4 machine
163 AC_MSG_RESULT(yes)
164 AC_DEFINE(SUNOS4_KERNEL_ARCH_KLUDGE, 1, [
165Define if you are have a SPARC with SUNOS4 and your want a version
166of strace that will work on sun4, sun4c and sun4m kernel architectures.
167Only useful if you have a symbolic link from machine to /usr/include/sun4
168in the compilation directory.])
169 else
170 AC_MSG_RESULT(no)
171 fi
172fi
173
Dmitry V. Levin918e49b2010-09-09 17:41:15 +0000174gl_WARN_ADD([-Wall])
Dmitry V. Levin1ed5d802010-09-09 17:42:28 +0000175gl_WARN_ADD([-Wwrite-strings])
Roland McGrath6d2b3492002-12-30 00:51:30 +0000176if test "x$opsys" = "xsunos4"
177then
Dmitry V. Levin918e49b2010-09-09 17:41:15 +0000178 # SunOS 4.x header files don't declare int functions.
179 gl_WARN_ADD([-Wno-implicit])
Roland McGrath6d2b3492002-12-30 00:51:30 +0000180fi
Dmitry V. Levin918e49b2010-09-09 17:41:15 +0000181AC_SUBST([WARN_CFLAGS])
Roland McGrath6d2b3492002-12-30 00:51:30 +0000182
183AC_PROG_CPP
184AC_PROG_GCC_TRADITIONAL
185AC_PROG_INSTALL
186AC_C_CONST
Mike Frysinger6d12afd2010-09-12 03:39:55 -0400187AC_C_BIGENDIAN
Roland McGrath6d2b3492002-12-30 00:51:30 +0000188AC_HEADER_STDC
Roland McGrath639658b2008-08-01 01:06:31 +0000189AC_HEADER_STDBOOL
Roland McGrath6d2b3492002-12-30 00:51:30 +0000190AC_HEADER_DIRENT
191AC_HEADER_STAT
192AC_CHECK_MEMBERS([struct stat.st_blksize,
Roland McGrathe07cd602003-02-26 20:34:02 +0000193 struct stat.st_blocks,
Roland McGrath6d2b3492002-12-30 00:51:30 +0000194 struct stat.st_aclcnt,
195 struct stat.st_flags,
196 struct stat.st_fstype,
197 struct stat.st_gen,
198 struct stat.st_level,
199 struct stat.st_rdev])
200AC_STAT64
Bernhard Reutner-Fischer9906e6d2009-10-14 16:33:58 +0200201AC_STATFS64
Roland McGrath6d2b3492002-12-30 00:51:30 +0000202
203AC_TYPE_SIGNAL
204AC_TYPE_UID_T
205AC_TYPE_MODE_T
206AC_TYPE_GETGROUPS
207AC_HEADER_MAJOR
Roland McGrathacf06ef2003-01-10 19:57:34 +0000208AC_CHECK_TYPES([sig_atomic_t, siginfo_t],,, [#include <signal.h>])
Roland McGrathe07cd602003-02-26 20:34:02 +0000209AC_CHECK_MEMBERS([struct sockaddr_in6.sin6_scope_id],,,
210[#include <sys/types.h>
211#include <sys/socket.h>
212#include <netinet/in.h>])
Roland McGrath6d2b3492002-12-30 00:51:30 +0000213AC_CHECK_TYPES([long long])
214AC_LITTLE_ENDIAN_LONG_LONG
215AC_OFF_T_IS_LONG_LONG
216AC_RLIM_T_IS_LONG_LONG
217AC_CHECK_TYPES([struct opthdr],,, [#include <sys/socket.h>])
218AC_CHECK_TYPES([struct t_opthdr],,, [#include <sys/tiuser.h>])
219
220if test x$opsys != xlinux; then
221AC_CHECK_LIB(nsl, main)
222fi
223
Mike Frysinger24ab9602009-10-07 01:05:12 -0400224AC_CHECK_FUNCS([ \
Mike Frysingerc1a5b7e2009-10-07 20:41:29 -0400225 fork \
Mike Frysinger24ab9602009-10-07 01:05:12 -0400226 getdents \
227 if_indextoname \
228 inet_ntop \
229 mctl \
230 prctl \
231 pread \
232 sendmsg \
233 sigaction \
234 strerror \
235 strsignal \
236 sys_siglist \
237 _sys_siglist \
Denys Vlasenko0a295bc2011-09-01 16:31:48 +0200238 stpcpy \
Mike Frysinger24ab9602009-10-07 01:05:12 -0400239])
Dmitry V. Levinf48df6c2009-06-01 09:59:11 +0000240AC_CHECK_HEADERS([ \
241 inttypes.h \
242 ioctls.h \
243 libaio.h \
244 mqueue.h \
245 poll.h \
246 stropts.h \
247 termio.h \
248 sys/acl.h \
249 sys/aio.h \
250 sys/asynch.h \
251 sys/conf.h \
252 sys/door.h \
253 sys/epoll.h \
254 sys/filio.h \
255 sys/ioctl.h \
256 sys/nscsys.h \
257 sys/poll.h \
258 sys/ptrace.h \
259 sys/reg.h \
260 sys/stream.h \
261 sys/sysconfig.h \
262 sys/tihdr.h \
263 sys/tiuser.h \
264 sys/uio.h \
265 sys/vfs.h \
266 asm/cachectl.h \
Dmitry V. Levinf48df6c2009-06-01 09:59:11 +0000267 asm/sysmips.h \
268 linux/capability.h \
269 linux/ptrace.h \
270 linux/utsname.h \
Holger Hans Peter Freyther7fea79b2011-01-14 11:08:12 +0100271 netinet/sctp.h \
Dmitry V. Levinf48df6c2009-06-01 09:59:11 +0000272], [], [])
Roland McGrath6d2b3492002-12-30 00:51:30 +0000273AC_CHECK_HEADERS([linux/icmp.h linux/in6.h linux/netlink.h linux/if_packet.h],
Roland McGrathe7fa3052007-07-05 20:50:34 +0000274 [], [], [#include <stddef.h>
Andreas Schwab360986b2010-03-08 16:07:52 +0100275#include <sys/socket.h>
276#include <asm/types.h>])
Roland McGrath41074c02002-12-30 10:23:01 +0000277AC_CHECK_HEADERS([asm/sigcontext.h], [], [], [#include <signal.h>])
Roland McGrath587c7b52009-02-11 03:03:28 +0000278AC_CHECK_TYPES([struct sigcontext_struct,
279 struct sigcontext],,, [#include <signal.h>])
Roland McGratha7a0d382003-01-10 19:55:30 +0000280AC_CHECK_HEADERS([netinet/tcp.h netinet/udp.h],,, [#include <netinet/in.h>])
Roland McGrath6d2b3492002-12-30 00:51:30 +0000281
282AC_MP_PROCFS
283AC_POLLABLE_PROCFS
284
285AC_CHECK_MEMBERS([struct msghdr.msg_control],,, [#include <sys/socket.h>])
286AC_STRUCT_PR_SYSCALL
287
Roland McGratha7a0d382003-01-10 19:55:30 +0000288AC_CHECK_MEMBERS([struct T_conn_res.QUEUE_ptr,
289 struct T_conn_res.ACCEPTOR_id],,,
290[#include <sys/stream.h>
291#include <sys/tihdr.h>])
292
Roland McGrath79db8af2003-06-27 21:20:09 +0000293AC_CHECK_TYPES([struct __old_kernel_stat],,, [#include <asm/stat.h>])
294
Roland McGrathce9f0742004-03-01 21:29:22 +0000295AC_CHECK_TYPES([struct pt_all_user_regs, struct ia64_fpreg],,,
296 [#include <sys/ptrace.h>])
297
Roland McGrath7decfb22004-03-01 22:10:52 +0000298AC_CHECK_TYPES([struct user_desc],,, [#include <asm/ldt.h>])
299
Roland McGrathbe4d9f82005-08-03 12:18:09 +0000300AC_CHECK_MEMBERS([struct dqblk.dqb_curblocks],,, [#include <sys/quota.h>])
301
Roland McGrathfece3222007-07-05 19:08:42 +0000302AC_CHECK_MEMBERS([struct sigcontext.sc_hi2],,, [#include <signal.h>
Roland McGrathd26486e2007-07-11 07:11:20 +0000303#ifdef HAVE_ASM_SIGCONTEXT_H
304# include <asm/sigcontext.h>
305#endif])
Roland McGrathfece3222007-07-05 19:08:42 +0000306
307
Roland McGrath6d2b3492002-12-30 00:51:30 +0000308AC_CHECK_DECLS([sys_errlist])
309AC_CHECK_DECLS([sys_siglist, _sys_siglist],,, [#include <signal.h>])
Denys Vlasenkod166c552011-07-19 14:49:57 +0200310AC_CHECK_DECLS([
311 PTRACE_SETOPTIONS,
312 PTRACE_GETEVENTMSG,
313 PTRACE_GETSIGINFO,
Dmitry V. Levin1b0df402011-07-19 22:13:11 +0000314 PTRACE_O_TRACESYSGOOD,
Denys Vlasenkod166c552011-07-19 14:49:57 +0200315 PTRACE_O_TRACEFORK,
316 PTRACE_O_TRACEVFORK,
317 PTRACE_O_TRACECLONE,
Dmitry V. Levin1b0df402011-07-19 22:13:11 +0000318 PTRACE_O_TRACEEXEC,
319 PTRACE_O_TRACEEXIT,
Denys Vlasenkod166c552011-07-19 14:49:57 +0200320 PTRACE_EVENT_FORK,
321 PTRACE_EVENT_VFORK,
Dmitry V. Levin1b0df402011-07-19 22:13:11 +0000322 PTRACE_EVENT_CLONE,
323 PTRACE_EVENT_EXEC,
324 PTRACE_EVENT_VFORK_DONE,
325 PTRACE_EVENT_EXIT],,, [#include <sys/ptrace.h>])
Roland McGrath6d2b3492002-12-30 00:51:30 +0000326
Dmitry V. Levin25caa312011-08-16 21:36:16 +0000327AC_CACHE_CHECK([for BLKGETSIZE64], [ac_cv_have_blkgetsize64],
328 [AC_COMPILE_IFELSE([AC_LANG_PROGRAM([
329#include <stdlib.h>
330#include <linux/fs.h>], [return !BLKGETSIZE64;])],
331 [ac_cv_have_blkgetsize64=yes], [ac_cv_have_blkgetsize64=no])]
332 if test $ac_cv_have_blkgetsize64 = yes; then
333 AC_DEFINE([HAVE_BLKGETSIZE64], [1], [Define to 1 if you have BLKGETSIZE64.])
334 fi)
335
Roland McGrath6d2b3492002-12-30 00:51:30 +0000336AC_PATH_PROG([PERL], [perl])
337
Dmitry V. Levin4e4b5ad2011-02-27 00:28:50 +0000338AC_CONFIG_FILES([Makefile tests/Makefile])
Roland McGrath6d2b3492002-12-30 00:51:30 +0000339AC_OUTPUT