From cdfbaebcdf8b58552dab8dfe1150c55ae5466127 Mon Sep 17 00:00:00 2001 From: Stas Sergeev Date: Mon, 22 Jun 2020 14:17:06 +0300 Subject: [PATCH] build: remove libvdeplug.h requirement Libvdeplug is not mentioned as a dependency in readme, and libvdeplug.h is not used in sources. Remove it from cmake checks to avoid build problems. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 2baf995..37aa2d1 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -12,7 +12,7 @@ include(CheckIncludeFile) include(CheckSymbolExists) set(LIBS_REQUIRED slirp pthread) -set(HEADERS_REQUIRED libvdeplug.h slirp/libslirp.h) +set(HEADERS_REQUIRED slirp/libslirp.h) set(CMAKE_REQUIRED_QUIET TRUE) set(CMAKE_REQUIRED_LIBRARIES slirp)