aboutsummaryrefslogtreecommitdiffstats
path: root/cmake
diff options
context:
space:
mode:
authorJoão Valverde <joao.valverde@tecnico.ulisboa.pt>2016-03-16 22:11:17 +0000
committerJoão Valverde <j@v6e.pt>2016-03-21 19:32:00 +0000
commit7a1d3f67ac83e12645a91b5329b6e8163954f77e (patch)
treea59e3f5c90c2686f3f501dc6d2b12872d9735598 /cmake
parent52dd4fb6330a10ed37b8e221c502b5a98de4f581 (diff)
Remove ADNS support
Relevant mailing list message: https://www.wireshark.org/lists/wireshark-dev/201503/msg00007.html Change-Id: I0cff6d4d64fb52a651bcf6b28c183e43653b1cc2 Reviewed-on: https://code.wireshark.org/review/14519 Reviewed-by: João Valverde <j@v6e.pt>
Diffstat (limited to 'cmake')
-rw-r--r--cmake/modules/FindADNS.cmake33
1 files changed, 0 insertions, 33 deletions
diff --git a/cmake/modules/FindADNS.cmake b/cmake/modules/FindADNS.cmake
deleted file mode 100644
index 596019556f..0000000000
--- a/cmake/modules/FindADNS.cmake
+++ /dev/null
@@ -1,33 +0,0 @@
-#
-# - Find adns
-# Find the native ADNS includes and library
-#
-# ADNS_INCLUDE_DIRS - where to find adns.h, etc.
-# ADNS_LIBRARIES - List of libraries when using adns.
-# ADNS_FOUND - True if adns found.
-
-
-IF (ADNS_INCLUDE_DIRS)
- # Already in cache, be silent
- SET(ADNS_FIND_QUIETLY TRUE)
-ENDIF (ADNS_INCLUDE_DIRS)
-
-FIND_PATH(ADNS_INCLUDE_DIR adns.h)
-
-SET(ADNS_NAMES adns)
-FIND_LIBRARY(ADNS_LIBRARY NAMES ${ADNS_NAMES} )
-
-# handle the QUIETLY and REQUIRED arguments and set ADNS_FOUND to TRUE if
-# all listed variables are TRUE
-INCLUDE(FindPackageHandleStandardArgs)
-FIND_PACKAGE_HANDLE_STANDARD_ARGS(ADNS DEFAULT_MSG ADNS_LIBRARY ADNS_INCLUDE_DIR)
-
-IF(ADNS_FOUND)
- SET( ADNS_LIBRARIES ${ADNS_LIBRARY} )
- SET( ADNS_INCLUDE_DIRS ${ADNS_INCLUDE_DIR} )
-ELSE(ADNS_FOUND)
- SET( ADNS_LIBRARIES )
- SET( ADNS_INCLUDE_DIRS )
-ENDIF(ADNS_FOUND)
-
-MARK_AS_ADVANCED( ADNS_LIBRARIES ADNS_INCLUDE_DIRS )