diff options
author | Guy Harris <guy@alum.mit.edu> | 2017-09-07 17:50:07 -0700 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2017-09-07 17:50:07 -0700 |
commit | 1835a02fb564d73ba8ed38546fe1d12dff39a615 (patch) | |
tree | a53117799cd0956795ba2a0198afe8d8c59594e6 | |
parent | 8f66260e680749ef0fb667d89b6c247f11888039 (diff) |
Include CheckFunctionExists before we use check_function_exists().
-rw-r--r-- | CMakeLists.txt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index d57aacc9..6777e5ad 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -53,6 +53,8 @@ include_directories( ${pcap_SOURCE_DIR} ) +include(CheckFunctionExists) + if( WIN32 ) # # The 'Win32/WpdPack/' directory branch is for an AppVeyor build. @@ -128,7 +130,6 @@ endif( MSVC ) ################################################################### include(CheckIncludeFile) -include(CheckFunctionExists) include(CheckStructHasMember) include(CheckTypeSize) |