From 3fc5c6532f1a56f27310fb733a089e1064716b10 Mon Sep 17 00:00:00 2001 From: Dimitri Staessens Date: Fri, 17 Nov 2017 19:24:14 +0100 Subject: build: Fix setting configuration definitions Variable in cache need to be explicitly unset else they will remain in the cache and still be defined by #cmakedefine. Signed-off-by: Dimitri Staessens Signed-off-by: Sander Vrijders --- src/ipcpd/shim-eth-llc/CMakeLists.txt | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src/ipcpd/shim-eth-llc') diff --git a/src/ipcpd/shim-eth-llc/CMakeLists.txt b/src/ipcpd/shim-eth-llc/CMakeLists.txt index e9c34bbd..c3e954f7 100644 --- a/src/ipcpd/shim-eth-llc/CMakeLists.txt +++ b/src/ipcpd/shim-eth-llc/CMakeLists.txt @@ -28,6 +28,8 @@ if (CMAKE_SYSTEM_NAME STREQUAL "Linux") set(HAVE_LLC TRUE) else () message(STATUS "Raw socket support for shim-eth-llc disabled by user") + unset(HAVE_RAW_SOCKETS) + unset(HAVE_LLC) endif () endif () @@ -50,6 +52,8 @@ if (NOT CMAKE_SYSTEM_NAME STREQUAL "Linux") else () message(STATUS "Berkeley Packet Filter support " "for shim-eth-llc disabled by user") + unset(HAVE_BPF) + unset(HAVE_LLC) endif () endif () endif () @@ -64,6 +68,8 @@ if (NETMAP_C_INCLUDE_DIR) set(HAVE_LLC TRUE) else () message(STATUS "Netmap support for shim-eth-llc disabled by user") + unset(HAVE_NETMAP) + unset(HAVE_LLC) endif () endif () -- cgit v1.2.3