]> granicus.if.org Git - strace/blob - configure.ac
Refactor LDT decoding
[strace] / configure.ac
1 dnl Process this file with autoconf to create configure.  Use autoreconf.
2 AC_PREREQ(2.57)
3 AC_INIT([strace],
4         m4_esyscmd([./git-version-gen .tarball-version]),
5         [strace-devel@lists.sourceforge.net])
6 AC_CONFIG_SRCDIR([strace.c])
7 AC_CONFIG_AUX_DIR([.])
8 AC_CONFIG_HEADERS([config.h])
9 AM_INIT_AUTOMAKE([foreign dist-xz no-dist-gzip silent-rules parallel-tests])
10 AM_MAINTAINER_MODE
11 AC_CANONICAL_HOST
12
13 AC_PROG_CC
14 AC_USE_SYSTEM_EXTENSIONS
15
16 AC_MSG_CHECKING([for supported architecture])
17 case "$host_cpu" in
18 bfin)
19         arch=bfin
20         AC_DEFINE([BFIN], 1, [Define for the Blackfin architecture.])
21         ;;
22 i[[3456]]86|pentium)
23         arch=i386
24         AC_DEFINE([I386], 1, [Define for the i386 architecture.])
25         ;;
26 ia64)
27         arch=ia64
28         AC_DEFINE([IA64], 1, [Define for the IA64 architecture.])
29         ;;
30 m68k)
31         arch=m68k
32         AC_DEFINE([M68K], 1, [Define for the m68k architecture.])
33         ;;
34 sparc64*)
35         arch=sparc64
36         AC_DEFINE([SPARC64], 1, [Define for the SPARC64 architecture.])
37         ;;
38 sparc*)
39         arch=sparc
40         AC_DEFINE([SPARC], 1, [Define for the SPARC architecture.])
41         ;;
42 metag*)
43         arch=metag
44         AC_DEFINE([METAG], 1, [Define for the Meta architecture.])
45         ;;
46 mips*)
47         arch=mips
48         AC_DEFINE([MIPS], 1, [Define for the MIPS architecture.])
49         ;;
50 alpha*)
51         arch=alpha
52         AC_DEFINE([ALPHA], 1, [Define for the Alpha architecture.])
53         ;;
54 powerpc*)
55         arch=powerpc
56         AC_DEFINE([POWERPC], 1, [Define for the PowerPC architecture.])
57         AC_TRY_COMPILE(
58 [#ifndef __LP64__
59 # error 32 bit
60 #endif], [], ppc_bits=64, ppc_bits=32)
61         if test "$ppc_bits" = "64"; then
62                 AC_DEFINE([POWERPC64], 1, [Define for the PowerPC64 architecture.])
63         fi
64         ;;
65 arm*)
66         arch=arm
67         AC_DEFINE([ARM], 1, [Define for the ARM architecture.])
68         ;;
69 aarch64*)
70         arch=aarch64
71         AC_DEFINE([AARCH64], 1, [Define for the AArch64 architecture.])
72         ;;
73 avr32*)
74         arch=avr32
75         AC_DEFINE([AVR32], 1, [Define for the AVR32 architecture.])
76         ;;
77 arc*)
78         arch=arc
79         AC_DEFINE([ARC], 1, [Define for the ARC architecture.])
80         ;;
81 s390)
82         arch=s390
83         AC_DEFINE([S390], 1, [Define for the S390 architecture.])
84         ;;
85 s390x)
86         arch=s390x
87         AC_DEFINE([S390X], 1, [Define for the S390x architecture.])
88         ;;
89 hppa*|parisc*)
90         arch=hppa
91         AC_DEFINE([HPPA], 1, [Define for the HPPA architecture.])
92         ;;
93 sh64*)
94         arch=sh64
95         AC_DEFINE([SH64], 1, [Define for the SH64 architecture.])
96         ;;
97 sh*)
98         arch=sh
99         AC_DEFINE([SH], 1, [Define for the SH architecture.])
100         ;;
101 x86?64*)
102         AC_TRY_COMPILE(
103 [#ifndef __ILP32__
104 # error not x32
105 #endif], [], arch=x32, arch=x86_64)
106         if test "$arch" = "x86_64"; then
107                 AC_DEFINE([X86_64], 1, [Define for the 64bit AMD x86-64 architecture.])
108         else
109                 AC_DEFINE([X32], 1, [Define for the 32bit AMD x86-64 architecture.])
110         fi
111         ;;
112 cris|crisv10)
113         arch=crisv10
114         AC_DEFINE([CRISV10], 1, [Define for the CRISv10 architecture.])
115         ;;
116 crisv32)
117         arch=crisv32
118         AC_DEFINE([CRISV32], 1, [Define for the CRISv32 architecture.])
119         ;;
120 tile*)
121         arch=tile
122         AC_DEFINE([TILE], 1, [Define for the Tile architecture])
123         ;;
124 microblaze*)
125         arch=microblaze
126         AC_DEFINE([MICROBLAZE], 1, [Define for the MicroBlaze architecture.])
127         ;;
128 or1k*)
129         arch=or1k
130         AC_DEFINE([OR1K], 1, [Define for the OpenRISC 1000 architecture.])
131         ;;
132
133 xtensa*)
134         arch=xtensa
135         AC_DEFINE([XTENSA], 1, [Define for the Xtensa architecture])
136         ;;
137
138 *)
139         AC_MSG_RESULT([NO!])
140         AC_MSG_ERROR([architecture $host_cpu is not supported by strace])
141         ;;
142 esac
143 AC_MSG_RESULT($arch)
144
145 AC_SUBST(arch)
146
147 AM_CONDITIONAL([I386], [test x$arch = xi386])
148 AM_CONDITIONAL([X86_64], [test x$arch = xx86_64])
149 AM_CONDITIONAL([X32], [test x$arch = xx32])
150
151 AC_INCLUDEDIR
152
153 AC_ARG_ENABLE([arm-oabi],
154               [AS_HELP_STRING([--enable-arm-oabi],
155                               [enable OABI support on ARM EABI])],
156               [], [enable_arm_oabi=no])
157 case "$enable_arm_oabi" in
158         yes) enable_arm_oabi=1 ;;
159         no) enable_arm_oabi=0 ;;
160         *) AC_MSG_ERROR([bad value $enable_arm_oabi for arm-oabi option]) ;;
161 esac
162 AC_DEFINE_UNQUOTED([ENABLE_ARM_OABI], [$enable_arm_oabi],
163                    [Define to 1 if you want OABI support on ARM EABI.])
164
165 gl_WARN_ADD([-Wall])
166 gl_WARN_ADD([-Wwrite-strings])
167 AC_ARG_ENABLE([gcc-Werror],
168   [AS_HELP_STRING([--enable-gcc-Werror], [turn on gcc's -Werror option])],
169   [case $enableval in
170      yes) gl_WARN_ADD([-Werror]) ;;
171      no)  ;;
172      *)   AC_MSG_ERROR([bad value $enableval for gcc-Werror option]) ;;
173    esac]
174 )
175 AC_SUBST([WARN_CFLAGS])
176
177 AC_PROG_CPP
178 AC_PROG_INSTALL
179 AC_C_CONST
180 AC_C_BIGENDIAN
181 AC_HEADER_STDC
182 AC_HEADER_STDBOOL
183 AC_HEADER_DIRENT
184 AC_HEADER_STAT
185 AC_CHECK_MEMBERS(m4_normalize([
186         struct stat.st_aclcnt,
187         struct stat.st_blksize,
188         struct stat.st_blocks,
189         struct stat.st_flags,
190         struct stat.st_fstype,
191         struct stat.st_gen,
192         struct stat.st_level,
193         struct stat.st_rdev
194 ]))
195 AC_STAT64
196 AC_STATFS64
197
198 AC_TYPE_SIGNAL
199 AC_TYPE_UID_T
200 AC_TYPE_MODE_T
201 AC_TYPE_GETGROUPS
202 AC_HEADER_MAJOR
203 AC_CHECK_TYPES([sig_atomic_t, siginfo_t],,, [#include <signal.h>])
204 AC_CHECK_MEMBERS([struct sockaddr_in6.sin6_scope_id],,,
205 [#include <sys/types.h>
206 #include <sys/socket.h>
207 #include <netinet/in.h>])
208 AC_LITTLE_ENDIAN_LONG_LONG
209
210 AC_CHECK_FUNCS(m4_normalize([
211         fopen64
212         fork
213         fputs_unlocked
214         if_indextoname
215         inet_ntop
216         prctl
217         process_vm_readv
218         sendmsg
219         sigaction
220         stpcpy
221         strerror
222         strsignal
223 ]))
224 AC_CHECK_HEADERS(m4_normalize([
225         asm/cachectl.h
226         asm/sysmips.h
227         elf.h
228         inttypes.h
229         ioctls.h
230         linux/capability.h
231         linux/perf_event.h
232         linux/ptrace.h
233         linux/utsname.h
234         mqueue.h
235         netinet/sctp.h
236         poll.h
237         scsi/sg.h
238         stropts.h
239         sys/acl.h
240         sys/asynch.h
241         sys/conf.h
242         sys/epoll.h
243         sys/filio.h
244         sys/ioctl.h
245         sys/poll.h
246         sys/ptrace.h
247         sys/reg.h
248         sys/uio.h
249         sys/vfs.h
250 ]))
251 AC_CHECK_HEADERS([linux/icmp.h linux/in6.h linux/netlink.h linux/if_packet.h],
252                  [], [], [#include <stddef.h>
253 #include <sys/socket.h>
254 #include <asm/types.h>])
255 AC_CHECK_HEADERS([asm/sigcontext.h], [], [], [#include <signal.h>])
256 AC_CHECK_TYPES([struct sigcontext],,, [#include <signal.h>])
257 AC_CHECK_HEADERS([netinet/tcp.h netinet/udp.h],,, [#include <netinet/in.h>])
258
259 AC_CHECK_MEMBERS([struct msghdr.msg_control],,, [#include <sys/socket.h>])
260
261 AC_CHECK_TYPES([struct __old_kernel_stat],,, [#include <asm/stat.h>])
262
263 AC_CHECK_TYPES([struct pt_all_user_regs, struct ia64_fpreg, struct ptrace_peeksiginfo_args],,,
264                [#include <sys/ptrace.h>])
265
266 AC_CHECK_MEMBERS([struct utsname.domainname],,, [#include <sys/utsname.h>])
267
268 AC_CHECK_MEMBERS([struct sigevent._sigev_un._pad,
269                   struct sigevent.__pad,
270                   siginfo_t.si_syscall],,, [#include <signal.h>])
271
272 AC_CHECK_TYPES([struct flock64],,, [#include <fcntl.h>])
273
274 AC_CHECK_DECLS([sys_errlist])
275 AC_CHECK_DECLS(m4_normalize([
276         PTRACE_EVENT_CLONE,
277         PTRACE_EVENT_EXEC,
278         PTRACE_EVENT_EXIT,
279         PTRACE_EVENT_FORK,
280         PTRACE_EVENT_VFORK,
281         PTRACE_EVENT_VFORK_DONE,
282         PTRACE_GETEVENTMSG,
283         PTRACE_GETSIGINFO,
284         PTRACE_O_TRACECLONE,
285         PTRACE_O_TRACEEXEC,
286         PTRACE_O_TRACEEXIT,
287         PTRACE_O_TRACEFORK,
288         PTRACE_O_TRACESYSGOOD,
289         PTRACE_O_TRACEVFORK,
290         PTRACE_PEEKUSER,
291         PTRACE_POKEUSER,
292         PTRACE_SETOPTIONS
293 ]),,, [#include <sys/ptrace.h>])
294
295 AC_CHECK_DECLS(m4_normalize([
296         LO_FLAGS_AUTOCLEAR,
297         LO_FLAGS_PARTSCAN
298 ]),,, [#include <linux/loop.h>])
299
300 AC_CACHE_CHECK([for BLKGETSIZE64], [ac_cv_have_blkgetsize64],
301         [AC_COMPILE_IFELSE([AC_LANG_PROGRAM([
302 #include <stdlib.h>
303 #include <linux/fs.h>], [return !BLKGETSIZE64;])],
304                            [ac_cv_have_blkgetsize64=yes], [ac_cv_have_blkgetsize64=no])]
305         if test $ac_cv_have_blkgetsize64 = yes; then
306                 AC_DEFINE([HAVE_BLKGETSIZE64], [1], [Define to 1 if you have BLKGETSIZE64.])
307         fi)
308
309 AC_CHECK_SIZEOF([long])
310 AC_CHECK_SIZEOF([long long])
311 AC_CHECK_SIZEOF([off_t],,[#include <sys/types.h>])
312 AC_CHECK_SIZEOF([rlim_t],,[#include <sys/resource.h>])
313
314 AC_CACHE_CHECK([for SA_RESTORER], [st_cv_sa_restorer],
315                [st_cv_sa_restorer="$(echo SA_RESTORER |
316                         $CPP $CPPFLAGS -P -imacros asm/signal.h - |
317                         grep ^0x)"
318                 test -n "$st_cv_sa_restorer" || st_cv_sa_restorer=no])
319 if test "x$st_cv_sa_restorer" != xno; then
320         AC_DEFINE_UNQUOTED([ASM_SA_RESTORER], [$st_cv_sa_restorer],
321                            [SA_RESTORER defined in <asm/signal.h>])
322 fi
323
324 AC_CACHE_CHECK([for __builtin_popcount], [st_cv_have___builtin_popcount],
325                [AC_LINK_IFELSE([AC_LANG_PROGRAM([], [__builtin_popcount(0)])],
326                                [st_cv_have___builtin_popcount=yes],
327                                [st_cv_have___builtin_popcount=no])])
328 if test "x$st_cv_have___builtin_popcount" = xyes; then
329         AC_DEFINE([HAVE___BUILTIN_POPCOUNT], [1],
330                   [Define to 1 if the system provides __builtin_popcount function])
331 fi
332
333 AC_PATH_PROG([PERL], [perl])
334
335 AC_CONFIG_FILES([Makefile tests/Makefile])
336 AC_OUTPUT