blob: 47267c57891ad3e2254d58bc9658c9d6328731ec [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)
Roland McGrath09db7052008-08-28 22:00:46 +00003AC_INIT([strace],[4.5.18])
Roland McGrath6d2b3492002-12-30 00:51:30 +00004AC_CONFIG_SRCDIR([strace.c])
5AM_CONFIG_HEADER([config.h])
6AM_INIT_AUTOMAKE([foreign check-news dist-bzip2])
7AM_MAINTAINER_MODE
8AC_CANONICAL_HOST
9
10AC_MSG_CHECKING([for supported operating system])
11case "$host_os" in
Dmitry V. Levind915c802008-11-10 17:34:26 +000012*linux*)
Roland McGrath6d2b3492002-12-30 00:51:30 +000013 opsys=linux
14 AC_DEFINE([LINUX], 1, [Define for the Linux operating system.])
15 ;;
16sunos4*)
17 opsys=sunos4
18 AC_DEFINE([SUNOS4], 1, [Define for the SunOS 4.x operating system.])
19 ;;
20solaris2* | sysv[[45]]* | irix[[56]]*)
21 opsys=svr4
22 AC_DEFINE([SVR4], 1, [Define for the System V release 4 operating
23system or a derivative like Solaris 2.x or Irix 5.x.])
24 case "$host_os" in
25 sysv4.2uw*)
26 AC_DEFINE(UNIXWARE, 2, [Define for UnixWare systems.])
27 ;;
28 sysv5*)
29 AC_DEFINE(UNIXWARE, 7, [Define for UnixWare systems.])
30 ;;
31 esac
32 ;;
33freebsd*)
34 opsys=freebsd
35 AC_DEFINE([FREEBSD], 1, [Define for the FreeBSD operating system.])
36 ;;
37*)
38 AC_MSG_RESULT([NO!])
39 AC_MSG_ERROR([operating system $host_os is not supported by strace])
40 ;;
41esac
42AC_MSG_RESULT($opsys)
43
44AC_MSG_CHECKING([for supported architecture])
45case "$host_cpu" in
Dmitry V. Levin87ea1f42008-11-10 22:21:41 +000046bfin)
47 arch=bfin
48 AC_DEFINE([BFIN], 1, [Define for the Blackfin architecture.])
49 ;;
Roland McGrath6d2b3492002-12-30 00:51:30 +000050i[[3456]]86|pentium)
51 arch=i386
52 AC_DEFINE([I386], 1, [Define for the i386 architecture.])
53 ;;
54ia64)
55 arch=ia64
56 AC_DEFINE([IA64], 1, [Define for the IA64 architecture.])
57 ;;
58m68k)
59 arch=m68k
60 AC_DEFINE([M68K], 1, [Define for the m68k architecture.])
61 ;;
Roland McGrath6d1a65c2004-07-12 07:44:08 +000062sparc64*)
63 arch=sparc64
64 AC_DEFINE([SPARC64], 1, [Define for the SPARC64 architecture.])
65 ;;
Roland McGrath6d2b3492002-12-30 00:51:30 +000066sparc*)
67 arch=sparc
68 AC_DEFINE([SPARC], 1, [Define for the SPARC architecture.])
69 ;;
70mips*)
71 arch=mips
72 AC_DEFINE([MIPS], 1, [Define for the MIPS architecture.])
73 ;;
74alpha*)
75 arch=alpha
76 AC_DEFINE([ALPHA], 1, [Define for the Alpha architecture.])
77 ;;
Roland McGratheb285352003-01-14 09:59:00 +000078powerpc*)
Roland McGrath6d2b3492002-12-30 00:51:30 +000079 arch=powerpc
80 AC_DEFINE([POWERPC], 1, [Define for the PowerPC architecture.])
81 ;;
82arm*)
83 arch=arm
84 AC_DEFINE([ARM], 1, [Define for the ARM architecture.])
85 ;;
86s390)
87 arch=s390
88 AC_DEFINE([S390], 1, [Define for the S390 architecture.])
89 ;;
90s390x)
91 arch=s390x
92 AC_DEFINE([S390X], 1, [Define for the S390x architecture.])
93 ;;
94hppa*|parisc*)
95 arch=hppa
96 AC_DEFINE([HPPA], 1, [Define for the HPPA architecture.])
97 ;;
Roland McGrath67828ca2007-11-01 21:32:49 +000098sh64*)
Roland McGrathf5a47772003-06-26 22:40:42 +000099 arch=sh64
100 AC_DEFINE([SH64], 1, [Define for the SH64 architecture.])
Roland McGrathe1e584b2003-06-02 19:18:58 +0000101 ;;
Roland McGrath67828ca2007-11-01 21:32:49 +0000102sh*)
103 arch=sh
104 AC_DEFINE([SH], 1, [Define for the SH architecture.])
105 ;;
Roland McGrath6d2b3492002-12-30 00:51:30 +0000106x86?64*)
107 arch=x86_64
108 AC_DEFINE([X86_64], 1, [Define for the AMD x86-64 architecture.])
109 ;;
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +0000110cris|crisv10)
111 arch=crisv10
112 AC_DEFINE([CRISV10], 1, [Define for the CRISv10 architecture.])
113 ;;
114crisv32)
115 arch=crisv32
116 AC_DEFINE([CRISV32], 1, [Define for the CRISv32 architecture.])
117 ;;
Roland McGrath6d2b3492002-12-30 00:51:30 +0000118*)
119 AC_MSG_RESULT([NO!])
120 AC_MSG_ERROR([architecture $host_cpu is not supported by strace])
121 ;;
122esac
123AC_MSG_RESULT($arch)
124
Roland McGrath6d2b3492002-12-30 00:51:30 +0000125AC_SUBST(opsys)
126AC_SUBST(arch)
Roland McGrath6d2b3492002-12-30 00:51:30 +0000127
Roland McGrath2746edd2002-12-30 09:13:08 +0000128AM_CONDITIONAL([LINUX], [test x$opsys = xlinux])
Roland McGrathbc44e402004-07-12 05:45:08 +0000129AM_CONDITIONAL([I386], [test x$arch = xi386])
Roland McGrath2746edd2002-12-30 09:13:08 +0000130AM_CONDITIONAL([X86_64], [test x$arch = xx86_64])
131AM_CONDITIONAL([SUNOS4], [test x$opsys = xsunos4])
132AM_CONDITIONAL([SVR4], [test x$opsys = xsvr4])
133AM_CONDITIONAL([FREEBSD], [test x$opsys = xfreebsd])
134
Roland McGrath6d2b3492002-12-30 00:51:30 +0000135AC_PROG_CC
Roland McGrath795edb12005-02-02 04:44:57 +0000136AC_GNU_SOURCE
Roland McGrath45aeb6e2003-01-10 10:44:59 +0000137
Roland McGrath6d2b3492002-12-30 00:51:30 +0000138AC_INCLUDEDIR
139
140if test "x$opsys" = "xsunos4" && test "x$arch" = "xsparc"
141then
142 AC_MSG_CHECKING(for valid machine include directory)
143 if test -d "$includedir/sun4"
144 then
145 rm -f machine
146 ln -s $includedir/sun4 machine
147 AC_MSG_RESULT(yes)
148 AC_DEFINE(SUNOS4_KERNEL_ARCH_KLUDGE, 1, [
149Define if you are have a SPARC with SUNOS4 and your want a version
150of strace that will work on sun4, sun4c and sun4m kernel architectures.
151Only useful if you have a symbolic link from machine to /usr/include/sun4
152in the compilation directory.])
153 else
154 AC_MSG_RESULT(no)
155 fi
156fi
157
158AC_WARNFLAGS
159if test "x$opsys" = "xsunos4"
160then
161 if test -n "$GCC"
162 then
163 # SunOS 4.x header files don't declare int functions.
164 WARNFLAGS="$WARNFLAGS -Wno-implicit"
165 fi
166fi
167
168AC_PROG_CPP
169AC_PROG_GCC_TRADITIONAL
170AC_PROG_INSTALL
171AC_C_CONST
172AC_HEADER_STDC
Roland McGrath639658b2008-08-01 01:06:31 +0000173AC_HEADER_STDBOOL
Roland McGrath6d2b3492002-12-30 00:51:30 +0000174AC_HEADER_DIRENT
175AC_HEADER_STAT
176AC_CHECK_MEMBERS([struct stat.st_blksize,
Roland McGrathe07cd602003-02-26 20:34:02 +0000177 struct stat.st_blocks,
Roland McGrath6d2b3492002-12-30 00:51:30 +0000178 struct stat.st_aclcnt,
179 struct stat.st_flags,
180 struct stat.st_fstype,
181 struct stat.st_gen,
182 struct stat.st_level,
183 struct stat.st_rdev])
184AC_STAT64
185
186AC_TYPE_SIGNAL
187AC_TYPE_UID_T
188AC_TYPE_MODE_T
189AC_TYPE_GETGROUPS
190AC_HEADER_MAJOR
Roland McGrathacf06ef2003-01-10 19:57:34 +0000191AC_CHECK_TYPES([sig_atomic_t, siginfo_t],,, [#include <signal.h>])
Roland McGrathe07cd602003-02-26 20:34:02 +0000192AC_CHECK_MEMBERS([struct sockaddr_in6.sin6_scope_id],,,
193[#include <sys/types.h>
194#include <sys/socket.h>
195#include <netinet/in.h>])
Roland McGrath6d2b3492002-12-30 00:51:30 +0000196AC_CHECK_TYPES([long long])
197AC_LITTLE_ENDIAN_LONG_LONG
198AC_OFF_T_IS_LONG_LONG
199AC_RLIM_T_IS_LONG_LONG
200AC_CHECK_TYPES([struct opthdr],,, [#include <sys/socket.h>])
201AC_CHECK_TYPES([struct t_opthdr],,, [#include <sys/tiuser.h>])
202
203if test x$opsys != xlinux; then
204AC_CHECK_LIB(nsl, main)
205fi
206
207AC_CHECK_FUNCS(sigaction strerror strsignal pread sys_siglist _sys_siglist getdents mctl prctl sendmsg inet_ntop if_indextoname)
Dmitry V. Levin1f336e52006-10-14 20:20:46 +0000208AC_CHECK_HEADERS([sys/reg.h sys/filio.h sys/acl.h sys/asynch.h sys/door.h stropts.h sys/conf.h sys/stream.h sys/tihdr.h sys/tiuser.h sys/sysconfig.h ioctls.h sys/ioctl.h sys/ptrace.h termio.h linux/ptrace.h asm/reg.h sys/uio.h sys/aio.h poll.h sys/poll.h sys/vfs.h asm/sysmips.h linux/utsname.h sys/nscsys.h mqueue.h sys/epoll.h libaio.h inttypes.h], [], [])
Roland McGrath6d2b3492002-12-30 00:51:30 +0000209AC_CHECK_HEADERS([linux/icmp.h linux/in6.h linux/netlink.h linux/if_packet.h],
Roland McGrathe7fa3052007-07-05 20:50:34 +0000210 [], [], [#include <stddef.h>
211#include <linux/socket.h>])
Roland McGrath41074c02002-12-30 10:23:01 +0000212AC_CHECK_HEADERS([asm/sigcontext.h], [], [], [#include <signal.h>])
Roland McGrath587c7b52009-02-11 03:03:28 +0000213AC_CHECK_TYPES([struct sigcontext_struct,
214 struct sigcontext],,, [#include <signal.h>])
Roland McGratha7a0d382003-01-10 19:55:30 +0000215AC_CHECK_HEADERS([netinet/tcp.h netinet/udp.h],,, [#include <netinet/in.h>])
Roland McGrath6d2b3492002-12-30 00:51:30 +0000216
217AC_MP_PROCFS
218AC_POLLABLE_PROCFS
219
220AC_CHECK_MEMBERS([struct msghdr.msg_control],,, [#include <sys/socket.h>])
221AC_STRUCT_PR_SYSCALL
222
Roland McGratha7a0d382003-01-10 19:55:30 +0000223AC_CHECK_MEMBERS([struct T_conn_res.QUEUE_ptr,
224 struct T_conn_res.ACCEPTOR_id],,,
225[#include <sys/stream.h>
226#include <sys/tihdr.h>])
227
Roland McGrath79db8af2003-06-27 21:20:09 +0000228AC_CHECK_TYPES([struct __old_kernel_stat],,, [#include <asm/stat.h>])
229
Roland McGrathce9f0742004-03-01 21:29:22 +0000230AC_CHECK_TYPES([struct pt_all_user_regs, struct ia64_fpreg],,,
231 [#include <sys/ptrace.h>])
232
Roland McGrath7decfb22004-03-01 22:10:52 +0000233AC_CHECK_TYPES([struct user_desc],,, [#include <asm/ldt.h>])
234
Roland McGrathbe4d9f82005-08-03 12:18:09 +0000235AC_CHECK_MEMBERS([struct dqblk.dqb_curblocks],,, [#include <sys/quota.h>])
236
Roland McGrathfece3222007-07-05 19:08:42 +0000237AC_CHECK_MEMBERS([struct sigcontext.sc_hi2],,, [#include <signal.h>
Roland McGrathd26486e2007-07-11 07:11:20 +0000238#ifdef HAVE_ASM_SIGCONTEXT_H
239# include <asm/sigcontext.h>
240#endif])
Roland McGrathfece3222007-07-05 19:08:42 +0000241
242
Roland McGrath6d2b3492002-12-30 00:51:30 +0000243AC_CHECK_DECLS([sys_errlist])
244AC_CHECK_DECLS([sys_siglist, _sys_siglist],,, [#include <signal.h>])
245
246AC_PATH_PROG([PERL], [perl])
247
Roland McGrath80964aa2002-12-30 01:11:08 +0000248AC_CONFIG_FILES([Makefile])
Roland McGrath6d2b3492002-12-30 00:51:30 +0000249AC_OUTPUT