Roland McGrath | 6d2b349 | 2002-12-30 00:51:30 +0000 | [diff] [blame] | 1 | dnl Process this file with autoconf to create configure. Use autoreconf. |
| 2 | AC_PREREQ(2.57) |
Roland McGrath | a3bc12e | 2003-09-24 22:22:38 +0000 | [diff] [blame] | 3 | AC_INIT([strace],[4.5]) |
Roland McGrath | 6d2b349 | 2002-12-30 00:51:30 +0000 | [diff] [blame] | 4 | AC_CONFIG_SRCDIR([strace.c]) |
| 5 | AM_CONFIG_HEADER([config.h]) |
| 6 | AM_INIT_AUTOMAKE([foreign check-news dist-bzip2]) |
| 7 | AM_MAINTAINER_MODE |
| 8 | AC_CANONICAL_HOST |
| 9 | |
| 10 | AC_MSG_CHECKING([for supported operating system]) |
| 11 | case "$host_os" in |
| 12 | linux*) |
| 13 | opsys=linux |
| 14 | AC_DEFINE([LINUX], 1, [Define for the Linux operating system.]) |
| 15 | ;; |
| 16 | sunos4*) |
| 17 | opsys=sunos4 |
| 18 | AC_DEFINE([SUNOS4], 1, [Define for the SunOS 4.x operating system.]) |
| 19 | ;; |
| 20 | solaris2* | sysv[[45]]* | irix[[56]]*) |
| 21 | opsys=svr4 |
| 22 | AC_DEFINE([SVR4], 1, [Define for the System V release 4 operating |
| 23 | system 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 | ;; |
| 33 | freebsd*) |
| 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 | ;; |
| 41 | esac |
| 42 | AC_MSG_RESULT($opsys) |
| 43 | |
| 44 | AC_MSG_CHECKING([for supported architecture]) |
| 45 | case "$host_cpu" in |
| 46 | i[[3456]]86|pentium) |
| 47 | arch=i386 |
| 48 | AC_DEFINE([I386], 1, [Define for the i386 architecture.]) |
| 49 | ;; |
| 50 | ia64) |
| 51 | arch=ia64 |
| 52 | AC_DEFINE([IA64], 1, [Define for the IA64 architecture.]) |
| 53 | ;; |
| 54 | m68k) |
| 55 | arch=m68k |
| 56 | AC_DEFINE([M68K], 1, [Define for the m68k architecture.]) |
| 57 | ;; |
| 58 | sparc*) |
| 59 | arch=sparc |
| 60 | AC_DEFINE([SPARC], 1, [Define for the SPARC architecture.]) |
| 61 | ;; |
| 62 | mips*) |
| 63 | arch=mips |
| 64 | AC_DEFINE([MIPS], 1, [Define for the MIPS architecture.]) |
| 65 | ;; |
| 66 | alpha*) |
| 67 | arch=alpha |
| 68 | AC_DEFINE([ALPHA], 1, [Define for the Alpha architecture.]) |
| 69 | ;; |
Roland McGrath | eb28535 | 2003-01-14 09:59:00 +0000 | [diff] [blame] | 70 | powerpc*) |
Roland McGrath | 6d2b349 | 2002-12-30 00:51:30 +0000 | [diff] [blame] | 71 | arch=powerpc |
| 72 | AC_DEFINE([POWERPC], 1, [Define for the PowerPC architecture.]) |
| 73 | ;; |
| 74 | arm*) |
| 75 | arch=arm |
| 76 | AC_DEFINE([ARM], 1, [Define for the ARM architecture.]) |
| 77 | ;; |
| 78 | s390) |
| 79 | arch=s390 |
| 80 | AC_DEFINE([S390], 1, [Define for the S390 architecture.]) |
| 81 | ;; |
| 82 | s390x) |
| 83 | arch=s390x |
| 84 | AC_DEFINE([S390X], 1, [Define for the S390x architecture.]) |
| 85 | ;; |
| 86 | hppa*|parisc*) |
| 87 | arch=hppa |
| 88 | AC_DEFINE([HPPA], 1, [Define for the HPPA architecture.]) |
| 89 | ;; |
| 90 | sh) |
| 91 | arch=sh |
| 92 | AC_DEFINE([SH], 1, [Define for the SH architecture.]) |
| 93 | ;; |
Roland McGrath | f5a4777 | 2003-06-26 22:40:42 +0000 | [diff] [blame] | 94 | sh64) |
| 95 | arch=sh64 |
| 96 | AC_DEFINE([SH64], 1, [Define for the SH64 architecture.]) |
Roland McGrath | e1e584b | 2003-06-02 19:18:58 +0000 | [diff] [blame] | 97 | ;; |
Roland McGrath | 6d2b349 | 2002-12-30 00:51:30 +0000 | [diff] [blame] | 98 | x86?64*) |
| 99 | arch=x86_64 |
| 100 | AC_DEFINE([X86_64], 1, [Define for the AMD x86-64 architecture.]) |
| 101 | ;; |
| 102 | *) |
| 103 | AC_MSG_RESULT([NO!]) |
| 104 | AC_MSG_ERROR([architecture $host_cpu is not supported by strace]) |
| 105 | ;; |
| 106 | esac |
| 107 | AC_MSG_RESULT($arch) |
| 108 | |
Roland McGrath | 6d2b349 | 2002-12-30 00:51:30 +0000 | [diff] [blame] | 109 | AC_SUBST(opsys) |
| 110 | AC_SUBST(arch) |
Roland McGrath | 6d2b349 | 2002-12-30 00:51:30 +0000 | [diff] [blame] | 111 | |
Roland McGrath | 2746edd | 2002-12-30 09:13:08 +0000 | [diff] [blame] | 112 | AM_CONDITIONAL([LINUX], [test x$opsys = xlinux]) |
| 113 | AM_CONDITIONAL([X86_64], [test x$arch = xx86_64]) |
| 114 | AM_CONDITIONAL([SUNOS4], [test x$opsys = xsunos4]) |
| 115 | AM_CONDITIONAL([SVR4], [test x$opsys = xsvr4]) |
| 116 | AM_CONDITIONAL([FREEBSD], [test x$opsys = xfreebsd]) |
| 117 | |
Roland McGrath | 6d2b349 | 2002-12-30 00:51:30 +0000 | [diff] [blame] | 118 | AC_PROG_CC |
Roland McGrath | 45aeb6e | 2003-01-10 10:44:59 +0000 | [diff] [blame] | 119 | dnl That set the default CFLAGS value, which we don't want to diddle first. |
| 120 | CFLAGS="-D_GNU_SOURCE $CFLAGS" |
| 121 | |
Roland McGrath | 6d2b349 | 2002-12-30 00:51:30 +0000 | [diff] [blame] | 122 | AC_INCLUDEDIR |
| 123 | |
| 124 | if test "x$opsys" = "xsunos4" && test "x$arch" = "xsparc" |
| 125 | then |
| 126 | AC_MSG_CHECKING(for valid machine include directory) |
| 127 | if test -d "$includedir/sun4" |
| 128 | then |
| 129 | rm -f machine |
| 130 | ln -s $includedir/sun4 machine |
| 131 | AC_MSG_RESULT(yes) |
| 132 | AC_DEFINE(SUNOS4_KERNEL_ARCH_KLUDGE, 1, [ |
| 133 | Define if you are have a SPARC with SUNOS4 and your want a version |
| 134 | of strace that will work on sun4, sun4c and sun4m kernel architectures. |
| 135 | Only useful if you have a symbolic link from machine to /usr/include/sun4 |
| 136 | in the compilation directory.]) |
| 137 | else |
| 138 | AC_MSG_RESULT(no) |
| 139 | fi |
| 140 | fi |
| 141 | |
| 142 | AC_WARNFLAGS |
| 143 | if test "x$opsys" = "xsunos4" |
| 144 | then |
| 145 | if test -n "$GCC" |
| 146 | then |
| 147 | # SunOS 4.x header files don't declare int functions. |
| 148 | WARNFLAGS="$WARNFLAGS -Wno-implicit" |
| 149 | fi |
| 150 | fi |
| 151 | |
| 152 | AC_PROG_CPP |
| 153 | AC_PROG_GCC_TRADITIONAL |
| 154 | AC_PROG_INSTALL |
| 155 | AC_C_CONST |
| 156 | AC_HEADER_STDC |
| 157 | AC_HEADER_DIRENT |
| 158 | AC_HEADER_STAT |
| 159 | AC_CHECK_MEMBERS([struct stat.st_blksize, |
Roland McGrath | e07cd60 | 2003-02-26 20:34:02 +0000 | [diff] [blame] | 160 | struct stat.st_blocks, |
Roland McGrath | 6d2b349 | 2002-12-30 00:51:30 +0000 | [diff] [blame] | 161 | struct stat.st_aclcnt, |
| 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 | AC_STAT64 |
| 168 | |
| 169 | AC_TYPE_SIGNAL |
| 170 | AC_TYPE_UID_T |
| 171 | AC_TYPE_MODE_T |
| 172 | AC_TYPE_GETGROUPS |
| 173 | AC_HEADER_MAJOR |
Roland McGrath | acf06ef | 2003-01-10 19:57:34 +0000 | [diff] [blame] | 174 | AC_CHECK_TYPES([sig_atomic_t, siginfo_t],,, [#include <signal.h>]) |
Roland McGrath | e07cd60 | 2003-02-26 20:34:02 +0000 | [diff] [blame] | 175 | AC_CHECK_MEMBERS([struct sockaddr_in6.sin6_scope_id],,, |
| 176 | [#include <sys/types.h> |
| 177 | #include <sys/socket.h> |
| 178 | #include <netinet/in.h>]) |
Roland McGrath | 6d2b349 | 2002-12-30 00:51:30 +0000 | [diff] [blame] | 179 | AC_CHECK_TYPES([long long]) |
| 180 | AC_LITTLE_ENDIAN_LONG_LONG |
| 181 | AC_OFF_T_IS_LONG_LONG |
| 182 | AC_RLIM_T_IS_LONG_LONG |
| 183 | AC_CHECK_TYPES([struct opthdr],,, [#include <sys/socket.h>]) |
| 184 | AC_CHECK_TYPES([struct t_opthdr],,, [#include <sys/tiuser.h>]) |
| 185 | |
| 186 | if test x$opsys != xlinux; then |
| 187 | AC_CHECK_LIB(nsl, main) |
| 188 | fi |
| 189 | |
| 190 | AC_CHECK_FUNCS(sigaction strerror strsignal pread sys_siglist _sys_siglist getdents mctl prctl sendmsg inet_ntop if_indextoname) |
Roland McGrath | a7a0d38 | 2003-01-10 19:55:30 +0000 | [diff] [blame] | 191 | AC_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], [], []) |
Roland McGrath | 6d2b349 | 2002-12-30 00:51:30 +0000 | [diff] [blame] | 192 | AC_CHECK_HEADERS([linux/icmp.h linux/in6.h linux/netlink.h linux/if_packet.h], |
| 193 | [], [], [#include <linux/socket.h>]) |
Roland McGrath | 41074c0 | 2002-12-30 10:23:01 +0000 | [diff] [blame] | 194 | AC_CHECK_HEADERS([asm/sigcontext.h], [], [], [#include <signal.h>]) |
Roland McGrath | a7a0d38 | 2003-01-10 19:55:30 +0000 | [diff] [blame] | 195 | AC_CHECK_HEADERS([netinet/tcp.h netinet/udp.h],,, [#include <netinet/in.h>]) |
Roland McGrath | 6d2b349 | 2002-12-30 00:51:30 +0000 | [diff] [blame] | 196 | |
| 197 | AC_MP_PROCFS |
| 198 | AC_POLLABLE_PROCFS |
| 199 | |
| 200 | AC_CHECK_MEMBERS([struct msghdr.msg_control],,, [#include <sys/socket.h>]) |
| 201 | AC_STRUCT_PR_SYSCALL |
| 202 | |
Roland McGrath | a7a0d38 | 2003-01-10 19:55:30 +0000 | [diff] [blame] | 203 | AC_CHECK_MEMBERS([struct T_conn_res.QUEUE_ptr, |
| 204 | struct T_conn_res.ACCEPTOR_id],,, |
| 205 | [#include <sys/stream.h> |
| 206 | #include <sys/tihdr.h>]) |
| 207 | |
Roland McGrath | 79db8af | 2003-06-27 21:20:09 +0000 | [diff] [blame] | 208 | AC_CHECK_TYPES([struct __old_kernel_stat],,, [#include <asm/stat.h>]) |
| 209 | |
Roland McGrath | 6d2b349 | 2002-12-30 00:51:30 +0000 | [diff] [blame] | 210 | AC_CHECK_DECLS([sys_errlist]) |
| 211 | AC_CHECK_DECLS([sys_siglist, _sys_siglist],,, [#include <signal.h>]) |
| 212 | |
| 213 | AC_PATH_PROG([PERL], [perl]) |
| 214 | |
Roland McGrath | 80964aa | 2002-12-30 01:11:08 +0000 | [diff] [blame] | 215 | AC_CONFIG_FILES([Makefile]) |
Roland McGrath | 6d2b349 | 2002-12-30 00:51:30 +0000 | [diff] [blame] | 216 | AC_OUTPUT |