1 dnl Copyright (c) 1994, 1995, 1996, 1997
2 dnl The Regents of the University of California. All rights reserved.
4 dnl Process this file with autoconf to produce a configure script.
10 # http://ftp.gnu.org/gnu/config/README
12 # for the URLs to use to fetch new versions of config.guess and
21 AC_LBL_C_INIT_BEFORE_CC(V_INCLS)
23 AC_LBL_C_INIT(V_CCOPT, V_INCLS)
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
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>
39 if test "$ac_cv_header_net_pfvar_h" = yes; then
40 AC_CHECK_HEADERS(net/if_pflog.h, , , [#include <sys/types.h>
41 #include <sys/socket.h>
43 #include <net/pfvar.h>])
44 if test "$ac_cv_header_net_if_pflog_h" = yes; then
45 LOCALSRC="print-pflog.c $LOCALSRC"
48 AC_CHECK_HEADERS(netinet/if_ether.h, , , [#include <sys/types.h>
49 #include <sys/socket.h>])
50 if test "$ac_cv_header_netinet_if_ether_h" != yes; then
52 # The simple test didn't work.
53 # Do we need to include <net/if.h> first?
54 # Unset ac_cv_header_netinet_if_ether_h so we don't
55 # treat the previous failure as a cached value and
56 # suppress the next test.
58 AC_MSG_NOTICE([Rechecking with some additional includes])
59 unset ac_cv_header_netinet_if_ether_h
60 AC_CHECK_HEADERS(netinet/if_ether.h, , , [#include <sys/types.h>
61 #include <sys/socket.h>
62 #include <netinet/in.h>
73 AC_ARG_ENABLE(universal,
74 AC_HELP_STRING([--disable-universal],[don't build universal on OS X]))
75 if test "$enable_universal" != "no"; then
80 # Leopard. Build for x86 and 32-bit PowerPC, with
81 # x86 first. (That's what Apple does.)
83 V_CCOPT="$V_CCOPT -arch i386 -arch ppc"
84 LDFLAGS="$LDFLAGS -arch i386 -arch ppc"
89 # Snow Leopard. Build for x86-64 and x86, with
90 # x86-64 first. (That's what Apple does.)
92 V_CCOPT="$V_CCOPT -arch x86_64 -arch i386"
93 LDFLAGS="$LDFLAGS -arch x86_64 -arch i386"
102 [ --with-smi link with libsmi (allows to load MIBs on the fly to decode SNMP packets. [default=yes]
103 --without-smi don't link with libsmi],,
106 if test "x$with_smi" != "xno" ; then
107 AC_CHECK_HEADER(smi.h,
110 # OK, we found smi.h. Do we have libsmi with smiInit?
112 AC_CHECK_LIB(smi, smiInit,
115 # OK, we have libsmi with smiInit. Can we use it?
117 AC_MSG_CHECKING([whether to enable libsmi])
122 /* libsmi available check */
126 int current, revision, age, n;
127 const int required = 2;
130 if (strcmp(SMI_LIBRARY_VERSION, smi_library_version))
132 n = sscanf(smi_library_version, "%d:%d:%d", ¤t, &revision, &age);
135 if (required < current - age || required > current)
142 AC_DEFINE(USE_LIBSMI, 1,
143 [Define if you enable support for libsmi])
146 dnl autoconf documentation says that
147 dnl $? contains the exit value.
148 dnl reality is that it does not.
149 dnl We leave this in just in case
150 dnl autoconf ever comes back to
151 dnl match the documentation.
153 1) AC_MSG_RESULT(no - smiInit failed) ;;
154 2) AC_MSG_RESULT(no - header/library version mismatch) ;;
155 3) AC_MSG_RESULT(no - can't determine library version) ;;
156 4) AC_MSG_RESULT(no - too old) ;;
157 *) AC_MSG_RESULT(no) ;;
162 AC_MSG_RESULT(not when cross-compiling)
170 AC_MSG_CHECKING([whether to enable the possibly-buggy SMB printer])
172 [ --enable-smb enable possibly-buggy SMB printer [default=yes]
173 --disable-smb disable possibly-buggy SMB printer],,
176 yes) AC_MSG_RESULT(yes)
177 AC_WARN([The SMB printer may have exploitable buffer overflows!!!])
178 AC_DEFINE(ENABLE_SMB, 1,
179 [define if you want to build the possibly-buggy SMB printer])
180 LOCALSRC="print-smb.c smbutil.c $LOCALSRC"
186 AC_ARG_WITH(user, [ --with-user=USERNAME drop privileges by default to USERNAME])
187 AC_MSG_CHECKING([whether to drop root privileges by default])
188 if test ! -z "$with_user" ; then
189 AC_DEFINE_UNQUOTED(WITH_USER, "$withval",
190 [define if should drop privileges by default])
191 AC_MSG_RESULT(to \"$withval\")
196 AC_ARG_WITH(chroot, [ --with-chroot=DIRECTORY when dropping privileges, chroot to DIRECTORY])
197 AC_MSG_CHECKING([whether to chroot])
198 if test ! -z "$with_chroot" && test "$with_chroot" != "no" ; then
199 AC_DEFINE_UNQUOTED(WITH_CHROOT, "$withval",
200 [define if should chroot when dropping privileges])
201 AC_MSG_RESULT(to \"$withval\")
206 AC_ARG_WITH(sandbox-capsicum,
207 AS_HELP_STRING([--with-sandbox-capsicum],
208 [use Capsicum security functions @<:@default=yes, if available@:>@]))
210 # Check whether various functions are available. If any are, set
211 # ac_lbl_capsicum_function_seen to yes; if any are not, set
212 # ac_lbl_capsicum_function_not_seen to yes.
214 # We don't check cap_rights_init(), as it's a macro, wrapping another
215 # function, in at least some versions of FreeBSD, and AC_CHECK_FUNCS()
216 # doesn't handle that.
218 # All of the ones we check for must be available in order to enable
219 # capsicum sandboxing.
221 # XXX - do we need to check for all of them, or are there some that, if
222 # present, imply others are present?
224 if test ! -z "$with_sandbox-capsicum" && test "$with_sandbox-capsicum" != "no" ; then
225 AC_CHECK_FUNCS(cap_enter cap_rights_limit cap_ioctls_limit openat,
226 ac_lbl_capsicum_function_seen=yes,
227 ac_lbl_capsicum_function_not_seen=yes)
229 AC_MSG_CHECKING([whether to sandbox using capsicum])
230 if test "x$ac_lbl_capsicum_function_seen" = "xyes" -a "x$ac_lbl_capsicum_function_not_seen" != "xyes"; then
231 AC_DEFINE(HAVE_CAPSICUM, 1, [capsicum support available])
238 # We must check this before checking whether to check the OS's IPv6,
239 # support because, on some platforms (such as SunOS 5.x), the test
240 # program requires the extra networking libraries.
245 # Check whether AF_INET6 and struct in6_addr are defined.
246 # If they aren't both defined, we don't have sufficient OS
247 # support for IPv6, so we don't look for IPv6 support libraries,
248 # and we define AF_INET6 and struct in6_addr ourselves.
250 AC_MSG_CHECKING([whether the operating system supports IPv6])
255 /* AF_INET6 available check */
256 #include <sys/types.h>
257 #include <sys/socket.h>
258 #include <netinet/in.h>
261 foo(struct in6_addr *addr)
263 memset(addr, 0, sizeof (struct in6_addr));
266 #error "AF_INET6 not defined"
272 AC_DEFINE(HAVE_OS_IPV6_SUPPORT, 1,
273 [define if the OS provides AF_INET6 and struct in6_addr])
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
291 dnl http://www.kame.net/
293 [#include <netinet/in.h>
294 #ifdef IPV6_INRIA_VERSION
300 dnl http://www.kame.net/
302 [#include <netinet/in.h>
308 ipv6libdir=/usr/local/v6/lib;
312 dnl http://www.v6.linux.or.jp/
314 [#include <features.h>
315 #if defined(__GLIBC__) && __GLIBC__ >= 2 && __GLIBC_MINOR__ >= 1
321 dnl http://www.v6.linux.or.jp/
323 dnl This also matches Solaris 8 and Tru64 UNIX 5.1,
324 dnl and possibly other versions of those OSes
326 if test -d /usr/inet6 -o -f /usr/include/netinet/ip6.h; then
329 ipv6libdir=/usr/inet6/lib
331 CFLAGS="-I/usr/inet6/include $CFLAGS"
336 [#include <sys/param.h>
337 #ifdef _TOSHIBA_INET6
342 ipv6libdir=/usr/local/v6/lib])
346 [#include </usr/local/v6/include/sys/v6config.h>
352 ipv6libdir=/usr/local/v6/lib;
353 CFLAGS="-I/usr/local/v6/include $CFLAGS"])
357 [#include <sys/param.h>
358 #ifdef _ZETA_MINAMI_INET6
363 ipv6libdir=/usr/local/v6/lib])
366 if test "$ipv6type" != "unknown"; then
370 AC_MSG_RESULT($ipv6type)
373 if test "$ipv6" = "yes" -a "$ipv6lib" != "none"; then
374 if test -d $ipv6libdir -a -f $ipv6libdir/lib$ipv6lib.a; then
375 LIBS="-L$ipv6libdir -l$ipv6lib $LIBS"
376 echo "You have $ipv6lib library, using it"
378 if test "$ipv6trylibc" = "yes"; then
379 echo "You do not have $ipv6lib library, using libc"
381 echo 'Fatal: no $ipv6lib library found. cannot continue.'
382 echo "You need to fetch lib$ipv6lib.a from appropriate"
383 echo 'ipv6 kit and compile beforehand.'
389 AC_CACHE_CHECK([for dnet_htoa declaration in netdnet/dnetdb.h],
390 [td_cv_decl_netdnet_dnetdb_h_dnet_htoa],
391 [AC_EGREP_HEADER(dnet_htoa, netdnet/dnetdb.h,
392 td_cv_decl_netdnet_dnetdb_h_dnet_htoa=yes,
393 td_cv_decl_netdnet_dnetdb_h_dnet_htoa=no)])
394 if test "$td_cv_decl_netdnet_dnetdb_h_dnet_htoa" = yes; then
395 AC_DEFINE(HAVE_NETDNET_DNETDB_H_DNET_HTOA, 1,
396 [define if you have a dnet_htoa declaration in <netdnet/dnetdb.h>])
399 AC_REPLACE_FUNCS(vfprintf strlcat strlcpy strdup strsep getopt_long)
400 AC_CHECK_FUNCS(fork vfork strftime)
401 AC_CHECK_FUNCS(setlinebuf alarm)
404 AC_CHECK_FUNCS(vsnprintf snprintf,,
406 if test $needsnprintf = yes; then
412 AC_SEARCH_LIBS(dnet_htoa, dnet,
413 AC_DEFINE(HAVE_DNET_HTOA, 1, [define if you have the dnet_htoa function]))
415 AC_CHECK_LIB(rpc, main) dnl It's unclear why we might need -lrpc
417 dnl Some platforms may need -lnsl for getrpcbynumber.
418 AC_SEARCH_LIBS(getrpcbynumber, nsl,
419 AC_DEFINE(HAVE_GETRPCBYNUMBER, 1, [define if you have getrpcbynumber()]))
421 AC_LBL_LIBPCAP(V_PCAPDEP, V_INCLS)
424 # Check for these after AC_LBL_LIBPCAP, so we link with the appropriate
425 # libraries (e.g., "-lsocket -lnsl" on Solaris).
427 # You are in a twisty little maze of UN*Xes, all different.
428 # Some might not have ether_ntohost().
429 # Some might have it, but not declare it in any header file.
430 # Some might have it, but declare it in <netinet/if_ether.h>.
431 # Some might have it, but declare it in <netinet/ether.h>
432 # (And some might have it but document it as something declared in
433 # <netinet/ethernet.h>, although <netinet/if_ether.h> appears to work.)
435 # Before you is a C compiler.
437 AC_CHECK_FUNCS(ether_ntohost, [
438 AC_CACHE_CHECK(for buggy ether_ntohost, ac_cv_buggy_ether_ntohost, [
441 #include <sys/types.h>
442 #include <sys/param.h>
443 #include <sys/socket.h>
446 main(int argc, char **argv)
448 u_char ea[6] = { 0xff, 0xff, 0xff, 0xff, 0xff };
449 char name[MAXHOSTNAMELEN];
451 ether_ntohost(name, (struct ether_addr *)ea);
454 ], [ac_cv_buggy_ether_ntohost=no],
455 [ac_cv_buggy_ether_ntohost=yes],
456 [ac_cv_buggy_ether_ntohost="not while cross-compiling"])])
457 if test "$ac_cv_buggy_ether_ntohost" = "no"; then
458 AC_DEFINE(USE_ETHER_NTOHOST, 1,
459 [define if you have ether_ntohost() and it works])
462 if test "$ac_cv_func_ether_ntohost" = yes -a \
463 "$ac_cv_buggy_ether_ntohost" = "no"; then
465 # OK, we have ether_ntohost(). Do we have <netinet/if_ether.h>?
467 if test "$ac_cv_header_netinet_if_ether_h" = yes; then
469 # Yes. Does it declare ether_ntohost()?
471 AC_CHECK_DECL(ether_ntohost,
473 AC_DEFINE(NETINET_IF_ETHER_H_DECLARES_ETHER_NTOHOST,,
474 [Define to 1 if netinet/if_ether.h declares `ether_ntohost'])
477 #include <sys/types.h>
478 #include <sys/socket.h>
479 #include <netinet/in.h>
480 #include <arpa/inet.h>
484 #include <netinet/if_ether.h>
490 if test "$ac_cv_have_decl_ether_ntohost" != yes; then
492 # No, how about <netinet/ether.h>, as on Linux?
494 AC_CHECK_HEADERS(netinet/ether.h)
495 if test "$ac_cv_header_netinet_ether_h" = yes; then
497 # We have it - does it declare ether_ntohost()?
498 # Unset ac_cv_have_decl_ether_ntohost so we don't
499 # treat the previous failure as a cached value and
500 # suppress the next test.
502 unset ac_cv_have_decl_ether_ntohost
503 AC_CHECK_DECL(ether_ntohost,
505 AC_DEFINE(NETINET_ETHER_H_DECLARES_ETHER_NTOHOST,,
506 [Define to 1 if netinet/ether.h declares `ether_ntohost'])
509 #include <netinet/ether.h>
514 # Is ether_ntohost() declared?
516 if test "$ac_cv_have_decl_ether_ntohost" != yes; then
518 # No, we'll have to declare it ourselves.
519 # Do we have "struct ether_addr"?
521 AC_CHECK_TYPES(struct ether_addr,,,
523 #include <sys/types.h>
524 #include <sys/socket.h>
525 #include <netinet/in.h>
526 #include <arpa/inet.h>
530 #include <netinet/if_ether.h>
532 AC_DEFINE(HAVE_DECL_ETHER_NTOHOST, 0,
533 [Define to 1 if you have the declaration of `ether_ntohost', and to 0 if you
536 AC_DEFINE(HAVE_DECL_ETHER_NTOHOST, 1,
537 [Define to 1 if you have the declaration of `ether_ntohost', and to 0 if you
542 # libdlpi is needed for Solaris 11 and later.
543 AC_CHECK_LIB(dlpi, dlpi_walk, LIBS="$LIBS -ldlpi" LDFLAGS="-L/lib $LDFLAGS", ,-L/lib)
546 dnl Check for "pcap_list_datalinks()", "pcap_set_datalink()",
547 dnl and "pcap_datalink_name_to_val()", and use substitute versions
548 dnl if they're not present.
550 AC_CHECK_FUNC(pcap_list_datalinks,
552 AC_DEFINE(HAVE_PCAP_LIST_DATALINKS, 1,
553 [define if libpcap has pcap_list_datalinks()])
554 AC_CHECK_FUNCS(pcap_free_datalinks)
559 AC_CHECK_FUNCS(pcap_set_datalink)
560 AC_CHECK_FUNC(pcap_datalink_name_to_val,
562 AC_DEFINE(HAVE_PCAP_DATALINK_NAME_TO_VAL, 1,
563 [define if libpcap has pcap_datalink_name_to_val()])
564 AC_CHECK_FUNC(pcap_datalink_val_to_description,
565 AC_DEFINE(HAVE_PCAP_DATALINK_VAL_TO_DESCRIPTION, 1,
566 [define if libpcap has pcap_datalink_val_to_description()]),
576 dnl Check for "pcap_breakloop()"; you can't substitute for it if
577 dnl it's absent (it has hooks into the live capture routines),
578 dnl so just define the HAVE_ value if it's there.
580 AC_CHECK_FUNCS(pcap_breakloop)
583 dnl Check for "pcap_dump_ftell()" and use a substitute version
584 dnl if it's not present.
586 AC_CHECK_FUNC(pcap_dump_ftell,
587 AC_DEFINE(HAVE_PCAP_DUMP_FTELL, 1,
588 [define if libpcap has pcap_dump_ftell()]),
590 AC_LIBOBJ(pcap_dump_ftell)
594 # Do we have the new open API? Check for pcap_create, and assume that,
595 # if we do, we also have pcap_activate() and the other new routines
596 # introduced in libpcap 1.0.0.
598 AC_CHECK_FUNCS(pcap_create)
599 if test $ac_cv_func_pcap_create = "yes" ; then
601 # OK, do we have pcap_set_tstamp_type? If so, assume we have
602 # pcap_list_tstamp_types and pcap_free_tstamp_types as well.
604 AC_CHECK_FUNCS(pcap_set_tstamp_type)
606 # And do we have pcap_set_tstamp_precision? If so, we assume
607 # we also have pcap_open_offline_with_tstamp_precision.
609 AC_CHECK_FUNCS(pcap_set_tstamp_precision)
613 # Check for a miscellaneous collection of functions which we use
616 AC_CHECK_FUNCS(pcap_findalldevs pcap_dump_flush pcap_lib_version pcap_setdirection pcap_set_immediate_mode)
617 if test $ac_cv_func_pcap_findalldevs = "yes" ; then
618 dnl Check for Mac OS X, which may ship pcap.h from 0.6 but libpcap may
619 dnl be 0.8; this means that lib has pcap_findalldevs but header doesn't
621 savedcppflags="$CPPFLAGS"
622 CPPFLAGS="$CPPFLAGS $V_INCLS"
623 AC_CHECK_TYPES(pcap_if_t, , , [#include <pcap.h>])
624 CPPFLAGS="$savedcppflags"
627 if test $ac_cv_func_pcap_lib_version = "no" ; then
628 AC_MSG_CHECKING(whether pcap_version is defined by libpcap)
631 extern char pcap_version[];
633 return (int)pcap_version;
635 ac_lbl_cv_pcap_version_defined=yes,
636 ac_lbl_cv_pcap_version_defined=no)
637 if test "$ac_lbl_cv_pcap_version_defined" = yes ; then
639 AC_DEFINE(HAVE_PCAP_VERSION, 1, [define if libpcap has pcap_version])
646 # Check for special debugging functions
648 AC_CHECK_FUNCS(pcap_set_parser_debug)
649 if test "$ac_cv_func_pcap_set_parser_debug" = "no" ; then
651 # OK, we don't have pcap_set_parser_debug() to set the libpcap
652 # filter expression parser debug flag; can we directly set the
654 AC_MSG_CHECKING(whether pcap_debug is defined by libpcap)
657 extern int pcap_debug;
661 ac_lbl_cv_pcap_debug_defined=yes,
662 ac_lbl_cv_pcap_debug_defined=no)
663 if test "$ac_lbl_cv_pcap_debug_defined" = yes ; then
665 AC_DEFINE(HAVE_PCAP_DEBUG, 1, [define if libpcap has pcap_debug])
669 # OK, what about "yydebug"?
671 AC_MSG_CHECKING(whether yydebug is defined by libpcap)
678 ac_lbl_cv_yydebug_defined=yes,
679 ac_lbl_cv_yydebug_defined=no)
680 if test "$ac_lbl_cv_yydebug_defined" = yes ; then
682 AC_DEFINE(HAVE_YYDEBUG, 1, [define if libpcap has yydebug])
688 AC_CHECK_FUNCS(pcap_set_optimizer_debug)
689 AC_REPLACE_FUNCS(bpf_dump) dnl moved to libpcap in 0.6
692 if test -f /etc/group -a ! -z "`grep '^wheel:' /etc/group`" ; then
696 # Assume V7/BSD convention for man pages (file formats in section 5,
697 # miscellaneous info in section 7).
704 dnl Workaround to enable certain features
705 AC_DEFINE(_SUN,1,[define on AIX to get certain functions])
710 # Use System V conventions for man pages.
720 # Use System V conventions for man pages.
730 # Use System V conventions for man pages.
740 # Use System V conventions for man pages.
747 if test -f /dev/bpf0 ; then
752 # Make sure we have definitions for all the C99 specified-width types
753 # (regardless of whether the environment is a C99 environment or not).
765 # Make sure we have a definition for C99's uintptr_t (regardless of
766 # whether the environment is a C99 environment or not).
771 # Define the old BSD specified-width types in terms of the C99 types;
772 # we may need them with libpcap include files.
774 AC_CHECK_TYPE([u_int8_t], ,
775 [AC_DEFINE([u_int8_t], [uint8_t],
776 [Define to `uint8_t' if u_int8_t not defined.])],
778 #include <sys/types.h>
780 AC_CHECK_TYPE([u_int16_t], ,
781 [AC_DEFINE([u_int16_t], [uint16_t],
782 [Define to `uint16_t' if u_int16_t not defined.])],
784 #include <sys/types.h>
786 AC_CHECK_TYPE([u_int32_t], ,
787 [AC_DEFINE([u_int32_t], [uint32_t],
788 [Define to `uint32_t' if u_int32_t not defined.])],
790 #include <sys/types.h>
792 AC_CHECK_TYPE([u_int64_t], ,
793 [AC_DEFINE([u_int64_t], [uint64_t],
794 [Define to `uint64_t' if u_int64_t not defined.])],
796 #include <sys/types.h>
800 # Check for <inttypes.h>
802 AC_CHECK_HEADERS(inttypes.h,
805 # OK, we have inttypes.h, but does it define all the PRI[doxu]64 macros?
806 # Some systems have an inttypes.h that doesn't define all of them.
808 AC_MSG_CHECKING([[whether inttypes.h defines the PRI[doxu]64 macros]])
813 #include <inttypes.h>
815 #include <sys/types.h>
819 printf("%" PRId64 "\n", (uint64_t)1);
820 printf("%" PRIo64 "\n", (uint64_t)1);
821 printf("%" PRIx64 "\n", (uint64_t)1);
822 printf("%" PRIu64 "\n", (uint64_t)1);
828 ac_lbl_inttypes_h_defines_formats=yes
832 ac_lbl_inttypes_h_defines_formats=no
837 # We don't have inttypes.h, so it obviously can't define those
840 ac_lbl_inttypes_h_defines_formats=no
842 if test "$ac_lbl_inttypes_h_defines_formats" = no; then
843 AC_LBL_CHECK_64BIT_FORMAT(l,
845 AC_LBL_CHECK_64BIT_FORMAT(ll,
847 AC_LBL_CHECK_64BIT_FORMAT(L,
849 AC_LBL_CHECK_64BIT_FORMAT(q,
851 AC_MSG_ERROR([neither %llx nor %Lx nor %qx worked on a 64-bit integer])
859 # Check for some headers introduced in later versions of libpcap
860 # and used by some printers.
862 # Those headers use the {u_}intN_t types, so we must do this after
863 # we check for what's needed to get them defined.
865 savedcppflags="$CPPFLAGS"
866 CPPFLAGS="$CPPFLAGS $V_INCLS"
867 AC_CHECK_HEADERS(pcap/bluetooth.h,,,[#include "netdissect-stdinc.h"])
868 AC_CHECK_HEADERS(pcap/nflog.h,,,[#include "netdissect-stdinc.h"])
869 AC_CHECK_HEADERS(pcap/usb.h,,,[#include "netdissect-stdinc.h"])
870 CPPFLAGS="$savedcppflags"
873 AC_CHECK_TOOL([AR], [ar])
875 AC_LBL_DEVEL(V_CCOPT)
877 AC_LBL_SOCKADDR_SA_LEN
879 AC_LBL_UNALIGNED_ACCESS
881 # Check for OpenSSL/libressl libcrypto
882 AC_MSG_CHECKING(whether to use OpenSSL/libressl libcrypto)
883 # Specify location for both includes and libraries.
884 want_libcrypto=ifavailable
886 AS_HELP_STRING([--with-crypto]@<:@=DIR@:>@,
887 [use OpenSSL/libressl libcrypto (located in directory DIR, if specified) @<:@default=yes, if available@:>@]),
889 if test $withval = no
891 # User doesn't want to link with libcrypto.
894 elif test $withval = yes
896 # User wants to link with libcrypto but hasn't specified
901 # User wants to link with libcrypto and has specified
902 # a directory, so use the provided value.
904 libcrypto_root=$withval
905 AC_MSG_RESULT([yes, using the version installed in $withval])
908 # Put the subdirectories of the libcrypto root directory
909 # at the front of the header and library search path.
911 CFLAGS="-I$withval/include $CFLAGS"
912 LIBS="-L$withval/lib $LIBS"
916 # Use libcrypto if it's present, otherwise don't; no directory
919 want_libcrypto=ifavailable
920 AC_MSG_RESULT([yes, if available])
922 if test "$want_libcrypto" != "no"; then
924 # Don't check for libcrypto unless we have its headers;
925 # Apple, bless their pointy little heads, apparently ship
926 # libcrypto as a library, but not the header files, in
927 # El Capitan, probably because they don't want you writing
928 # nasty portable code that could run on other UN*Xes, they
929 # want you writing code that uses their Shiny New Crypto
930 # Library and that only runs on OS X.
932 AC_CHECK_HEADER(openssl/crypto.h,
934 AC_CHECK_LIB(crypto, DES_cbc_encrypt)
935 if test "$ac_cv_lib_crypto_DES_cbc_encrypt" = "yes"; then
936 AC_CHECK_HEADERS(openssl/evp.h)
938 # OK, do we have EVP_CIPHER_CTX_new?
939 # If so, we use it to allocate an
940 # EVP_CIPHER_CTX, as EVP_CIPHER_CTX may be
941 # opaque; otherwise, we allocate it ourselves.
943 AC_CHECK_FUNCS(EVP_CIPHER_CTX_new)
948 # Check for libcap-ng
949 AC_MSG_CHECKING(whether to use libcap-ng)
950 # Specify location for both includes and libraries.
951 want_libcap_ng=ifavailable
953 AS_HELP_STRING([--with-cap-ng],
954 [use libcap-ng @<:@default=yes, if available@:>@]),
956 if test $withval = no
960 elif test $withval = yes
967 # Use libcap-ng if it's present, otherwise don't.
969 want_libcap_ng=ifavailable
970 AC_MSG_RESULT([yes, if available])
972 if test "$want_libcap_ng" != "no"; then
973 AC_CHECK_LIB(cap-ng, capng_change_id)
974 AC_CHECK_HEADERS(cap-ng.h)
978 dnl set additional include path if necessary
979 if test "$missing_includes" = "yes"; then
980 CPPFLAGS="$CPPFLAGS -I$srcdir/missing"
981 V_INCLS="$V_INCLS -I$srcdir/missing"
990 AC_SUBST(MAN_FILE_FORMATS)
991 AC_SUBST(MAN_MISC_INFO)
995 AC_CONFIG_HEADER(config.h)
997 AC_OUTPUT_COMMANDS([if test -f .devel; then
998 echo timestamp > stamp-h
999 cat Makefile-devel-adds >> Makefile
1002 AC_OUTPUT(Makefile tcpdump.1)