]> The Tcpdump Group git mirrors - tcpdump/blob - configure.in
Move pcap function checks to configure.in.
[tcpdump] / configure.in
1 dnl Copyright (c) 1994, 1995, 1996, 1997
2 dnl The Regents of the University of California. All rights reserved.
3 dnl
4 dnl Process this file with autoconf to produce a configure script.
5 dnl
6
7 #
8 # See
9 #
10 # http://ftp.gnu.org/gnu/config/README
11 #
12 # for the URLs to use to fetch new versions of config.guess and
13 # config.sub.
14 #
15
16 AC_PREREQ(2.61)
17 AC_INIT(tcpdump.c)
18
19 AC_CANONICAL_HOST
20
21 AC_LBL_C_INIT_BEFORE_CC(V_INCLS)
22 AC_PROG_CC
23 AC_LBL_C_INIT(V_CCOPT, V_INCLS)
24 AC_LBL_C_INLINE
25 AC_C___ATTRIBUTE__
26 if test "$ac_cv___attribute__" = "yes"; then
27 AC_C___ATTRIBUTE___UNUSED
28 AC_C___ATTRIBUTE___NORETURN_FUNCTION_POINTER
29 AC_C___ATTRIBUTE___FORMAT
30 if test "$ac_cv___attribute___format" = "yes"; then
31 AC_C___ATTRIBUTE___FORMAT_FUNCTION_POINTER
32 fi
33 fi
34
35 AC_CHECK_HEADERS(fcntl.h rpc/rpc.h rpc/rpcent.h netdnet/dnetdb.h)
36 AC_CHECK_HEADERS(net/pfvar.h, , , [#include <sys/types.h>
37 #include <sys/socket.h>
38 #include <net/if.h>])
39 if test "$ac_cv_header_net_pfvar_h" = yes; then
40 LOCALSRC="print-pflog.c $LOCALSRC"
41 fi
42 AC_CHECK_HEADERS(netinet/if_ether.h, , , [#include <sys/types.h>
43 #include <sys/socket.h>])
44 if test "$ac_cv_header_netinet_if_ether_h" != yes; then
45 #
46 # The simple test didn't work.
47 # Do we need to include <net/if.h> first?
48 # Unset ac_cv_header_netinet_if_ether_h so we don't
49 # treat the previous failure as a cached value and
50 # suppress the next test.
51 #
52 AC_MSG_NOTICE([Rechecking with some additional includes])
53 unset ac_cv_header_netinet_if_ether_h
54 AC_CHECK_HEADERS(netinet/if_ether.h, , , [#include <sys/types.h>
55 #include <sys/socket.h>
56 #include <netinet/in.h>
57 struct mbuf;
58 struct rtentry;
59 #include <net/if.h>])
60 fi
61
62 AC_HEADER_TIME
63
64 case "$host_os" in
65
66 darwin*)
67 AC_ARG_ENABLE(universal,
68 AC_HELP_STRING([--disable-universal],[don't build universal on OS X]))
69 if test "$enable_universal" != "no"; then
70 case "$host_os" in
71
72 darwin9.*)
73 #
74 # Leopard. Build for x86 and 32-bit PowerPC, with
75 # x86 first. (That's what Apple does.)
76 #
77 V_CCOPT="$V_CCOPT -arch i386 -arch ppc"
78 LDFLAGS="$LDFLAGS -arch i386 -arch ppc"
79 ;;
80
81 darwin10.*)
82 #
83 # Snow Leopard. Build for x86-64 and x86, with
84 # x86-64 first. (That's what Apple does.)
85 #
86 V_CCOPT="$V_CCOPT -arch x86_64 -arch i386"
87 LDFLAGS="$LDFLAGS -arch x86_64 -arch i386"
88 ;;
89 esac
90 fi
91 ;;
92 esac
93
94
95 AC_ARG_WITH(smi,
96 [ --with-smi link with libsmi (allows to load MIBs on the fly to decode SNMP packets. [default=yes]
97 --without-smi don't link with libsmi],,
98 with_smi=yes)
99
100 if test "x$with_smi" != "xno" ; then
101 AC_CHECK_HEADER(smi.h,
102 [
103 #
104 # OK, we found smi.h. Do we have libsmi with smiInit?
105 #
106 AC_CHECK_LIB(smi, smiInit,
107 [
108 #
109 # OK, we have libsmi with smiInit. Can we use it?
110 #
111 AC_MSG_CHECKING([whether to enable libsmi])
112 savedlibs="$LIBS"
113 LIBS="-lsmi $LIBS"
114 AC_TRY_RUN(
115 [
116 /* libsmi available check */
117 #include <smi.h>
118 main()
119 {
120 int current, revision, age, n;
121 const int required = 2;
122 if (smiInit(""))
123 exit(1);
124 if (strcmp(SMI_LIBRARY_VERSION, smi_library_version))
125 exit(2);
126 n = sscanf(smi_library_version, "%d:%d:%d", &current, &revision, &age);
127 if (n != 3)
128 exit(3);
129 if (required < current - age || required > current)
130 exit(4);
131 exit(0);
132 }
133 ],
134 [
135 AC_MSG_RESULT(yes)
136 AC_DEFINE(USE_LIBSMI, 1,
137 [Define if you enable support for libsmi])
138 ],
139 [
140 dnl autoconf documentation says that
141 dnl $? contains the exit value.
142 dnl reality is that it does not.
143 dnl We leave this in just in case
144 dnl autoconf ever comes back to
145 dnl match the documentation.
146 case $? in
147 1) AC_MSG_RESULT(no - smiInit failed) ;;
148 2) AC_MSG_RESULT(no - header/library version mismatch) ;;
149 3) AC_MSG_RESULT(no - can't determine library version) ;;
150 4) AC_MSG_RESULT(no - too old) ;;
151 *) AC_MSG_RESULT(no) ;;
152 esac
153 LIBS="$savedlibs"
154 ],
155 [
156 AC_MSG_RESULT(not when cross-compiling)
157 LIBS="$savedlibs"
158 ]
159 )
160 ])
161 ])
162 fi
163
164 AC_MSG_CHECKING([whether to enable the possibly-buggy SMB printer])
165 AC_ARG_ENABLE(smb,
166 [ --enable-smb enable possibly-buggy SMB printer [default=yes]
167 --disable-smb disable possibly-buggy SMB printer],,
168 enableval=yes)
169 case "$enableval" in
170 yes) AC_MSG_RESULT(yes)
171 AC_WARN([The SMB printer may have exploitable buffer overflows!!!])
172 AC_DEFINE(TCPDUMP_DO_SMB, 1,
173 [define if you want to build the possibly-buggy SMB printer])
174 LOCALSRC="print-smb.c smbutil.c $LOCALSRC"
175 ;;
176 *) AC_MSG_RESULT(no)
177 ;;
178 esac
179
180 AC_ARG_WITH(user, [ --with-user=USERNAME drop privileges by default to USERNAME])
181 AC_MSG_CHECKING([whether to drop root privileges by default])
182 if test ! -z "$with_user" ; then
183 AC_DEFINE_UNQUOTED(WITH_USER, "$withval",
184 [define if should drop privileges by default])
185 AC_MSG_RESULT(to \"$withval\")
186 else
187 AC_MSG_RESULT(no)
188 fi
189
190 AC_ARG_WITH(chroot, [ --with-chroot=DIRECTORY when dropping privileges, chroot to DIRECTORY])
191 AC_MSG_CHECKING([whether to chroot])
192 if test ! -z "$with_chroot" && test "$with_chroot" != "no" ; then
193 AC_DEFINE_UNQUOTED(WITH_CHROOT, "$withval",
194 [define if should chroot when dropping privileges])
195 AC_MSG_RESULT(to \"$withval\")
196 else
197 AC_MSG_RESULT(no)
198 fi
199
200 AC_ARG_WITH(sandbox-capsicum,
201 AS_HELP_STRING([--with-sandbox-capsicum],
202 [use Capsicum security functions @<:@default=yes, if available@:>@]))
203 #
204 # Check whether various functions are available. If any are, set
205 # ac_lbl_capsicum_function_seen to yes; if any are not, set
206 # ac_lbl_capsicum_function_not_seen to yes.
207 #
208 # We don't check cap_rights_init(), as it's a macro, wrapping another
209 # function, in at least some versions of FreeBSD, and AC_CHECK_FUNCS()
210 # doesn't handle that.
211 #
212 # All of the ones we check for must be available in order to enable
213 # capsicum sandboxing.
214 #
215 # XXX - do we need to check for all of them, or are there some that, if
216 # present, imply others are present?
217 #
218 if test ! -z "$with_sandbox-capsicum" && test "$with_sandbox-capsicum" != "no" ; then
219 AC_CHECK_FUNCS(cap_enter cap_rights_limit cap_ioctls_limit openat,
220 ac_lbl_capsicum_function_seen=yes,
221 ac_lbl_capsicum_function_not_seen=yes)
222 fi
223 AC_MSG_CHECKING([whether to sandbox using capsicum])
224 if test "x$ac_lbl_capsicum_function_seen" = "xyes" -a "x$ac_lbl_capsicum_function_not_seen" != "xyes"; then
225 AC_DEFINE(HAVE_CAPSICUM, 1, [capsicum support available])
226 AC_MSG_RESULT(yes)
227 else
228 AC_MSG_RESULT(no)
229 fi
230
231 #
232 # We must check this before checking whether to enable IPv6, because,
233 # on some platforms (such as SunOS 5.x), the test program requires
234 # the extra networking libraries.
235 #
236 AC_LBL_LIBRARY_NET
237
238 AC_MSG_CHECKING([whether to enable ipv6])
239 AC_ARG_ENABLE(ipv6,
240 [ --enable-ipv6 enable ipv6 (with ipv4) support
241 --disable-ipv6 disable ipv6 support],
242 [ case "$enableval" in
243 yes) AC_MSG_RESULT(yes)
244 LOCALSRC="print-ip6opts.c print-mobility.c print-ripng.c print-icmp6.c print-frag6.c print-rt6.c print-ospf6.c print-dhcp6.c print-babel.c $LOCALSRC"
245 AC_DEFINE(INET6, 1, [Define if you enable IPv6 support])
246 ipv6=yes
247 ;;
248 *)
249 AC_MSG_RESULT(no)
250 ipv6=no
251 ;;
252 esac ],
253
254 AC_COMPILE_IFELSE(
255 [
256 AC_LANG_SOURCE(
257 [[/* AF_INET6 available check */
258 #include <sys/types.h>
259 #include <sys/socket.h>
260 #include <netinet/in.h>
261 #ifdef AF_INET6
262 void
263 foo(struct in6_addr *addr)
264 {
265 memset(addr, 0, sizeof (struct in6_addr));
266 }
267 #else
268 #error "AF_INET6 not defined"
269 #endif
270 ]])
271 ],
272 [ AC_MSG_RESULT(yes)
273 LOCALSRC="print-ip6opts.c print-mobility.c print-ripng.c print-icmp6.c print-frag6.c print-rt6.c print-ospf6.c print-dhcp6.c print-babel.c $LOCALSRC"
274 AC_DEFINE(INET6, 1, [Define if you enable IPv6 support])
275 ipv6=yes],
276 [ AC_MSG_RESULT(no)
277 ipv6=no],
278 [ AC_MSG_RESULT(no)
279 ipv6=no]
280 ))
281
282 ipv6type=unknown
283 ipv6lib=none
284 ipv6trylibc=no
285
286 if test "$ipv6" = "yes"; then
287 AC_MSG_CHECKING([ipv6 stack type])
288 for i in inria kame linux-glibc linux-libinet6 toshiba v6d zeta; do
289 case $i in
290 inria)
291 dnl http://www.kame.net/
292 AC_EGREP_CPP(yes,
293 [#include <netinet/in.h>
294 #ifdef IPV6_INRIA_VERSION
295 yes
296 #endif],
297 [ipv6type=$i;
298 CFLAGS="-DINET6 $CFLAGS"])
299 ;;
300 kame)
301 dnl http://www.kame.net/
302 AC_EGREP_CPP(yes,
303 [#include <netinet/in.h>
304 #ifdef __KAME__
305 yes
306 #endif],
307 [ipv6type=$i;
308 ipv6lib=inet6;
309 ipv6libdir=/usr/local/v6/lib;
310 ipv6trylibc=yes;
311 CFLAGS="-DINET6 $CFLAGS"])
312 ;;
313 linux-glibc)
314 dnl http://www.v6.linux.or.jp/
315 AC_EGREP_CPP(yes,
316 [#include <features.h>
317 #if defined(__GLIBC__) && __GLIBC__ >= 2 && __GLIBC_MINOR__ >= 1
318 yes
319 #endif],
320 [ipv6type=$i;
321 CFLAGS="-DINET6 $CFLAGS"])
322 ;;
323 linux-libinet6)
324 dnl http://www.v6.linux.or.jp/
325 dnl
326 dnl This also matches Solaris 8 and Tru64 UNIX 5.1,
327 dnl and possibly other versions of those OSes
328 dnl
329 if test -d /usr/inet6 -o -f /usr/include/netinet/ip6.h; then
330 ipv6type=$i
331 ipv6lib=inet6
332 ipv6libdir=/usr/inet6/lib
333 ipv6trylibc=yes;
334 CFLAGS="-DINET6 -I/usr/inet6/include $CFLAGS"
335 fi
336 ;;
337 toshiba)
338 AC_EGREP_CPP(yes,
339 [#include <sys/param.h>
340 #ifdef _TOSHIBA_INET6
341 yes
342 #endif],
343 [ipv6type=$i;
344 ipv6lib=inet6;
345 ipv6libdir=/usr/local/v6/lib;
346 CFLAGS="-DINET6 $CFLAGS"])
347 ;;
348 v6d)
349 AC_EGREP_CPP(yes,
350 [#include </usr/local/v6/include/sys/v6config.h>
351 #ifdef __V6D__
352 yes
353 #endif],
354 [ipv6type=$i;
355 ipv6lib=v6;
356 ipv6libdir=/usr/local/v6/lib;
357 CFLAGS="-I/usr/local/v6/include $CFLAGS"])
358 ;;
359 zeta)
360 AC_EGREP_CPP(yes,
361 [#include <sys/param.h>
362 #ifdef _ZETA_MINAMI_INET6
363 yes
364 #endif],
365 [ipv6type=$i;
366 ipv6lib=inet6;
367 ipv6libdir=/usr/local/v6/lib;
368 CFLAGS="-DINET6 $CFLAGS"])
369 ;;
370 esac
371 if test "$ipv6type" != "unknown"; then
372 break
373 fi
374 done
375 AC_MSG_RESULT($ipv6type)
376 fi
377
378 if test "$ipv6" = "yes" -a "$ipv6lib" != "none"; then
379 if test -d $ipv6libdir -a -f $ipv6libdir/lib$ipv6lib.a; then
380 LIBS="-L$ipv6libdir -l$ipv6lib $LIBS"
381 echo "You have $ipv6lib library, using it"
382 else
383 if test "$ipv6trylibc" = "yes"; then
384 echo "You do not have $ipv6lib library, using libc"
385 else
386 echo 'Fatal: no $ipv6lib library found. cannot continue.'
387 echo "You need to fetch lib$ipv6lib.a from appropriate"
388 echo 'ipv6 kit and compile beforehand.'
389 exit 1
390 fi
391 fi
392 fi
393
394
395 if test "$ipv6" = "yes"; then
396 #
397 # XXX - on Tru64 UNIX 5.1, there is no "getaddrinfo()"
398 # function in libc; there are "ngetaddrinfo()" and
399 # "ogetaddrinfo()" functions, and <netdb.h> #defines
400 # "getaddrinfo" to be either "ngetaddrinfo" or
401 # "ogetaddrinfo", depending on whether _SOCKADDR_LEN
402 # or _XOPEN_SOURCE_EXTENDED are defined or not.
403 #
404 # So this test doesn't work on Tru64 5.1, and possibly
405 # on other 5.x releases. This causes the configure
406 # script to become confused, and results in libpcap
407 # being unbuildable.
408 #
409 AC_SEARCH_LIBS(getaddrinfo, socket, [dnl
410 AC_MSG_CHECKING(getaddrinfo bug)
411 AC_CACHE_VAL(td_cv_buggygetaddrinfo, [AC_TRY_RUN([
412 #include <sys/types.h>
413 #include <netdb.h>
414 #include <string.h>
415 #include <sys/socket.h>
416 #include <netinet/in.h>
417
418 main()
419 {
420 int passive, gaierr, inet4 = 0, inet6 = 0;
421 struct addrinfo hints, *ai, *aitop;
422 char straddr[INET6_ADDRSTRLEN], strport[16];
423
424 for (passive = 0; passive <= 1; passive++) {
425 memset(&hints, 0, sizeof(hints));
426 hints.ai_family = AF_UNSPEC;
427 hints.ai_flags = passive ? AI_PASSIVE : 0;
428 hints.ai_socktype = SOCK_STREAM;
429 hints.ai_protocol = IPPROTO_TCP;
430 if ((gaierr = getaddrinfo(NULL, "54321", &hints, &aitop)) != 0) {
431 (void)gai_strerror(gaierr);
432 goto bad;
433 }
434 for (ai = aitop; ai; ai = ai->ai_next) {
435 if (ai->ai_addr == NULL ||
436 ai->ai_addrlen == 0 ||
437 getnameinfo(ai->ai_addr, ai->ai_addrlen,
438 straddr, sizeof(straddr), strport, sizeof(strport),
439 NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
440 goto bad;
441 }
442 switch (ai->ai_family) {
443 case AF_INET:
444 if (strcmp(strport, "54321") != 0) {
445 goto bad;
446 }
447 if (passive) {
448 if (strcmp(straddr, "0.0.0.0") != 0) {
449 goto bad;
450 }
451 } else {
452 if (strcmp(straddr, "127.0.0.1") != 0) {
453 goto bad;
454 }
455 }
456 inet4++;
457 break;
458 case AF_INET6:
459 if (strcmp(strport, "54321") != 0) {
460 goto bad;
461 }
462 if (passive) {
463 if (strcmp(straddr, "::") != 0) {
464 goto bad;
465 }
466 } else {
467 if (strcmp(straddr, "::1") != 0) {
468 goto bad;
469 }
470 }
471 inet6++;
472 break;
473 case AF_UNSPEC:
474 goto bad;
475 break;
476 #ifdef AF_UNIX
477 case AF_UNIX:
478 #else
479 #ifdef AF_LOCAL
480 case AF_LOCAL:
481 #endif
482 #endif
483 default:
484 /* another family support? */
485 break;
486 }
487 }
488 }
489
490 /* supported family should be 2, unsupported family should be 0 */
491 if (!(inet4 == 0 || inet4 == 2))
492 goto bad;
493 if (!(inet6 == 0 || inet6 == 2))
494 goto bad;
495
496 if (aitop)
497 freeaddrinfo(aitop);
498 exit(0);
499
500 bad:
501 if (aitop)
502 freeaddrinfo(aitop);
503 exit(1);
504 }
505 ],
506 td_cv_buggygetaddrinfo=no,
507 td_cv_buggygetaddrinfo=yes,
508 td_cv_buggygetaddrinfo=unknown)])
509 if test "$td_cv_buggygetaddrinfo" = no; then
510 AC_MSG_RESULT(good)
511 elif test "$td_cv_buggygetaddrinfo" = unknown; then
512 AC_MSG_RESULT([unknown (cross-compiling)])
513 else
514 AC_MSG_RESULT(buggy)
515 fi
516
517 if test "$td_cv_buggygetaddrinfo" = "yes"; then
518 #
519 # XXX - it doesn't appear that "ipv6type" can ever be
520 # set to "linux". Should this be testing for
521 # "linux-glibc", or for that *or* "linux-libinet6"?
522 # If the latter, note that "linux-libinet6" is also
523 # the type given to some non-Linux OSes.
524 #
525 if test "$ipv6type" != "linux"; then
526 echo 'Fatal: You must get working getaddrinfo() function.'
527 echo ' or you can specify "--disable-ipv6"'.
528 exit 1
529 else
530 echo 'Warning: getaddrinfo() implementation on your system seems be buggy.'
531 echo ' Better upgrade your system library to newest version'
532 echo ' of GNU C library (aka glibc).'
533 fi
534 fi
535 ])
536 AC_REPLACE_FUNCS(getnameinfo)
537 fi
538
539 AC_CACHE_CHECK([for dnet_htoa declaration in netdnet/dnetdb.h],
540 [td_cv_decl_netdnet_dnetdb_h_dnet_htoa],
541 [AC_EGREP_HEADER(dnet_htoa, netdnet/dnetdb.h,
542 td_cv_decl_netdnet_dnetdb_h_dnet_htoa=yes,
543 td_cv_decl_netdnet_dnetdb_h_dnet_htoa=no)])
544 if test "$td_cv_decl_netdnet_dnetdb_h_dnet_htoa" = yes; then
545 AC_DEFINE(HAVE_NETDNET_DNETDB_H_DNET_HTOA, 1,
546 [define if you have a dnet_htoa declaration in <netdnet/dnetdb.h>])
547 fi
548
549 dnl
550 dnl Checks for addrinfo structure
551 AC_STRUCT_ADDRINFO(ac_cv_addrinfo)
552 if test "$ac_cv_addrinfo" = no; then
553 missing_includes=yes
554 fi
555
556 dnl
557 dnl Checks for NI_MAXSERV
558 AC_NI_MAXSERV(ac_cv_maxserv)
559 if test "$ac_cv_maxserv" = no; then
560 missing_includes=yes
561 fi
562
563 dnl
564 dnl Checks for NI_NAMEREQD
565 AC_NI_NAMEREQD(ac_cv_namereqd)
566 if test "$ac_cv_namereqd" = no; then
567 missing_includes=yes
568 fi
569
570 AC_REPLACE_FUNCS(vfprintf strcasecmp strlcat strlcpy strdup strsep getopt_long)
571 AC_CHECK_FUNCS(fork vfork strftime)
572 AC_CHECK_FUNCS(setlinebuf alarm)
573
574 needsnprintf=no
575 AC_CHECK_FUNCS(vsnprintf snprintf,,
576 [needsnprintf=yes])
577 if test $needsnprintf = yes; then
578 AC_LIBOBJ(snprintf)
579 fi
580
581 AC_LBL_TYPE_SIGNAL
582
583 AC_SEARCH_LIBS(dnet_htoa, dnet,
584 AC_DEFINE(HAVE_DNET_HTOA, 1, [define if you have the dnet_htoa function]))
585
586 AC_CHECK_LIB(rpc, main) dnl It's unclear why we might need -lrpc
587
588 dnl Some platforms may need -lnsl for getrpcbynumber.
589 AC_SEARCH_LIBS(getrpcbynumber, nsl,
590 AC_DEFINE(HAVE_GETRPCBYNUMBER, 1, [define if you have getrpcbynumber()]))
591
592 dnl AC_CHECK_LIB(z, uncompress)
593 dnl AC_CHECK_HEADERS(zlib.h)
594
595 AC_LBL_LIBPCAP(V_PCAPDEP, V_INCLS)
596
597 #
598 # Check for these after AC_LBL_LIBPCAP, so we link with the appropriate
599 # libraries (e.g., "-lsocket -lnsl" on Solaris).
600 #
601 # We don't use AC_REPLACE_FUNCS because that uses AC_CHECK_FUNCS which
602 # use AC_CHECK_FUNC which doesn't let us specify the right #includes
603 # to make this work on BSD/OS 4.x. BSD/OS 4.x ships with the BIND8
604 # resolver, and the way it defines inet_{ntop,pton} is rather strange;
605 # it does not ship with a libc symbol "inet_ntop()", it ships with
606 # "_inet_ntop()", and has a #define macro in one of the system headers
607 # to rename it.
608 #
609 dnl AC_TRY_COMPILE(inet_ntop inet_pton inet_aton)
610 AC_MSG_CHECKING(for inet_ntop)
611 AC_TRY_LINK([#include <sys/types.h>
612 #include <sys/socket.h>
613 #include <netinet/in.h>
614 #include <arpa/inet.h>], [char src[4], dst[128];
615 inet_ntop(AF_INET, src, dst, sizeof(dst));],
616 [AC_MSG_RESULT(yes)], [AC_MSG_RESULT(no)
617 AC_LIBOBJ(inet_ntop)])
618 AC_MSG_CHECKING(for inet_pton)
619 AC_TRY_LINK([#include <sys/types.h>
620 #include <sys/socket.h>
621 #include <netinet/in.h>
622 #include <arpa/inet.h>], [char src[128], dst[4];
623 inet_pton(AF_INET, src, dst);],
624 [AC_MSG_RESULT(yes)], [AC_MSG_RESULT(no)
625 AC_LIBOBJ(inet_pton)])
626 AC_MSG_CHECKING(for inet_aton)
627 AC_TRY_LINK([#include <sys/types.h>
628 #include <netinet/in.h>
629 #include <arpa/inet.h>], [char src[128];
630 struct in_addr dst;
631 inet_aton(src, &dst);],
632 [AC_MSG_RESULT(yes)], [AC_MSG_RESULT(no)
633 AC_LIBOBJ(inet_aton)])
634
635 #
636 # Check for these after AC_LBL_LIBPCAP, for the same reason.
637 #
638 # You are in a twisty little maze of UN*Xes, all different.
639 # Some might not have ether_ntohost().
640 # Some might have it, but not declare it in any header file.
641 # Some might have it, but declare it in <netinet/if_ether.h>.
642 # Some might have it, but declare it in <netinet/ether.h>
643 # (And some might have it but document it as something declared in
644 # <netinet/ethernet.h>, although <netinet/if_ether.h> appears to work.)
645 #
646 # Before you is a C compiler.
647 #
648 AC_CHECK_FUNCS(ether_ntohost, [
649 AC_CACHE_CHECK(for buggy ether_ntohost, ac_cv_buggy_ether_ntohost, [
650 AC_TRY_RUN([
651 #include <netdb.h>
652 #include <sys/types.h>
653 #include <sys/param.h>
654 #include <sys/socket.h>
655
656 int
657 main(int argc, char **argv)
658 {
659 u_char ea[6] = { 0xff, 0xff, 0xff, 0xff, 0xff };
660 char name[MAXHOSTNAMELEN];
661
662 ether_ntohost(name, (struct ether_addr *)ea);
663 exit(0);
664 }
665 ], [ac_cv_buggy_ether_ntohost=no],
666 [ac_cv_buggy_ether_ntohost=yes],
667 [ac_cv_buggy_ether_ntohost="not while cross-compiling"])])
668 if test "$ac_cv_buggy_ether_ntohost" = "no"; then
669 AC_DEFINE(USE_ETHER_NTOHOST, 1,
670 [define if you have ether_ntohost() and it works])
671 fi
672 ])
673 if test "$ac_cv_func_ether_ntohost" = yes -a \
674 "$ac_cv_buggy_ether_ntohost" = "no"; then
675 #
676 # OK, we have ether_ntohost(). Do we have <netinet/if_ether.h>?
677 #
678 if test "$ac_cv_header_netinet_if_ether_h" = yes; then
679 #
680 # Yes. Does it declare ether_ntohost()?
681 #
682 AC_CHECK_DECL(ether_ntohost,
683 [
684 AC_DEFINE(NETINET_IF_ETHER_H_DECLARES_ETHER_NTOHOST,,
685 [Define to 1 if netinet/if_ether.h declares `ether_ntohost'])
686 ],,
687 [
688 #include <sys/types.h>
689 #include <sys/socket.h>
690 #include <netinet/in.h>
691 #include <arpa/inet.h>
692 struct mbuf;
693 struct rtentry;
694 #include <net/if.h>
695 #include <netinet/if_ether.h>
696 ])
697 fi
698 #
699 # Did that succeed?
700 #
701 if test "$ac_cv_have_decl_ether_ntohost" != yes; then
702 #
703 # No, how about <netinet/ether.h>, as on Linux?
704 #
705 AC_CHECK_HEADERS(netinet/ether.h)
706 if test "$ac_cv_header_netinet_ether_h" = yes; then
707 #
708 # We have it - does it declare ether_ntohost()?
709 # Unset ac_cv_have_decl_ether_ntohost so we don't
710 # treat the previous failure as a cached value and
711 # suppress the next test.
712 #
713 unset ac_cv_have_decl_ether_ntohost
714 AC_CHECK_DECL(ether_ntohost,
715 [
716 AC_DEFINE(NETINET_ETHER_H_DECLARES_ETHER_NTOHOST,,
717 [Define to 1 if netinet/ether.h declares `ether_ntohost'])
718 ],,
719 [
720 #include <netinet/ether.h>
721 ])
722 fi
723 fi
724 #
725 # Is ether_ntohost() declared?
726 #
727 if test "$ac_cv_have_decl_ether_ntohost" != yes; then
728 #
729 # No, we'll have to declare it ourselves.
730 # Do we have "struct ether_addr"?
731 #
732 AC_CHECK_TYPES(struct ether_addr,,,
733 [
734 #include <sys/types.h>
735 #include <sys/socket.h>
736 #include <netinet/in.h>
737 #include <arpa/inet.h>
738 struct mbuf;
739 struct rtentry;
740 #include <net/if.h>
741 #include <netinet/if_ether.h>
742 ])
743 AC_DEFINE(HAVE_DECL_ETHER_NTOHOST, 0,
744 [Define to 1 if you have the declaration of `ether_ntohost', and to 0 if you
745 don't.])
746 else
747 AC_DEFINE(HAVE_DECL_ETHER_NTOHOST, 1,
748 [Define to 1 if you have the declaration of `ether_ntohost', and to 0 if you
749 don't.])
750 fi
751 fi
752
753 # libdlpi is needed for Solaris 11 and later.
754 AC_CHECK_LIB(dlpi, dlpi_walk, LIBS="$LIBS -ldlpi" LDFLAGS="-L/lib $LDFLAGS", ,-L/lib)
755
756 dnl portability macros for getaddrinfo/getnameinfo
757 dnl
758 dnl Check for sa_len
759 AC_CHECK_SA_LEN(ac_cv_sockaddr_has_sa_len)
760 if test "$ac_cv_sockaddr_has_sa_len" = no; then
761 missing_includes=yes
762 fi
763
764 dnl
765 dnl Check for "pcap_list_datalinks()", "pcap_set_datalink()",
766 dnl and "pcap_datalink_name_to_val()", and use substitute versions
767 dnl if they're not present.
768 dnl
769 AC_CHECK_FUNC(pcap_list_datalinks,
770 [
771 AC_DEFINE(HAVE_PCAP_LIST_DATALINKS, 1,
772 [define if libpcap has pcap_list_datalinks()])
773 AC_CHECK_FUNCS(pcap_free_datalinks)
774 ],
775 [
776 AC_LIBOBJ(datalinks)
777 ])
778 AC_CHECK_FUNCS(pcap_set_datalink)
779 AC_CHECK_FUNC(pcap_datalink_name_to_val,
780 [
781 AC_DEFINE(HAVE_PCAP_DATALINK_NAME_TO_VAL, 1,
782 [define if libpcap has pcap_datalink_name_to_val()])
783 AC_CHECK_FUNC(pcap_datalink_val_to_description,
784 AC_DEFINE(HAVE_PCAP_DATALINK_VAL_TO_DESCRIPTION, 1,
785 [define if libpcap has pcap_datalink_val_to_description()]),
786 [
787 AC_LIBOBJ(dlnames)
788 ])
789 ],
790 [
791 AC_LIBOBJ(dlnames)
792 ])
793
794 dnl
795 dnl Check for "pcap_breakloop()"; you can't substitute for it if
796 dnl it's absent (it has hooks into the live capture routines),
797 dnl so just define the HAVE_ value if it's there.
798 dnl
799 AC_CHECK_FUNCS(pcap_breakloop)
800
801 dnl
802 dnl Check for "pcap_dump_ftell()" and use a substitute version
803 dnl if it's not present.
804 dnl
805 AC_CHECK_FUNC(pcap_dump_ftell,
806 AC_DEFINE(HAVE_PCAP_DUMP_FTELL, 1,
807 [define if libpcap has pcap_dump_ftell()]),
808 [
809 AC_LIBOBJ(pcap_dump_ftell)
810 ])
811
812 #
813 # Do we have the new open API? Check for pcap_create, and assume that,
814 # if we do, we also have pcap_activate() and the other new routines
815 # introduced in libpcap 1.0.0.
816 #
817 AC_CHECK_FUNCS(pcap_create)
818 if test $ac_cv_func_pcap_create = "yes" ; then
819 #
820 # OK, do we have pcap_set_tstamp_type? If so, assume we have
821 # pcap_list_tstamp_types and pcap_free_tstamp_types as well.
822 #
823 AC_CHECK_FUNCS(pcap_set_tstamp_type)
824 #
825 # And do we have pcap_set_tstamp_precision? If so, we assume
826 # we also have pcap_open_offline_with_tstamp_precision.
827 #
828 AC_CHECK_FUNCS(pcap_set_tstamp_precision)
829 fi
830
831 AC_CHECK_FUNCS(pcap_findalldevs pcap_dump_flush pcap_lib_version pcap_setdirection)
832 if test $ac_cv_func_pcap_findalldevs = "yes" ; then
833 dnl Check for Mac OS X, which may ship pcap.h from 0.6 but libpcap may
834 dnl be 0.8; this means that lib has pcap_findalldevs but header doesn't
835 dnl have pcap_if_t.
836 savedcppflags="$CPPFLAGS"
837 CPPFLAGS="$CPPFLAGS $V_INCLS"
838 AC_CHECK_TYPES(pcap_if_t, , , [#include <pcap.h>])
839 CPPFLAGS="$savedcppflags"
840 fi
841
842 if test $ac_cv_func_pcap_lib_version = "no" ; then
843 AC_MSG_CHECKING(whether pcap_version is defined by libpcap)
844 AC_TRY_LINK([],
845 [
846 extern char pcap_version[];
847
848 return (int)pcap_version;
849 ],
850 ac_lbl_cv_pcap_version_defined=yes,
851 ac_lbl_cv_pcap_version_defined=no)
852 if test "$ac_lbl_cv_pcap_version_defined" = yes ; then
853 AC_MSG_RESULT(yes)
854 AC_DEFINE(HAVE_PCAP_VERSION, 1, [define if libpcap has pcap_version])
855 else
856 AC_MSG_RESULT(no)
857 fi
858 fi
859 AC_MSG_CHECKING(whether pcap_debug is defined by libpcap)
860 AC_TRY_LINK([],
861 [
862 extern int pcap_debug;
863
864 return pcap_debug;
865 ],
866 ac_lbl_cv_pcap_debug_defined=yes,
867 ac_lbl_cv_pcap_debug_defined=no)
868 if test "$ac_lbl_cv_pcap_debug_defined" = yes ; then
869 AC_MSG_RESULT(yes)
870 AC_DEFINE(HAVE_PCAP_DEBUG, 1, [define if libpcap has pcap_debug])
871 else
872 AC_MSG_RESULT(no)
873 #
874 # OK, what about "yydebug"?
875 #
876 AC_MSG_CHECKING(whether yydebug is defined by libpcap)
877 AC_TRY_LINK([],
878 [
879 extern int yydebug;
880
881 return yydebug;
882 ],
883 ac_lbl_cv_yydebug_defined=yes,
884 ac_lbl_cv_yydebug_defined=no)
885 if test "$ac_lbl_cv_yydebug_defined" = yes ; then
886 AC_MSG_RESULT(yes)
887 AC_DEFINE(HAVE_YYDEBUG, 1, [define if libpcap has yydebug])
888 else
889 AC_MSG_RESULT(no)
890 fi
891 fi
892 AC_REPLACE_FUNCS(bpf_dump) dnl moved to libpcap in 0.6
893
894 V_GROUP=0
895 if test -f /etc/group -a ! -z "`grep '^wheel:' /etc/group`" ; then
896 V_GROUP=wheel
897 fi
898 #
899 # Assume V7/BSD convention for man pages (file formats in section 5,
900 # miscellaneous info in section 7).
901 #
902 MAN_FILE_FORMATS=5
903 MAN_MISC_INFO=7
904 case "$host_os" in
905
906 aix*)
907 dnl Workaround to enable certain features
908 AC_DEFINE(_SUN,1,[define on AIX to get certain functions])
909 ;;
910
911 hpux*)
912 #
913 # Use System V conventions for man pages.
914 #
915 MAN_FILE_FORMATS=4
916 MAN_MISC_INFO=5
917 ;;
918
919 irix*)
920 V_GROUP=sys
921
922 #
923 # Use System V conventions for man pages.
924 #
925 MAN_FILE_FORMATS=4
926 MAN_MISC_INFO=5
927 ;;
928
929 osf*)
930 V_GROUP=system
931
932 #
933 # Use System V conventions for man pages.
934 #
935 MAN_FILE_FORMATS=4
936 MAN_MISC_INFO=5
937 ;;
938
939 solaris*)
940 V_GROUP=sys
941
942 #
943 # Use System V conventions for man pages.
944 #
945 MAN_FILE_FORMATS=4
946 MAN_MISC_INFO=5
947 ;;
948 esac
949
950 if test -f /dev/bpf0 ; then
951 V_GROUP=bpf
952 fi
953
954 #
955 # Make sure we have definitions for all the C99 specified-width types
956 # (regardless of whether the environment is a C99 environment or not).
957 #
958 AC_TYPE_INT8_T
959 AC_TYPE_INT16_T
960 AC_TYPE_INT32_T
961 AC_TYPE_INT64_T
962 AC_TYPE_UINT8_T
963 AC_TYPE_UINT16_T
964 AC_TYPE_UINT32_T
965 AC_TYPE_UINT64_T
966
967 #
968 # Define the old BSD specified-width types in terms of the C99 types;
969 # we may need them with libpcap include files.
970 #
971 AC_CHECK_TYPE([u_int8_t], ,
972 [AC_DEFINE([u_int8_t], [uint8_t],
973 [Define to `uint8_t' if u_int8_t not defined.])],
974 [AC_INCLUDES_DEFAULT
975 #include <sys/types.h>
976 ])
977 AC_CHECK_TYPE([u_int16_t], ,
978 [AC_DEFINE([u_int16_t], [uint16_t],
979 [Define to `uint16_t' if u_int16_t not defined.])],
980 [AC_INCLUDES_DEFAULT
981 #include <sys/types.h>
982 ])
983 AC_CHECK_TYPE([u_int32_t], ,
984 [AC_DEFINE([u_int32_t], [uint32_t],
985 [Define to `uint32_t' if u_int32_t not defined.])],
986 [AC_INCLUDES_DEFAULT
987 #include <sys/types.h>
988 ])
989 AC_CHECK_TYPE([u_int64_t], ,
990 [AC_DEFINE([u_int64_t], [uint64_t],
991 [Define to `uint64_t' if u_int64_t not defined.])],
992 [AC_INCLUDES_DEFAULT
993 #include <sys/types.h>
994 ])
995
996 #
997 # Check for <inttypes.h>
998 #
999 AC_CHECK_HEADERS(inttypes.h,
1000 [
1001 #
1002 # OK, we have inttypes.h, but does it define all the PRI[doxu]64 macros?
1003 # Some systems have an inttypes.h that doesn't define all of them.
1004 #
1005 AC_MSG_CHECKING([[whether inttypes.h defines the PRI[doxu]64 macros]])
1006 AC_COMPILE_IFELSE(
1007 [
1008 AC_LANG_SOURCE(
1009 [[
1010 #include <inttypes.h>
1011 #include <stdio.h>
1012 #include <sys/types.h>
1013
1014 main()
1015 {
1016 printf("%" PRId64 "\n", (uint64_t)1);
1017 printf("%" PRIo64 "\n", (uint64_t)1);
1018 printf("%" PRIx64 "\n", (uint64_t)1);
1019 printf("%" PRIu64 "\n", (uint64_t)1);
1020 }
1021 ]])
1022 ],
1023 [
1024 AC_MSG_RESULT(yes)
1025 ac_lbl_inttypes_h_defines_formats=yes
1026 ],
1027 [
1028 AC_MSG_RESULT(no)
1029 ac_lbl_inttypes_h_defines_formats=no
1030 ])
1031 ],
1032 [
1033 #
1034 # We don't have inttypes.h, so it obviously can't define those
1035 # macros.
1036 #
1037 ac_lbl_inttypes_h_defines_formats=no
1038 ])
1039 if test "$ac_lbl_inttypes_h_defines_formats" = no; then
1040 AC_LBL_CHECK_64BIT_FORMAT(l,
1041 [
1042 AC_LBL_CHECK_64BIT_FORMAT(ll,
1043 [
1044 AC_LBL_CHECK_64BIT_FORMAT(L,
1045 [
1046 AC_LBL_CHECK_64BIT_FORMAT(q,
1047 [
1048 AC_MSG_ERROR([neither %llx nor %Lx nor %qx worked on a 64-bit integer])
1049 ])
1050 ])
1051 ])
1052 ])
1053 fi
1054
1055 #
1056 # Check for some headers introduced in later versions of libpcap
1057 # and used by some printers.
1058 #
1059 # Those headers use the {u_}intN_t types, so we must do this after
1060 # we check for what's needed to get them defined.
1061 #
1062 savedcppflags="$CPPFLAGS"
1063 CPPFLAGS="$CPPFLAGS $V_INCLS"
1064 AC_CHECK_HEADERS(pcap/bluetooth.h,,,[#include "tcpdump-stdinc.h"])
1065 AC_CHECK_HEADERS(pcap/nflog.h,,,[#include "tcpdump-stdinc.h"])
1066 AC_CHECK_HEADERS(pcap/usb.h,,,[#include "tcpdump-stdinc.h"])
1067 CPPFLAGS="$savedcppflags"
1068
1069 AC_PROG_RANLIB
1070 AC_CHECK_TOOL([AR], [ar])
1071
1072 AC_LBL_DEVEL(V_CCOPT)
1073
1074 AC_LBL_SOCKADDR_SA_LEN
1075
1076 AC_LBL_UNALIGNED_ACCESS
1077
1078 AC_VAR_H_ERRNO
1079
1080 # Check for OpenSSL libcrypto
1081 AC_MSG_CHECKING(whether to use OpenSSL libcrypto)
1082 # Specify location for both includes and libraries.
1083 want_libcrypto=ifavailable
1084 AC_ARG_WITH(crypto,
1085 AS_HELP_STRING([--with-crypto],
1086 [use OpenSSL libcrypto @<:@default=yes, if available@:>@]),
1087 [
1088 if test $withval = no
1089 then
1090 want_libcrypto=no
1091 AC_MSG_RESULT(no)
1092 elif test $withval = yes
1093 then
1094 want_libcrypto=yes
1095 AC_MSG_RESULT(yes)
1096 fi
1097 ],[
1098 #
1099 # Use libcrypto if it's present, otherwise don't.
1100 #
1101 want_libcrypto=ifavailable
1102 AC_MSG_RESULT([yes, if available])
1103 ])
1104 if test "$want_libcrypto" != "no"; then
1105 AC_CHECK_LIB(crypto, DES_cbc_encrypt)
1106 AC_CHECK_HEADERS(openssl/evp.h)
1107 fi
1108
1109 dnl
1110 dnl set additional include path if necessary
1111 if test "$missing_includes" = "yes"; then
1112 CPPFLAGS="$CPPFLAGS -I$srcdir/missing"
1113 V_INCLS="$V_INCLS -I$srcdir/missing"
1114 fi
1115
1116 AC_SUBST(V_CCOPT)
1117 AC_SUBST(V_DEFS)
1118 AC_SUBST(V_GROUP)
1119 AC_SUBST(V_INCLS)
1120 AC_SUBST(V_PCAPDEP)
1121 AC_SUBST(LOCALSRC)
1122 AC_SUBST(MAN_FILE_FORMATS)
1123 AC_SUBST(MAN_MISC_INFO)
1124
1125 AC_PROG_INSTALL
1126
1127 AC_CONFIG_HEADER(config.h)
1128
1129 AC_OUTPUT_COMMANDS([if test -f .devel; then
1130 echo timestamp > stamp-h
1131 cat Makefile-devel-adds >> Makefile
1132 make depend
1133 fi])
1134 AC_OUTPUT(Makefile tcpdump.1)
1135 exit 0