From 8ed1a274e184eb458982ea17171d6de5bc06f764 Mon Sep 17 00:00:00 2001 From: Alexander Alekhin Date: Fri, 15 Dec 2017 23:28:09 +0300 Subject: [PATCH] cmake: fix missed include in libtiff --- 3rdparty/libtiff/CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/3rdparty/libtiff/CMakeLists.txt b/3rdparty/libtiff/CMakeLists.txt index 21e9fbc..4665a0a 100644 --- a/3rdparty/libtiff/CMakeLists.txt +++ b/3rdparty/libtiff/CMakeLists.txt @@ -7,6 +7,7 @@ project(${TIFF_LIBRARY}) include(CheckCSourceCompiles) include(CheckFunctionExists) include(CheckIncludeFile) +include(CheckTypeSize) # Find libm, if available -- 2.7.4