1 dnl @(#) $Header: /tcpdump/master/tcpdump/configure.in,v 1.204 2008-11-18 07:39:20 guy Exp $ (LBL)
3 dnl Copyright (c) 1994, 1995, 1996, 1997
4 dnl The Regents of the University of California. All rights reserved.
6 dnl Process this file with autoconf to produce a configure script.
12 # http://ftp.gnu.org/gnu/config/README
14 # for the URLs to use to fetch new versions of config.guess and
18 AC_REVISION($Revision: 1.204 $)
24 AC_LBL_C_INIT_BEFORE_CC(V_CCOPT, V_INCLS)
26 AC_LBL_C_INIT(V_CCOPT, V_INCLS)
29 if test "$ac_cv___attribute__" = "yes"; then
30 AC_C___ATTRIBUTE___FORMAT_FUNCTION_POINTER
32 AC_CHECK_HEADERS(fcntl.h rpc/rpcent.h netdnet/dnetdb.h)
33 AC_CHECK_HEADERS(net/pfvar.h, , , [#include <sys/types.h>
34 #include <sys/socket.h>
36 if test "$ac_cv_header_net_pfvar_h" = yes; then
37 LOCALSRC="print-pflog.c $LOCALSRC"
39 AC_CHECK_HEADERS(netinet/if_ether.h, , , [#include <sys/types.h>
40 #include <sys/socket.h>])
41 if test "$ac_cv_header_netinet_if_ether_h" != yes; then
43 # The simple test didn't work.
44 # Do we need to include <net/if.h> first?
45 # Unset ac_cv_header_netinet_if_ether_h so we don't
46 # treat the previous failure as a cached value and
47 # suppress the next test.
49 AC_MSG_NOTICE([Rechecking with some additional includes])
50 unset ac_cv_header_netinet_if_ether_h
51 AC_CHECK_HEADERS(netinet/if_ether.h, , , [#include <sys/types.h>
52 #include <sys/socket.h>
53 #include <netinet/in.h>
64 AC_MSG_CHECKING(Linux kernel version)
65 if test "$cross_compiling" = yes; then
66 AC_CACHE_VAL(ac_cv_linux_vers,
67 ac_cv_linux_vers=unknown)
69 AC_CACHE_VAL(ac_cv_linux_vers,
70 ac_cv_linux_vers=`uname -r 2>&1 | \
71 sed -n -e '$s/.* //' -e '$s/\..*//p'`)
73 AC_MSG_RESULT($ac_cv_linux_vers)
74 if test $ac_cv_linux_vers = unknown ; then
75 AC_MSG_ERROR(cannot determine linux version when cross-compiling)
77 if test $ac_cv_linux_vers -lt 2 ; then
78 AC_MSG_ERROR(version 2 or higher required; see the INSTALL doc for more info)
88 [ --with-smi link with libsmi (allows to load MIBs on the fly to decode SNMP packets. [default=yes]
89 --without-smi don't link with libsmi],,
92 if test "x$with_smi" != "xno" ; then
93 AC_CHECK_HEADERS(smi.h)
94 AC_CHECK_LIB(smi, smiInit)
95 if test "$ac_cv_header_smi_h" = yes -a "$ac_cv_lib_smi_smiInit" = yes
97 AC_MSG_CHECKING([whether to enable libsmi])
98 AC_TRY_RUN([ /* libsmi available check */
102 int current, revision, age, n;
103 const int required = 2;
106 if (strcmp(SMI_LIBRARY_VERSION, smi_library_version))
108 n = sscanf(smi_library_version, "%d:%d:%d", ¤t, &revision, &age);
111 if (required < current - age || required > current)
119 dnl autoconf documentation says that $? contains the exit value.
120 dnl reality is that it does not. We leave this in just in case
121 dnl autoconf ever comes back to match the documentation.
123 1) AC_MSG_RESULT(no - smiInit failed) ;;
124 2) AC_MSG_RESULT(no - header/library version mismatch) ;;
125 3) AC_MSG_RESULT(no - can't determine library version) ;;
126 4) AC_MSG_RESULT(no - too old) ;;
127 *) AC_MSG_RESULT(no) ;;
130 [ AC_MSG_RESULT(not when cross-compiling)
136 AC_MSG_CHECKING([whether to enable the possibly-buggy SMB printer])
138 [ --enable-smb enable possibly-buggy SMB printer [default=yes]
139 --disable-smb disable possibly-buggy SMB printer],,
142 yes) AC_MSG_RESULT(yes)
143 AC_WARN([The SMB printer may have exploitable buffer overflows!!!])
144 AC_DEFINE(TCPDUMP_DO_SMB)
145 LOCALSRC="print-smb.c smbutil.c $LOCALSRC"
151 AC_ARG_WITH(user, [ --with-user=USERNAME drop privileges by default to USERNAME])
152 AC_MSG_CHECKING([whether to drop root privileges by default])
153 if test ! -z "$with_user" ; then
154 AC_DEFINE_UNQUOTED(WITH_USER, "$withval")
155 AC_MSG_RESULT(to \"$withval\")
160 AC_ARG_WITH(chroot, [ --with-chroot=DIRECTORY when dropping privileges, chroot to DIRECTORY])
161 AC_MSG_CHECKING([whether to chroot])
162 if test ! -z "$with_chroot" && test "$with_chroot" != "no" ; then
163 AC_DEFINE_UNQUOTED(WITH_CHROOT, "$withval")
164 AC_MSG_RESULT(to \"$withval\")
169 AC_MSG_CHECKING([whether to enable ipv6])
171 [ --enable-ipv6 enable ipv6 (with ipv4) support
172 --disable-ipv6 disable ipv6 support],
173 [ case "$enableval" in
174 yes) AC_MSG_RESULT(yes)
175 LOCALSRC="print-ip6.c print-ip6opts.c print-mobility.c print-ripng.c print-icmp6.c print-frag6.c print-rt6.c print-ospf6.c print-dhcp6.c $LOCALSRC"
185 AC_TRY_RUN([ /* AF_INET6 available check */
186 #include <sys/types.h>
187 #include <sys/socket.h>
190 if (socket(AF_INET6, SOCK_STREAM, 0) < 0)
197 LOCALSRC="print-ip6.c print-ip6opts.c print-mobility.c print-ripng.c print-icmp6.c print-frag6.c print-rt6.c print-ospf6.c print-dhcp6.c $LOCALSRC"
210 if test "$ipv6" = "yes"; then
211 AC_MSG_CHECKING([ipv6 stack type])
212 for i in inria kame linux-glibc linux-libinet6 toshiba v6d zeta; do
215 dnl http://www.kame.net/
217 [#include <netinet/in.h>
218 #ifdef IPV6_INRIA_VERSION
222 CFLAGS="-DINET6 $CFLAGS"])
225 dnl http://www.kame.net/
227 [#include <netinet/in.h>
233 ipv6libdir=/usr/local/v6/lib;
235 CFLAGS="-DINET6 $CFLAGS"])
238 dnl http://www.v6.linux.or.jp/
240 [#include <features.h>
241 #if defined(__GLIBC__) && __GLIBC__ >= 2 && __GLIBC_MINOR__ >= 1
245 CFLAGS="-DINET6 $CFLAGS"])
248 dnl http://www.v6.linux.or.jp/
250 dnl This also matches Solaris 8 and Tru64 UNIX 5.1,
251 dnl and possibly other versions of those OSes
253 if test -d /usr/inet6 -o -f /usr/include/netinet/ip6.h; then
256 ipv6libdir=/usr/inet6/lib
258 CFLAGS="-DINET6 -I/usr/inet6/include $CFLAGS"
263 [#include <sys/param.h>
264 #ifdef _TOSHIBA_INET6
269 ipv6libdir=/usr/local/v6/lib;
270 CFLAGS="-DINET6 $CFLAGS"])
274 [#include </usr/local/v6/include/sys/v6config.h>
280 ipv6libdir=/usr/local/v6/lib;
281 CFLAGS="-I/usr/local/v6/include $CFLAGS"])
285 [#include <sys/param.h>
286 #ifdef _ZETA_MINAMI_INET6
291 ipv6libdir=/usr/local/v6/lib;
292 CFLAGS="-DINET6 $CFLAGS"])
295 if test "$ipv6type" != "unknown"; then
299 AC_MSG_RESULT($ipv6type)
302 if test "$ipv6" = "yes" -a "$ipv6lib" != "none"; then
303 if test -d $ipv6libdir -a -f $ipv6libdir/lib$ipv6lib.a; then
304 LIBS="-L$ipv6libdir -l$ipv6lib $LIBS"
305 echo "You have $ipv6lib library, using it"
307 if test "$ipv6trylibc" = "yes"; then
308 echo "You do not have $ipv6lib library, using libc"
310 echo 'Fatal: no $ipv6lib library found. cannot continue.'
311 echo "You need to fetch lib$ipv6lib.a from appropriate"
312 echo 'ipv6 kit and compile beforehand.'
319 if test "$ipv6" = "yes"; then
321 # XXX - on Tru64 UNIX 5.1, there is no "getaddrinfo()"
322 # function in libc; there are "ngetaddrinfo()" and
323 # "ogetaddrinfo()" functions, and <netdb.h> #defines
324 # "getaddrinfo" to be either "ngetaddrinfo" or
325 # "ogetaddrinfo", depending on whether _SOCKADDR_LEN
326 # or _XOPEN_SOURCE_EXTENDED are defined or not.
328 # So this test doesn't work on Tru64 5.1, and possibly
329 # on other 5.x releases. This causes the configure
330 # script to become confused, and results in libpcap
333 AC_SEARCH_LIBS(getaddrinfo, socket, [dnl
334 AC_MSG_CHECKING(getaddrinfo bug)
335 AC_CACHE_VAL(td_cv_buggygetaddrinfo, [AC_TRY_RUN([
336 #include <sys/types.h>
339 #include <sys/socket.h>
340 #include <netinet/in.h>
344 int passive, gaierr, inet4 = 0, inet6 = 0;
345 struct addrinfo hints, *ai, *aitop;
346 char straddr[INET6_ADDRSTRLEN], strport[16];
348 for (passive = 0; passive <= 1; passive++) {
349 memset(&hints, 0, sizeof(hints));
350 hints.ai_family = AF_UNSPEC;
351 hints.ai_flags = passive ? AI_PASSIVE : 0;
352 hints.ai_socktype = SOCK_STREAM;
353 hints.ai_protocol = IPPROTO_TCP;
354 if ((gaierr = getaddrinfo(NULL, "54321", &hints, &aitop)) != 0) {
355 (void)gai_strerror(gaierr);
358 for (ai = aitop; ai; ai = ai->ai_next) {
359 if (ai->ai_addr == NULL ||
360 ai->ai_addrlen == 0 ||
361 getnameinfo(ai->ai_addr, ai->ai_addrlen,
362 straddr, sizeof(straddr), strport, sizeof(strport),
363 NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
366 switch (ai->ai_family) {
368 if (strcmp(strport, "54321") != 0) {
372 if (strcmp(straddr, "0.0.0.0") != 0) {
376 if (strcmp(straddr, "127.0.0.1") != 0) {
383 if (strcmp(strport, "54321") != 0) {
387 if (strcmp(straddr, "::") != 0) {
391 if (strcmp(straddr, "::1") != 0) {
408 /* another family support? */
414 /* supported family should be 2, unsupported family should be 0 */
415 if (!(inet4 == 0 || inet4 == 2))
417 if (!(inet6 == 0 || inet6 == 2))
430 td_cv_buggygetaddrinfo=no,
431 td_cv_buggygetaddrinfo=yes,
432 td_cv_buggygetaddrinfo=yes)])
433 if test "$td_cv_buggygetaddrinfo" = no; then
439 if test "$td_cv_buggygetaddrinfo" = "yes"; then
441 # XXX - it doesn't appear that "ipv6type" can ever be
442 # set to "linux". Should this be testing for
443 # "linux-glibc", or for that *or* "linux-libinet6"?
444 # If the latter, note that "linux-libinet6" is also
445 # the type given to some non-Linux OSes.
447 if test "$ipv6type" != "linux"; then
448 echo 'Fatal: You must get working getaddrinfo() function.'
449 echo ' or you can specify "--disable-ipv6"'.
452 echo 'Warning: getaddrinfo() implementation on your system seems be buggy.'
453 echo ' Better upgrade your system library to newest version'
454 echo ' of GNU C library (aka glibc).'
458 AC_REPLACE_FUNCS(getnameinfo)
461 AC_CACHE_CHECK([for dnet_htoa declaration in netdnet/dnetdb.h],
462 [td_cv_decl_netdnet_dnetdb_h_dnet_htoa],
463 [AC_EGREP_HEADER(dnet_htoa, netdnet/dnetdb.h,
464 td_cv_decl_netdnet_dnetdb_h_dnet_htoa=yes,
465 td_cv_decl_netdnet_dnetdb_h_dnet_htoa=no)])
466 if test "$td_cv_decl_netdnet_dnetdb_h_dnet_htoa" = yes; then
467 AC_DEFINE(HAVE_NETDNET_DNETDB_H_DNET_HTOA)
471 dnl check sizeof basic types.
472 dnl They're very likely to be wrong for cross-compiling.
473 AC_CHECK_SIZEOF(char, 1)
474 AC_CHECK_SIZEOF(short, 2)
475 AC_CHECK_SIZEOF(int, 4)
476 AC_CHECK_SIZEOF(long, 4)
477 AC_CHECK_SIZEOF(long long, 8)
480 dnl Checks for addrinfo structure
481 AC_STRUCT_ADDRINFO(ac_cv_addrinfo)
482 if test "$ac_cv_addrinfo" = no; then
487 dnl Checks for NI_MAXSERV
488 AC_NI_MAXSERV(ac_cv_maxserv)
489 if test "$ac_cv_maxserv" = no; then
494 dnl Checks for NI_NAMEREQD
495 AC_NI_NAMEREQD(ac_cv_namereqd)
496 if test "$ac_cv_namereqd" = no; then
501 dnl Checks for sockaddr_storage structure
502 AC_STRUCT_SA_STORAGE(ac_cv_sa_storage)
503 if test "$ac_cv_sa_storage" = no; then
507 AC_REPLACE_FUNCS(vfprintf strcasecmp strlcat strlcpy strdup strsep)
508 AC_CHECK_FUNCS(fork vfork strftime)
509 AC_CHECK_FUNCS(setlinebuf alarm)
512 AC_CHECK_FUNCS(vsnprintf snprintf,,
514 if test $needsnprintf = yes; then
520 AC_SEARCH_LIBS(dnet_htoa, dnet, AC_DEFINE(HAVE_DNET_HTOA))
522 AC_CHECK_LIB(rpc, main) dnl It's unclear why we might need -lrpc
524 dnl Some platforms may need -lnsl for getrpcbynumber.
525 AC_SEARCH_LIBS(getrpcbynumber, nsl, AC_DEFINE(HAVE_GETRPCBYNUMBER))
527 dnl AC_CHECK_LIB(z, uncompress)
528 dnl AC_CHECK_HEADERS(zlib.h)
530 AC_LBL_LIBPCAP(V_PCAPDEP, V_INCLS)
533 # Check for these after AC_LBL_LIBPCAP, so we link with the appropriate
534 # libraries (e.g., "-lsocket -lnsl" on Solaris).
536 # We don't use AC_REPLACE_FUNCS because that uses AC_CHECK_FUNCS which
537 # use AC_CHECK_FUNC which doesn't let us specify the right #includes
538 # to make this work on BSD/OS 4.x. BSD/OS 4.x ships with the BIND8
539 # resolver, and the way it defines inet_{ntop,pton} is rather strange;
540 # it does not ship with a libc symbol "inet_ntop()", it ships with
541 # "_inet_ntop()", and has a #define macro in one of the system headers
544 dnl AC_TRY_COMPILE(inet_ntop inet_pton inet_aton)
545 AC_MSG_CHECKING(for inet_ntop)
546 AC_TRY_LINK([#include <sys/types.h>
547 #include <sys/socket.h>
548 #include <netinet/in.h>
549 #include <arpa/inet.h>], [char src[4], dst[128];
550 inet_ntop(AF_INET, src, dst, sizeof(dst));],
551 [AC_MSG_RESULT(yes)], [AC_MSG_RESULT(no)
552 AC_LIBOBJ(inet_ntop)])
553 AC_MSG_CHECKING(for inet_pton)
554 AC_TRY_LINK([#include <sys/types.h>
555 #include <sys/socket.h>
556 #include <netinet/in.h>
557 #include <arpa/inet.h>], [char src[128], dst[4];
558 inet_pton(AF_INET, src, dst);],
559 [AC_MSG_RESULT(yes)], [AC_MSG_RESULT(no)
560 AC_LIBOBJ(inet_pton)])
561 AC_MSG_CHECKING(for inet_aton)
562 AC_TRY_LINK([#include <sys/types.h>
563 #include <netinet/in.h>
564 #include <arpa/inet.h>], [char src[128];
566 inet_aton(src, &dst);],
567 [AC_MSG_RESULT(yes)], [AC_MSG_RESULT(no)
568 AC_LIBOBJ(inet_aton)])
571 # Check for these after AC_LBL_LIBPCAP, for the same reason.
573 # You are in a twisty little maze of UN*Xes, all different.
574 # Some might not have ether_ntohost().
575 # Some might have it, but not declare it in any header file.
576 # Some might have it, but declare it in <netinet/if_ether.h>.
577 # Some might have it, but declare it in <netinet/ether.h>
578 # (And some might have it but document it as something declared in
579 # <netinet/ethernet.h>, although <netinet/if_ether.h> appears to work.)
581 # Before you is a C compiler.
583 AC_CHECK_FUNCS(ether_ntohost, [
584 AC_CACHE_CHECK(for buggy ether_ntohost, ac_cv_buggy_ether_ntohost, [
587 #include <sys/types.h>
588 #include <sys/param.h>
589 #include <sys/socket.h>
592 main(int argc, char **argv)
594 u_char ea[6] = { 0xff, 0xff, 0xff, 0xff, 0xff };
595 char name[MAXHOSTNAMELEN];
597 ether_ntohost(name, (struct ether_addr *)ea);
600 ], [ac_cv_buggy_ether_ntohost=no],
601 [ac_cv_buggy_ether_ntohost=yes],
602 [ac_cv_buggy_ether_ntohost="not while cross-compiling"])])
603 if test "$ac_cv_buggy_ether_ntohost" = "no"; then
604 AC_DEFINE(USE_ETHER_NTOHOST)
607 if test "$ac_cv_func_ether_ntohost" = yes -a \
608 "$ac_cv_buggy_ether_ntohost" = "no"; then
610 # OK, we have ether_ntohost(). Do we have <netinet/if_ether.h>?
612 if test "$ac_cv_header_netinet_if_ether_h" = yes; then
614 # Yes. Does it declare ether_ntohost()?
616 AC_CHECK_DECL(ether_ntohost,
618 AC_DEFINE(NETINET_IF_ETHER_H_DECLARES_ETHER_NTOHOST,,
619 [Define to 1 if netinet/if_ether.h declares `ether_ntohost'])
622 #include <sys/types.h>
623 #include <sys/socket.h>
624 #include <netinet/in.h>
625 #include <arpa/inet.h>
629 #include <netinet/if_ether.h>
635 if test "$ac_cv_have_decl_ether_ntohost" != yes; then
637 # No, how about <netinet/ether.h>, as on Linux?
639 AC_CHECK_HEADERS(netinet/ether.h)
640 if test "$ac_cv_header_netinet_ether_h" = yes; then
642 # We have it - does it declare ether_ntohost()?
643 # Unset ac_cv_have_decl_ether_ntohost so we don't
644 # treat the previous failure as a cached value and
645 # suppress the next test.
647 unset ac_cv_have_decl_ether_ntohost
648 AC_CHECK_DECL(ether_ntohost,
650 AC_DEFINE(NETINET_ETHER_H_DECLARES_ETHER_NTOHOST,,
651 [Define to 1 if netinet/ether.h declares `ether_ntohost'])
654 #include <netinet/ether.h>
659 # Is ether_ntohost() declared?
661 if test "$ac_cv_have_decl_ether_ntohost" != yes; then
663 # No, we'll have to declare it ourselves.
664 # Do we have "struct ether_addr"?
666 AC_CHECK_TYPES(struct ether_addr,,,
668 #include <sys/types.h>
669 #include <sys/socket.h>
670 #include <netinet/in.h>
671 #include <arpa/inet.h>
675 #include <netinet/if_ether.h>
677 AC_DEFINE(HAVE_DECL_ETHER_NTOHOST, 0,
678 [Define to 1 if you have the declaration of `ether_ntohost', and to 0 if you
681 AC_DEFINE(HAVE_DECL_ETHER_NTOHOST, 1,
682 [Define to 1 if you have the declaration of `ether_ntohost', and to 0 if you
687 # libdlpi is needed for Solaris 11 and later.
688 AC_CHECK_LIB(dlpi, dlpi_walk, LIBS="$LIBS -ldlpi" LDFLAGS="-L/lib $LDFLAGS", ,-L/lib)
690 dnl portability macros for getaddrinfo/getnameinfo
693 AC_CHECK_SA_LEN(ac_cv_sockaddr_has_sa_len)
694 if test "$ac_cv_sockaddr_has_sa_len" = no; then
699 # Do we have the new open API? Check for pcap_create, and assume that,
700 # if we do, we also have pcap_activate() and the other new routines
701 # introduced in libpcap 1.0.0.
703 AC_CHECK_FUNCS(pcap_create)
704 if test $ac_cv_func_pcap_create = "yes" ; then
706 # OK, do we have pcap_set_tstamp_type? If so, assume we have
707 # pcap_list_tstamp_types and pcap_free_tstamp_types as well.
709 AC_CHECK_FUNCS(pcap_set_tstamp_type)
712 AC_CHECK_FUNCS(pcap_findalldevs pcap_dump_flush pcap_lib_version)
713 if test $ac_cv_func_pcap_findalldevs = "yes" ; then
714 dnl Check for Mac OS X, which may ship pcap.h from 0.6 but libpcap may
715 dnl be 0.8; this means that lib has pcap_findalldevs but header doesn't
717 savedppflags="$CPPLAGS"
718 CPPFLAGS="$CPPFLAGS $V_INCLS"
719 AC_CHECK_TYPES(pcap_if_t, , , [#include <pcap.h>])
720 CPPFLAGS="$savedcppflags"
723 if test $ac_cv_func_pcap_lib_version = "no" ; then
724 AC_MSG_CHECKING(whether pcap_version is defined by libpcap)
727 extern char pcap_version[];
729 return (int)pcap_version;
731 ac_lbl_cv_pcap_version_defined=yes,
732 ac_lbl_cv_pcap_version_defined=no)
733 if test "$ac_lbl_cv_pcap_version_defined" = yes ; then
735 AC_DEFINE(HAVE_PCAP_VERSION)
740 AC_MSG_CHECKING(whether pcap_debug is defined by libpcap)
743 extern int pcap_debug;
747 ac_lbl_cv_pcap_debug_defined=yes,
748 ac_lbl_cv_pcap_debug_defined=no)
749 if test "$ac_lbl_cv_pcap_debug_defined" = yes ; then
751 AC_DEFINE(HAVE_PCAP_DEBUG)
755 # OK, what about "yydebug"?
757 AC_MSG_CHECKING(whether yydebug is defined by libpcap)
764 ac_lbl_cv_yydebug_defined=yes,
765 ac_lbl_cv_yydebug_defined=no)
766 if test "$ac_lbl_cv_yydebug_defined" = yes ; then
768 AC_DEFINE(HAVE_YYDEBUG)
773 AC_REPLACE_FUNCS(bpf_dump) dnl moved to libpcap in 0.6
776 if test -f /etc/group -a ! -z "`grep '^wheel:' /etc/group`" ; then
780 # Assume V7/BSD convention for man pages (file formats in section 5,
781 # miscellaneous info in section 7).
788 dnl Workaround to enable certain features
789 AC_DEFINE(_SUN,1,[define on AIX to get certain functions])
794 # Use System V conventions for man pages.
804 # Use System V conventions for man pages.
814 # Use System V conventions for man pages.
824 # Use System V conventions for man pages.
831 if test -f /dev/bpf0 ; then
836 # Check for some headers introduced in later versions of libpcap
837 # and used by some printers.
839 savedcppflags="$CPPFLAGS"
840 CPPFLAGS="$CPPFLAGS $V_INCLS"
841 AC_CHECK_HEADERS(pcap/bluetooth.h)
842 AC_CHECK_HEADERS(pcap/usb.h)
843 CPPFLAGS="$savedcppflags"
845 AC_CHECK_HEADERS(sys/bitypes.h)
847 AC_CHECK_TYPE([int8_t], ,
848 [AC_DEFINE([int8_t], [signed char],
849 [Define to `signed char' if int8_t not defined.])],
851 #ifdef HAVE_SYS_BITYPES_H
852 #include <sys/bitypes.h>
854 AC_CHECK_TYPE([u_int8_t], ,
855 [AC_DEFINE([u_int8_t], [unsigned char],
856 [Define to `unsigned char' if u_int8_t not defined.])],
858 #ifdef HAVE_SYS_BITYPES_H
859 #include <sys/bitypes.h>
861 AC_CHECK_TYPE([int16_t], ,
862 [AC_DEFINE([int16_t], [short],
863 [Define to `short' if int16_t not defined.])]
865 #ifdef HAVE_SYS_BITYPES_H
866 #include <sys/bitypes.h>
868 AC_CHECK_TYPE([u_int16_t], ,
869 [AC_DEFINE([u_int16_t], [unsigned short],
870 [Define to `unsigned short' if u_int16_t not defined.])],
872 #ifdef HAVE_SYS_BITYPES_H
873 #include <sys/bitypes.h>
875 AC_CHECK_TYPE([int32_t], ,
876 [AC_DEFINE([int32_t], [int],
877 [Define to `int' if int32_t not defined.])],
879 #ifdef HAVE_SYS_BITYPES_H
880 #include <sys/bitypes.h>
882 AC_CHECK_TYPE([u_int32_t], ,
883 [AC_DEFINE([u_int32_t], [unsigned int],
884 [Define to `unsigned int' if u_int32_t not defined.])],
886 #ifdef HAVE_SYS_BITYPES_H
887 #include <sys/bitypes.h>
889 AC_CHECK_TYPE([int64_t], ,
890 [AC_DEFINE([int64_t], [long long],
891 [Define to `long long' if int64_t not defined.])],
893 #ifdef HAVE_SYS_BITYPES_H
894 #include <sys/bitypes.h>
896 AC_CHECK_TYPE([u_int64_t], ,
897 [AC_DEFINE([u_int64_t], [unsigned long long],
898 [Define to `unsigned long long' if u_int64_t not defined.])],
900 #ifdef HAVE_SYS_BITYPES_H
901 #include <sys/bitypes.h>
905 # We can't just check for <inttypes.h> - some systems have one that
906 # doesn't define all the PRI[doxu]64 macros.
908 AC_CHECK_HEADERS(inttypes.h,
911 # OK, we have inttypes.h, but does it define those macros?
913 AC_MSG_CHECKING([[whether inttypes.h defines the PRI[doxu]64 macros]])
918 #include <inttypes.h>
920 #include <sys/types.h>
921 #ifdef HAVE_SYS_BITYPES_H
922 #include <sys/bitypes.h>
927 printf("%" PRId64 "\n", (u_int64_t)1);
928 printf("%" PRIo64 "\n", (u_int64_t)1);
929 printf("%" PRIx64 "\n", (u_int64_t)1);
930 printf("%" PRIu64 "\n", (u_int64_t)1);
936 ac_lbl_inttypes_h_defines_formats=yes
940 ac_lbl_inttypes_h_defines_formats=no
945 # We don't have inttypes.h, so it obviously can't define those
948 ac_lbl_inttypes_h_defines_formats=no
950 if test "$ac_lbl_inttypes_h_defines_formats" = no; then
951 AC_LBL_CHECK_64BIT_FORMAT(l,
953 AC_LBL_CHECK_64BIT_FORMAT(ll,
955 AC_LBL_CHECK_64BIT_FORMAT(L,
957 AC_LBL_CHECK_64BIT_FORMAT(q,
959 AC_MSG_ERROR([neither %llx nor %Lx nor %qx worked on a 64-bit integer])
968 AC_LBL_DEVEL(V_CCOPT)
970 AC_LBL_SOCKADDR_SA_LEN
972 AC_LBL_UNALIGNED_ACCESS
977 AC_MSG_CHECKING(whether to use SSLeay libcrypto)
978 # Specify location for both includes and libraries.
979 want_libcrypto=youmama
981 AS_HELP_STRING([--with-crypto@<:@=PATH@:>@],
982 [use SSLeay libcrypto (located in directory PATH, if supplied). @<:@default=yes, if available@:>@]),
984 if test $withval = no
988 elif test $withval = yes
999 # Use libcrypto if it's present, otherwise don't.
1001 want_libcrypto=ifavailable
1002 AC_MSG_RESULT([yes, if available])
1004 if test "$want_libcrypto" != "no"; then
1005 ac_cv_ssleay_path=no
1007 if test "x$crypto_dir" = x; then
1009 # Location not specified; check the default locations.
1011 AC_MSG_CHECKING(where SSLeay is located)
1012 dirs="/usr /usr/local /usr/local/ssl /usr/pkg"
1013 if test "x${host_alias}" != x; then
1014 dirs="/usr/${host_alias} $dirs"
1016 for dir in $dirs; do
1019 if test "$ac_cv_ssleay_path" != "no" -a "$incdir" != "no"; then
1022 ac_cv_ssleay_path=no
1026 if test "$ac_cv_ssleay_path" != no; then
1027 AC_MSG_RESULT($ac_cv_ssleay_path)
1030 AC_MSG_CHECKING(for SSLeay in $crypto_dir)
1031 AC_LBL_SSLEAY($crypto_dir)
1032 if test "$ac_cv_ssleay_path" != no; then
1033 AC_MSG_RESULT(found)
1036 if test "$ac_cv_ssleay_path" != no; then
1037 V_INCLS="$V_INCLS $incdir"
1038 if test "$dir" != "/usr"; then
1039 LDFLAGS="-L$dir/lib $LDFLAGS"
1041 if test -f $ac_cv_ssleay_path/lib/libRSAglue.a; then
1042 LIBS="$LIBS -lRSAglue"
1044 if test -f $ac_cv_ssleay_path/lib/librsaref.a; then
1045 LIBS="$LIBS -lrsaref"
1047 AC_CHECK_LIB(crypto, DES_cbc_encrypt)
1049 CPPFLAGS="$CPPFLAGS $V_INCLS"
1050 AC_CHECK_HEADERS(openssl/evp.h)
1053 # Not found. Did the user explicitly ask for it?
1055 AC_MSG_RESULT(not found)
1056 if test "$want_libcrypto" = yes; then
1057 AC_MSG_ERROR(SSLeay not found)
1063 dnl set additional include path if necessary
1064 if test "$missing_includes" = "yes"; then
1065 CPPFLAGS="$CPPFLAGS -I\$(srcdir)/missing"
1066 V_INCLS="$V_INCLS -I\$(srcdir)/missing"
1075 AC_SUBST(MAN_FILE_FORMATS)
1076 AC_SUBST(MAN_MISC_INFO)
1080 AC_CONFIG_HEADER(config.h)
1082 AC_OUTPUT_COMMANDS([if test -f .devel; then
1083 echo timestamp > stamp-h
1084 cat Makefile-devel-adds >> Makefile
1087 AC_OUTPUT(Makefile tcpdump.1)