diff options
-rw-r--r-- | CMakeLists.txt | 618 | ||||
-rw-r--r-- | Makefile.in | 4 | ||||
-rw-r--r-- | cmake/Modules/FindPCAP.cmake | 21 | ||||
-rw-r--r-- | cmake/Modules/FindSMI.cmake | 21 | ||||
-rw-r--r-- | cmakeconfig.h.in | 325 |
5 files changed, 989 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 00000000..7c430f13 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,618 @@ +cmake_minimum_required(VERSION 2.8.6) + +set(CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/cmake/Modules) + +project(tcpdump) +set(LIBRARY_NAME netdissect) + +################################################################### +# Parameters +################################################################### + +option(WITH_SMI "Build with libsmi, if available" ON) + +# +# By default, build universal with the appropriate set of architectures +# for the OS on which we're doing the build. +# +if(APPLE AND "${CMAKE_OSX_ARCHITECTURES}" STREQUAL "") + # + # Get the major version of Darwin. + # + string(REGEX MATCH "^([0-9]+)" SYSTEM_VERSION_MAJOR "${CMAKE_SYSTEM_VERSION}") + + if(SYSTEM_VERSION_MAJOR EQUAL 9) + # + # Leopard. Build for x86 and 32-bit PowerPC, with + # x86 first. (That's what Apple does.) + # + set(CMAKE_OSX_ARCHITECTURES "i386;ppc") + elseif(SYSTEM_VERSION_MAJOR EQUAL 10) + # + # Snow Leopard. Build for x86-64 and x86, with + # x86-64 first. (That's what Apple does.) + # + set(CMAKE_OSX_ARCHITECTURES "x86_64;i386") + endif() +endif() + +################################################################### +# Versioning +################################################################### + +# Get, parse, format and set tcpdump's version string from +# [tcpdump_root]/VERSION for later use. + +# Get MAJOR, MINOR, PATCH & SUFFIX +file(STRINGS ${tcpdump_SOURCE_DIR}/VERSION + PACKAGE_VERSION + LIMIT_COUNT 1 # Read only the first line +) + +###################################### +# Project settings +###################################### + +add_definitions(-DHAVE_CONFIG_H) + +include_directories( + ${CMAKE_CURRENT_BINARY_DIR} + ${tcpdump_SOURCE_DIR} +) + +if(MSVC) + add_definitions(-D__STDC__) + add_definitions(-D_CRT_SECURE_NO_WARNINGS) + add_definitions("-D_U_=") +elseif(CMAKE_COMPILER_IS_GNUCXX) + add_definitions("-D_U_=__attribute__((unused))") +else(MSVC) + add_definitions("-D_U_=") +endif(MSVC) + +if(MSVC) + if (USE_STATIC_RT) + MESSAGE(STATUS "Use STATIC runtime") + set(NAME_RT MT) + set (CMAKE_CXX_FLAGS_MINSIZEREL "${CMAKE_CXX_FLAGS_MINSIZEREL} /MT") + set (CMAKE_CXX_FLAGS_RELWITHDEBINFO "${CMAKE_CXX_FLAGS_RELWITHDEBINFO} /MT") + set (CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} /MT") + set (CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} /MTd") + + set (CMAKE_C_FLAGS_MINSIZEREL "${CMAKE_C_FLAGS_MINSIZEREL} /MT") + set (CMAKE_C_FLAGS_RELWITHDEBINFO "${CMAKE_C_FLAGS_RELWITHDEBINFO} /MT") + set (CMAKE_C_FLAGS_RELEASE "${CMAKE_C_FLAGS_RELEASE} /MT") + set (CMAKE_C_FLAGS_DEBUG "${CMAKE_C_FLAGS_DEBUG} /MTd") + else (USE_STATIC_RT) + MESSAGE(STATUS "Use DYNAMIC runtime") + set(NAME_RT MD) + set (CMAKE_CXX_FLAGS_MINSIZEREL "${CMAKE_CXX_FLAGS_MINSIZEREL} /MD") + set (CMAKE_CXX_FLAGS_RELWITHDEBINFO "${CMAKE_CXX_FLAGS_RELWITHDEBINFO} /MD") + set (CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} /MD") + set (CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} /MDd") + + set (CMAKE_C_FLAGS_MINSIZEREL "${CMAKE_C_FLAGS_MINSIZEREL} /MD") + set (CMAKE_C_FLAGS_RELWITHDEBINFO "${CMAKE_C_FLAGS_RELWITHDEBINFO} /MD") + set (CMAKE_C_FLAGS_RELEASE "${CMAKE_C_FLAGS_RELEASE} /MD") + set (CMAKE_C_FLAGS_DEBUG "${CMAKE_C_FLAGS_DEBUG} /MDd") + endif (USE_STATIC_RT) +endif(MSVC) + +################################################################### +# Detect available platform features +################################################################### + +include(CMakePushCheckState) +include(CheckIncludeFile) +include(CheckIncludeFiles) +include(CheckFunctionExists) +include(CheckSymbolExists) +include(CheckStructHasMember) +include(CheckTypeSize) + +# +# Header files. +# +check_include_file(fcntl.h HAVE_FCNTL_H) +check_include_file(rpc/rpc.h HAVE_RPC_RPC_H) +check_include_file(rpc/rpcent.h HAVE_RPC_RPCENT_H) +check_include_file(netdnet/dnetdb.h HAVE_NETDNET_DNETDB_H) +check_include_files("sys/types.h sys/socket.h net/if.h net/pfvar.h" + HAVE_NET_PFVAR_H) +if(HAVE_NET_PFVAR_H) + check_include_files("sys/types.h sys/socket.h net/if.h net/pfvar.h net/if_pflog.h" + HAVE_NET_IF_PFLOG_H) + if(HAVE_NET_IF_PFLOG_H) + set(LOCALSRC print-pflog.c ${LOCALSRC}) + endif(HAVE_NET_IF_PFLOG_H) +endif(HAVE_NET_PFVAR_H) +check_include_file(netinet/if_ether.h HAVE_NETINET_IF_ETHER_H) + +# +# You are in a twisty little maze of UN*Xes, all different. +# Some might not have ether_ntohost(). +# Some might have it and declare it in <net/ethernet.h>. +# Some might have it and declare it in <netinet/ether.h> +# Some might have it and declare it in <sys/ethernet.h>. +# Some might have it and declare it in <arpa/inet.h>. +# Some might have it and declare it in <netinet/if_ether.h>. +# Some might have it and not declare it in any header file. +# +# Before you is a C compiler. +# +check_function_exists(ether_ntohost HAVE_ETHER_NTOHOST) +if(HAVE_ETHER_NTOHOST) + # + # OK, we have ether_ntohost(). Is it declared in <net/ethernet.h>? + # + # This test fails if we don't have <net/ethernet.h> or if we do + # but it doesn't declare ether_ntohost(). + # + check_symbol_exists(ether_ntohost net/ethernet.h NET_ETHERNET_H_DECLARES_ETHER_NTOHOST) + if(NET_ETHERNET_H_DECLARES_ETHER_NTOHOST) + # + # Yes - we have it declared. + # + set(HAVE_DECL_ETHER_NTOHOST TRUE) + endif() + # + # Did that succeed? + # + if(NOT HAVE_DECL_ETHER_NTOHOST) + # + # No - how about <netinet/ether.h>, as on Linux? + # + # This test fails if we don't have <netinet/ether.h> + # or if we do but it doesn't declare ether_ntohost(). + # + check_symbol_exists(ether_ntohost netinet/ether.h NETINET_ETHER_H_DECLARES_ETHER_NTOHOST) + if(NETINET_ETHER_H_DECLARES_ETHER_NTOHOST) + # + # Yes - we have it declared. + # + set(HAVE_DECL_ETHER_NTOHOST TRUE) + endif() + endif() + # + # Did that succeed? + # + if(NOT HAVE_DECL_ETHER_NTOHOST) + # + # No - how about <sys/ethernet.h>, as on Solaris 10 and later? + # + # This test fails if we don't have <sys/ethernet.h> + # or if we do but it doesn't declare ether_ntohost(). + # + check_symbol_exists(ether_ntohost sys/ethernet.h SYS_ETHERNET_H_DECLARES_ETHER_NTOHOST) + if(SYS_ETHERNET_H_DECLARES_ETHER_NTOHOST) + # + # Yes - we have it declared. + # + set(HAVE_DECL_ETHER_NTOHOST TRUE) + endif() + endif() + # + # Did that succeed? + # + if(NOT HAVE_DECL_ETHER_NTOHOST) + # + # No, how about <arpa/inet.h>, as on AIX? + # + # This test fails if we don't have <arpa/inet.h> + # or if we do but it doesn't declare ether_ntohost(). + # + check_symbol_exists(ether_ntohost arpa/inet.h ARPA_INET_H_DECLARES_ETHER_NTOHOST) + if(ARPA_INET_H_DECLARES_ETHER_NTOHOST) + # + # Yes - we have it declared. + # + set(HAVE_DECL_ETHER_NTOHOST TRUE) + endif() + endif() + # + # Did that succeed? + # + if(NOT HAVE_DECL_ETHER_NTOHOST) + # + # No, how about <netinet/if_ether.h>? + # On some platforms, it requires <net/if.h> and + # <netinet/in.h>, and we always include it with + # both of them, so test it with both of them. + # + # This test fails if we don't have <netinet/if_ether.h> + # and the headers we include before it, or if we do but + # <netinet/if_ether.h> doesn't declare ether_ntohost(). + # + check_symbol_exists(ether_ntohost "sys/types.h;sys/socket.h;net/if.h;netinet/in.h;netinet/if_ether.h" NETINET_IF_ETHER_H_DECLARES_ETHER_NTOHOST) + if(NETINET_IF_ETHER_H_DECLARES_ETHER_NTOHOST) + # + # Yes - we have it declared. + # + set(HAVE_DECL_ETHER_NTOHOST TRUE) + endif() + endif() + # + # After all that, is ether_ntohost() declared? + # + if(NOT HAVE_DECL_ETHER_NTOHOST) + # + # No, we'll have to declare it ourselves. + # Do we have "struct ether_addr" if we include<netinet/if_ether.h>? + # + check_struct_has_member("struct ether_addr" octet "sys/types.h;sys/socket.h;net/if.h;netinet/in.h;netinet/if_ether.h" HAVE_STRUCT_ETHER_ADDR) + endif() +endif() + +# +# As the autoconf manual says, AC_HEADER_TIME is obsolete, as all UN*Xes +# let you include both time.h and sys/time.h, so just say we can. +# +check_include_file(bitypes.h HAVE_SYS_BITYPES_H) +check_include_file(limits.h HAVE_LIMITS_H) + +# +# Functions. +# XXX TODO - all from vfprintf to getopt_long have replacements +# +check_function_exists(vfprintf HAVE_VFPRINTF) +check_function_exists(strlcat HAVE_STRLCAT) +check_function_exists(strlcpy HAVE_STRLCPY) +check_function_exists(strdup HAVE_STRDUP) +check_function_exists(strsep HAVE_STRSEP) +check_function_exists(getservent HAVE_GETSERVENT) +check_function_exists(getopt_long HAVE_GETOPT_LONG) +check_function_exists(vsnprintf HAVE_VSNPRINTF) +check_function_exists(snprintf HAVE_SNPRINTF) +check_function_exists(fork HAVE_FORK) +check_function_exists(vfork HAVE_VFORK) +check_function_exists(strftime HAVE_STRFTIME) +check_function_exists(setlinebuf HAVE_SETLINEBUF) + +# +# Data types. +# +# XXX - there's no check_struct() macro that's like check_struct_has_member() +# except that it only checks for the existence of the structure type, +# so we use check_struct_has_member() and look for ss_family. +# +check_struct_has_member("struct sockaddr_storage" ss_family sys/socket.h HAVE_SOCKADDR_STORAGE) +set(CMAKE_EXTRA_INCLUDE_FILES unistd.h sys/socket.h) +check_type_size("socklen_t" SOCKLEN_T) +set(CMAKE_EXTRA_INCLUDE_FILES unistd.h) + +# +# Structure fields. +# +check_struct_has_member("struct sockaddr" sa_len sys/socket.h HAVE_SOCKADDR_SA_LEN) + +###################################### +# External dependencies +###################################### + +# +# libsmi. +# +if(WITH_SMI) + find_package(SMI) + if(SMI_FOUND) + set(USE_LIBSMI ON) + endif(SMI_FOUND) +endif(WITH_SMI) + +# +# libpcap/WinPcap. +# First find it, then check for functions in it. +# +find_package(PCAP REQUIRED) + +# +# Check for various functions in libpcap/WinPcap. +# +include_directories(${PCAP_INCLUDE_DIR}) +cmake_push_check_state() +set(CMAKE_REQUIRED_LIBRARIES ${PCAP_LIBRARY}) + +check_function_exists(pcap_list_datalinks HAVE_PCAP_LIST_DATALINKS) +if(HAVE_PCAP_LIST_DATALINKS) + check_function_exists(pcap_free_datalinks HAVE_PCAP_FREE_DATALINKS) +else(HAVE_PCAP_LIST_DATALINKS) + # XXX TODO - get our version of pcap_list_datalinks() and pcap_free_datalinks +endif(HAVE_PCAP_LIST_DATALINKS) +check_function_exists(pcap_set_datalink HAVE_PCAP_SET_DATALINK) +check_function_exists(pcap_datalink_name_to_val HAVE_PCAP_DATALINK_NAME_TO_VAL) +if(HAVE_PCAP_DATALINK_NAME_TO_VAL) + check_function_exists(pcap_datalink_val_to_description HAVE_PCAP_DATALINK_VAL_TO_DESCRIPTION) + if(NOT HAVE_PCAP_DATALINK_VAL_TO_DESCRIPTION) + # XXX TODO - get our version of pcap_datalink_val_to_description() + endif(NOT HAVE_PCAP_DATALINK_VAL_TO_DESCRIPTION) +else(HAVE_PCAP_DATALINK_NAME_TO_VAL) + # XXX TODO - get our version of pcap_datalink_name_to_val() etc. +endif(HAVE_PCAP_DATALINK_NAME_TO_VAL) + +# +# Check for "pcap_breakloop()"; you can't substitute for it if +# it's absent (it has hooks into the live capture routines), +# so just define the HAVE_ value if it's there. +# +check_function_exists(pcap_breakloop HAVE_PCAP_BREAKLOOP) + +# +# Check for "pcap_dump_ftell()" and use a substitute version +# if it's not present. +# +check_function_exists(pcap_dump_ftell HAVE_PCAP_DUMPFTELL) +if(NOT HAVE_PCAP_DUMPFTELL) + # XXX TODO - get our version of pcap_dump_ftell() +endif(NOT HAVE_PCAP_DUMPFTELL) + +# +# Do we have the new open API? Check for pcap_create, and assume that, +# if we do, we also have pcap_activate() and the other new routines +# introduced in libpcap 1.0.0. +# +check_function_exists(pcap_create HAVE_PCAP_CREATE) +if(HAVE_PCAP_CREATE) + # + # OK, do we have pcap_set_tstamp_type? If so, assume we have + # pcap_list_tstamp_types and pcap_free_tstamp_types as well. + # + check_function_exists(pcap_set_tstamp_type HAVE_PCAP_SET_TSTAMP_TYPE) + + # + # And do we have pcap_set_tstamp_precision? If so, we assume + # we also have pcap_open_offline_with_tstamp_precision. + # + check_function_exists(pcap_set_tstamp_precision HAVE_PCAP_SET_TSTAMP_PRECISION) +endif(HAVE_PCAP_CREATE) + +# +# Check for a miscellaneous collection of functions which we use +# if we have them. +# +check_function_exists(pcap_findalldevs HAVE_PCAP_FINDALLDEVS) +if(HAVE_PCAP_FINDALLDEVS) + # + # Check for libpcap having pcap_findalldevs() but the pcap.h header + # not having pcap_if_t; some versions of Mac OS X shipped with pcap.h + # from 0.6 and libpcap 0.8, so that libpcap had pcap_findalldevs but + # pcap.h didn't have pcap_if_t. + # + cmake_push_check_state() + set(CMAKE_EXTRA_INCLUDE_FILES pcap.h) + check_type_size(pcap_if_t PCAP_IF_T) + cmake_pop_check_state() +endif(HAVE_PCAP_FINDALLDEVS) +check_function_exists(pcap_dump_flush HAVE_PCAP_DUMP_FLUSH) +check_function_exists(pcap_lib_version HAVE_PCAP_LIB_VERSION) +if(NOT HAVE_PCAP_LIB_VERSION) + # Check for the pcap_version string variable and set HAVE_PCAP_VERSION +endif(NOT HAVE_PCAP_LIB_VERSION) +check_function_exists(pcap_setdirection HAVE_PCAP_SETDIRECTION) +check_function_exists(pcap_set_immediate_mode HAVE_PCAP_SET_IMMEDIATE_MODE) +check_function_exists(pcap_dump_ftell64 HAVE_PCAP_DUMP_FTELL64) +check_function_exists(pcap_open HAVE_PCAP_OPEN) +check_function_exists(pcap_findalldevs_ex HAVE_PCAP_FINDALLDEVS_EX) + +# +# Check for special debugging functions +# +check_function_exists(pcap_set_parser_debug HAVE_PCAP_SET_PARSER_DEBUG) +if(NOT HAVE_PCAP_SET_PARSER_DEBUG) + # Check whether libpcap defines pcap_debug or yydebug +endif(NOT HAVE_PCAP_SET_PARSER_DEBUG) + +check_function_exists(pcap_set_optimizer_debug HAVE_PCAP_SET_OPTIMIZER_DEBUG) + +cmake_pop_check_state() + +###################################### +# Input files +###################################### + +set(NETDISSECT_SOURCE_LIST_C + addrtoname.c + addrtostr.c + af.c + ascii_strcasecmp.c + checksum.c + cpack.c + gmpls.c + gmt2local.c + in_cksum.c + ipproto.c + l2vpn.c + machdep.c + nlpid.c + oui.c + parsenfsfh.c + print.c + print-802_11.c + print-802_15_4.c + print-ah.c + print-ahcp.c + print-aodv.c + print-aoe.c + print-ap1394.c + print-arcnet.c + print-arp.c + print-ascii.c + print-atalk.c + print-atm.c + print-babel.c + print-beep.c + print-bfd.c + print-bgp.c + print-bootp.c + print-bt.c + print-calm-fast.c + print-carp.c + print-cdp.c + print-cfm.c + print-chdlc.c + print-cip.c + print-cnfp.c + print-dccp.c + print-decnet.c + print-dhcp6.c + print-domain.c + print-dtp.c + print-dvmrp.c + print-eap.c + print-egp.c + print-eigrp.c + print-enc.c + print-esp.c + print-ether.c + print-fddi.c + print-forces.c + print-fr.c + print-frag6.c + print-ftp.c + print-geneve.c + print-geonet.c + print-gre.c + print-hncp.c + print-hsrp.c + print-http.c + print-icmp.c + print-icmp6.c + print-igmp.c + print-igrp.c + print-ip.c + print-ip6.c + print-ip6opts.c + print-ipcomp.c + print-ipfc.c + print-ipnet.c + print-ipx.c + print-isakmp.c + print-isoclns.c + print-juniper.c + print-krb.c + print-l2tp.c + print-lane.c + print-ldp.c + print-lisp.c + print-llc.c + print-lldp.c + print-lmp.c + print-loopback.c + print-lspping.c + print-lwapp.c + print-lwres.c + print-m3ua.c + print-medsa.c + print-mobile.c + print-mobility.c + print-mpcp.c + print-mpls.c + print-mptcp.c + print-msdp.c + print-msnlb.c + print-nflog.c + print-nfs.c + print-nsh.c + print-ntp.c + print-null.c + print-olsr.c + print-openflow-1.0.c + print-openflow.c + print-ospf.c + print-ospf6.c + print-otv.c + print-pgm.c + print-pim.c + print-pktap.c + print-ppi.c + print-ppp.c + print-pppoe.c + print-pptp.c + print-radius.c + print-raw.c + print-resp.c + print-rip.c + print-ripng.c + print-rpki-rtr.c + print-rrcp.c + print-rsvp.c + print-rt6.c + print-rtsp.c + print-rx.c + print-sctp.c + print-sflow.c + print-sip.c + print-sl.c + print-sll.c + print-slow.c + print-smtp.c + print-snmp.c + print-stp.c + print-sunatm.c + print-sunrpc.c + print-symantec.c + print-syslog.c + print-tcp.c + print-telnet.c + print-tftp.c + print-timed.c + print-tipc.c + print-token.c + print-udld.c + print-udp.c + print-usb.c + print-vjc.c + print-vqp.c + print-vrrp.c + print-vtp.c + print-vxlan.c + print-vxlan-gpe.c + print-wb.c + print-zephyr.c + print-zeromq.c + netdissect.c + signature.c + strtoaddr.c + util-print.c +) + +# +# Replace missing functions +# +foreach(FUNC vfprintf strlcat strlcpy strdup strsep getopt_long) + string(TOUPPER ${FUNC} FUNC_UPPERCASE) + set(HAVE_FUNC_UPPERCASE HAVE_${FUNC_UPPERCASE}) + if(NOT ${HAVE_FUNC_UPPERCASE}) + set(NETDISSECT_SOURCE_LIST_C ${NETDISSECT_SOURCE_LIST_C} missing/${FUNC}.c) + endif() +endforeach() +if(NOT HAVE_VSNPRINTF OR NOT HAVE_SNPRINTF) + set(NETDISSECT_SOURCE_LIST_C ${NETDISSECT_SOURCE_LIST_C} missing/snprintf.c) +endif(NOT HAVE_VSNPRINTF OR NOT HAVE_SNPRINTF) + +add_library(netdissect STATIC + ${NETDISSECT_SOURCE_LIST_C} +) + +set(TCPDUMP_SOURCE_LIST_C tcpdump.c) + +set(PROJECT_SOURCE_LIST_C ${NETDISSECT_SOURCE_LIST_C} ${TCPDUMP_SOURCE_LIST_C}) + +file(GLOB PROJECT_SOURCE_LIST_H + *.h +) + +source_group("Source Files" FILES ${PROJECT_SOURCE_LIST_C}) +source_group("Header Files" FILES ${PROJECT_SOURCE_LIST_H}) + +###################################### +# Register targets +###################################### + +add_executable(tcpdump ${TCPDUMP_SOURCE_LIST_C}) +target_link_libraries(tcpdump netdissect ${PCAP_LIBRARY} ${SMI_LIBRARY}) + +###################################### +# Write out the config.h file +###################################### + +configure_file(${CMAKE_CURRENT_SOURCE_DIR}/cmakeconfig.h.in ${CMAKE_CURRENT_BINARY_DIR}/config.h) diff --git a/Makefile.in b/Makefile.in index 1260226a..1a84339d 100644 --- a/Makefile.in +++ b/Makefile.in @@ -315,6 +315,7 @@ EXTRA_DIST = \ CHANGES \ CONTRIBUTING \ CREDITS \ + CMakeLists.txt \ INSTALL.txt \ LICENSE \ Makefile.in \ @@ -327,6 +328,9 @@ EXTRA_DIST = \ aclocal.m4 \ atime.awk \ bpf_dump.c \ + cmakeconfig.h.in \ + cmake/Modules/FindPCAP.cmake \ + cmake/Moduled/FindSMI.cmake \ config.guess \ config.h.in \ config.sub \ diff --git a/cmake/Modules/FindPCAP.cmake b/cmake/Modules/FindPCAP.cmake new file mode 100644 index 00000000..78c0d8ca --- /dev/null +++ b/cmake/Modules/FindPCAP.cmake @@ -0,0 +1,21 @@ +# +# Try to find libpcap. +# + +# Try to find the header +find_path(PCAP_INCLUDE_DIR pcap.h) + +# Try to find the library +find_library(PCAP_LIBRARY pcap) + +include(FindPackageHandleStandardArgs) +find_package_handle_standard_args(PCAP + DEFAULT_MSG + PCAP_INCLUDE_DIR + PCAP_LIBRARY +) + +mark_as_advanced( + PCAP_INCLUDE_DIR + PCAP_LIBRARY +) diff --git a/cmake/Modules/FindSMI.cmake b/cmake/Modules/FindSMI.cmake new file mode 100644 index 00000000..187d2c72 --- /dev/null +++ b/cmake/Modules/FindSMI.cmake @@ -0,0 +1,21 @@ +# +# Try to find libsmi. +# + +# Try to find the header +find_path(SMI_INCLUDE_DIR smi.h) + +# Try to find the library +find_library(SMI_LIBRARY smi) + +include(FindPackageHandleStandardArgs) +find_package_handle_standard_args(SMI + DEFAULT_MSG + SMI_INCLUDE_DIR + SMI_LIBRARY +) + +mark_as_advanced( + SMI_INCLUDE_DIR + SMI_LIBRARY +) diff --git a/cmakeconfig.h.in b/cmakeconfig.h.in new file mode 100644 index 00000000..3f0ff7de --- /dev/null +++ b/cmakeconfig.h.in @@ -0,0 +1,325 @@ +/* cmakeconfig.h.in */ + +/* define if you want to build the possibly-buggy SMB printer */ +#cmakedefine ENABLE_SMB 1 + +/* Define to 1 if you have the `bpf_dump' function. */ +#cmakedefine HAVE_BPF_DUMP 1 + +/* capsicum support available */ +#cmakedefine HAVE_CAPSICUM 1 + +/* Define to 1 if you have the `cap_enter' function. */ +#cmakedefine HAVE_CAP_ENTER 1 + +/* Define to 1 if you have the `cap_ioctls_limit' function. */ +#cmakedefine HAVE_CAP_IOCTLS_LIMIT 1 + +/* Define to 1 if you have the <cap-ng.h> header file. */ +#cmakedefine HAVE_CAP_NG_H 1 + +/* Define to 1 if you have the `cap_rights_limit' function. */ +#cmakedefine HAVE_CAP_RIGHTS_LIMIT 1 + +/* Casper support available */ +#cmakedefine HAVE_CASPER 1 + +/* Define to 1 if you have the declaration of `ether_ntohost', and to 0 if you + don't. */ +#cmakedefine HAVE_DECL_ETHER_NTOHOST 1 + +/* define if you have the dnet_htoa function */ +#cmakedefine HAVE_DNET_HTOA 1 + +/* Define to 1 if you have the `ether_ntohost' function. */ +#cmakedefine HAVE_ETHER_NTOHOST 1 + +/* Define to 1 if you have the `EVP_CipherInit_ex' function. */ +#cmakedefine HAVE_EVP_CIPHERINIT_EX 1 + +/* Define to 1 if you have the `EVP_CIPHER_CTX_new' function. */ +#cmakedefine HAVE_EVP_CIPHER_CTX_NEW 1 + +/* Define to 1 if you have the <fcntl.h> header file. */ +#cmakedefine HAVE_FCNTL_H 1 + +/* Define to 1 if you have the `fork' function. */ +#cmakedefine HAVE_FORK 1 + +/* Define to 1 if you have the `getopt_long' function. */ +#cmakedefine HAVE_GETOPT_LONG 1 + +/* define if you have getrpcbynumber() */ +#cmakedefine HAVE_GETRPCBYNUMBER 1 + +/* Define to 1 if you have the `getservent' function. */ +#cmakedefine HAVE_GETSERVENT 1 + +/* Define to 1 if you have the <inttypes.h> header file. */ +#cmakedefine HAVE_INTTYPES_H 1 + +/* Define to 1 if you have the `cap-ng' library (-lcap-ng). */ +#cmakedefine HAVE_LIBCAP_NG 1 + +/* Define to 1 if you have the `crypto' library (-lcrypto). */ +#cmakedefine HAVE_LIBCRYPTO 1 + +/* Define to 1 if you have the `rpc' library (-lrpc). */ +#cmakedefine HAVE_LIBRPC 1 + +/* Define to 1 if you have the <memory.h> header file. */ +#cmakedefine HAVE_MEMORY_H 1 + +/* Define to 1 if you have the <netdnet/dnetdb.h> header file. */ +#cmakedefine HAVE_NETDNET_DNETDB_H 1 + +/* Define to 1 if you have the <netdnet/dn.h> header file. */ +#cmakedefine HAVE_NETDNET_DN_H 1 + +/* Define to 1 if you have the <netinet/ether.h> header file. */ +#cmakedefine HAVE_NETINET_ETHER_H 1 + +/* Define to 1 if you have the <netinet/if_ether.h> header file. */ +#cmakedefine HAVE_NETINET_IF_ETHER_H 1 + +/* Define to 1 if you have the <net/if_pflog.h> header file. */ +#cmakedefine HAVE_NET_IF_PFLOG_H 1 + +/* Define to 1 if you have the <net/pfvar.h> header file. */ +#cmakedefine HAVE_NET_PFVAR_H 1 + +/* Define to 1 if you have the `openat' function. */ +#cmakedefine HAVE_OPENAT 1 + +/* Define to 1 if you have the <openssl/evp.h> header file. */ +#cmakedefine HAVE_OPENSSL_EVP_H 1 + +/* define if the OS provides AF_INET6 and struct in6_addr */ +#cmakedefine HAVE_OS_IPV6_SUPPORT 1 + +/* if there's an os_proto.h for this platform, to use additional prototypes */ +#cmakedefine HAVE_OS_PROTO_H 1 + +/* Define to 1 if you have the <pcap/bluetooth.h> header file. */ +#cmakedefine HAVE_PCAP_BLUETOOTH_H 1 + +/* Define to 1 if you have the `pcap_breakloop' function. */ +#cmakedefine HAVE_PCAP_BREAKLOOP 1 + +/* Define to 1 if you have the `pcap_create' function. */ +#cmakedefine HAVE_PCAP_CREATE 1 + +/* define if libpcap has pcap_datalink_name_to_val() */ +#cmakedefine HAVE_PCAP_DATALINK_NAME_TO_VAL 1 + +/* define if libpcap has pcap_datalink_val_to_description() */ +#cmakedefine HAVE_PCAP_DATALINK_VAL_TO_DESCRIPTION 1 + +/* define if libpcap has pcap_debug */ +#cmakedefine HAVE_PCAP_DEBUG 1 + +/* Define to 1 if you have the `pcap_dump_flush' function. */ +#cmakedefine HAVE_PCAP_DUMP_FLUSH 1 + +/* define if libpcap has pcap_dump_ftell() */ +#cmakedefine HAVE_PCAP_DUMP_FTELL 1 + +/* Define to 1 if you have the `pcap_dump_ftell64' function. */ +#cmakedefine HAVE_PCAP_DUMP_FTELL64 1 + +/* Define to 1 if you have the `pcap_findalldevs' function. */ +#cmakedefine HAVE_PCAP_FINDALLDEVS 1 + +/* Define to 1 if you have the `pcap_findalldevs_ex' function. */ +#cmakedefine HAVE_PCAP_FINDALLDEVS_EX 1 + +/* Define to 1 if you have the `pcap_free_datalinks' function. */ +#cmakedefine HAVE_PCAP_FREE_DATALINKS 1 + +/* Define to 1 if the system has the type `pcap_if_t'. */ +#cmakedefine HAVE_PCAP_IF_T 1 + +/* Define to 1 if you have the `pcap_lib_version' function. */ +#cmakedefine HAVE_PCAP_LIB_VERSION 1 + +/* define if libpcap has pcap_list_datalinks() */ +#cmakedefine HAVE_PCAP_LIST_DATALINKS 1 + +/* Define to 1 if you have the <pcap/nflog.h> header file. */ +#cmakedefine HAVE_PCAP_NFLOG_H 1 + +/* Define to 1 if you have the `pcap_open' function. */ +#cmakedefine HAVE_PCAP_OPEN 1 + +/* Define to 1 if you have the <pcap/pcap-inttypes.h> header file. */ +#cmakedefine HAVE_PCAP_PCAP_INTTYPES_H 1 + +/* Define to 1 if you have the `pcap_setdirection' function. */ +#cmakedefine HAVE_PCAP_SETDIRECTION 1 + +/* Define to 1 if you have the `pcap_set_datalink' function. */ +#cmakedefine HAVE_PCAP_SET_DATALINK 1 + +/* Define to 1 if you have the `pcap_set_immediate_mode' function. */ +#cmakedefine HAVE_PCAP_SET_IMMEDIATE_MODE 1 + +/* Define to 1 if you have the `pcap_set_optimizer_debug' function. */ +#cmakedefine HAVE_PCAP_SET_OPTIMIZER_DEBUG 1 + +/* Define to 1 if you have the `pcap_set_parser_debug' function. */ +#cmakedefine HAVE_PCAP_SET_PARSER_DEBUG 1 + +/* Define to 1 if you have the `pcap_set_tstamp_precision' function. */ +#cmakedefine HAVE_PCAP_SET_TSTAMP_PRECISION 1 + +/* Define to 1 if you have the `pcap_set_tstamp_type' function. */ +#cmakedefine HAVE_PCAP_SET_TSTAMP_TYPE 1 + +/* define if libpcap has pcap_version */ +#cmakedefine HAVE_PCAP_VERSION 1 + +/* Define to 1 if you have the `pfopen' function. */ +#cmakedefine HAVE_PFOPEN 1 + +/* Define to 1 if you have the <rpc/rpcent.h> header file. */ +#cmakedefine HAVE_RPC_RPCENT_H 1 + +/* Define to 1 if you have the <rpc/rpc.h> header file. */ +#cmakedefine HAVE_RPC_RPC_H 1 + +/* Define to 1 if you have the `setlinebuf' function. */ +#cmakedefine HAVE_SETLINEBUF 1 + +/* Define to 1 if you have the `snprintf' function. */ +#cmakedefine HAVE_SNPRINTF 1 + +/* Define to 1 if you have the <stdint.h> header file. */ +#cmakedefine HAVE_STDINT_H 1 + +/* Define to 1 if you have the <stdlib.h> header file. */ +#cmakedefine HAVE_STDLIB_H 1 + +/* Define to 1 if you have the `strdup' function. */ +#cmakedefine HAVE_STRDUP 1 + +/* Define to 1 if you have the `strftime' function. */ +#cmakedefine HAVE_STRFTIME 1 + +/* Define to 1 if you have the <strings.h> header file. */ +#cmakedefine HAVE_STRINGS_H 1 + +/* Define to 1 if you have the <string.h> header file. */ +#cmakedefine HAVE_STRING_H 1 + +/* Define to 1 if you have the `strlcat' function. */ +#cmakedefine HAVE_STRLCAT 1 + +/* Define to 1 if you have the `strlcpy' function. */ +#cmakedefine HAVE_STRLCPY 1 + +/* Define to 1 if you have the `strsep' function. */ +#cmakedefine HAVE_STRSEP 1 + +/* Define to 1 if the system has the type `struct dn_naddr'. */ +#cmakedefine HAVE_STRUCT_DN_NADDR 1 + +/* Define to 1 if the system has the type `struct ether_addr'. */ +#cmakedefine HAVE_STRUCT_ETHER_ADDR 1 + +/* Define to 1 if you have the <sys/stat.h> header file. */ +#cmakedefine HAVE_SYS_STAT_H 1 + +/* Define to 1 if you have the <sys/types.h> header file. */ +#cmakedefine HAVE_SYS_TYPES_H 1 + +/* Define to 1 if the system has the type `uintptr_t'. */ +#cmakedefine HAVE_UINTPTR_T 1 + +/* Define to 1 if you have the <unistd.h> header file. */ +#cmakedefine HAVE_UNISTD_H 1 + +/* Define to 1 if you have the `vfork' function. */ +#cmakedefine HAVE_VFORK 1 + +/* Define to 1 if you have the `vfprintf' function. */ +#cmakedefine HAVE_VFPRINTF 1 + +/* Define to 1 if you have the `vsnprintf' function. */ +#cmakedefine HAVE_VSNPRINTF 1 + +/* define if libpcap has yydebug */ +#cmakedefine HAVE_YYDEBUG 1 + +/* define if your compiler has __attribute__ */ +#cmakedefine HAVE___ATTRIBUTE__ 1 + +/* Define to 1 if netenet/dnetdb.h declares `dnet_htoa' */ +#cmakedefine NETDNET_DNETDB_H_DECLARES_DNET_HTOA 1 + +/* Define to 1 if netinet/ether.h declares `ether_ntohost' */ +#cmakedefine NETINET_ETHER_H_DECLARES_ETHER_NTOHOST 1 + +/* Define to 1 if netinet/if_ether.h declares `ether_ntohost' */ +#cmakedefine NETINET_IF_ETHER_H_DECLARES_ETHER_NTOHOST 1 + +/* Define to the address where bug reports for this package should be sent. */ +#cmakedefine PACKAGE_BUGREPORT "" + +/* Define to the full name of this package. */ +#cmakedefine PACKAGE_NAME "@PACKAGE_NAME@" + +/* Define to the full name and version of this package. */ +#cmakedefine PACKAGE_STRING "@PACKAGE_STRING@" + +/* Define to the one symbol short name of this package. */ +#cmakedefine PACKAGE_TARNAME "" + +/* Define to the home page for this package. */ +#cmakedefine PACKAGE_URL "" + +/* Define to the version of this package. */ +#cmakedefine PACKAGE_VERSION "@PACKAGE_VERSION@" + +/* Define to 1 if you have the ANSI C header files. */ +#cmakedefine STDC_HEADERS 1 + +/* define if you have ether_ntohost() and it works */ +#cmakedefine USE_ETHER_NTOHOST 1 + +/* Define if you enable support for libsmi */ +#cmakedefine USE_LIBSMI 1 + +/* define if should chroot when dropping privileges */ +#cmakedefine WITH_CHROOT 1 + +/* define if should drop privileges by default */ +#cmakedefine WITH_USER 1 + +/* define on AIX to get certain functions */ +#cmakedefine _SUN 1 + +/* define if your compiler allows __attribute__((fallthrough)) without a + warning */ +#cmakedefine __ATTRIBUTE___FALLTHROUGH_OK 1 + +/* to handle Ultrix compilers that don't support const in prototypes */ +#cmakedefine const 1 + +/* Define as token for inline if inlining supported */ +#cmakedefine inline 1 + +/* Define to `uint16_t' if u_int16_t not defined. */ +#cmakedefine u_int16_t 1 + +/* Define to `uint32_t' if u_int32_t not defined. */ +#cmakedefine u_int32_t 1 + +/* Define to `uint64_t' if u_int64_t not defined. */ +#cmakedefine u_int64_t 1 + +/* Define to `uint8_t' if u_int8_t not defined. */ +#cmakedefine u_int8_t 1 + +/* Define to the type of an unsigned integer type wide enough to hold a + pointer, if such a type exists, and if the system does not define it. */ +#cmakedefine uintptr_t 1 |