From 7fbe49c26738b5551abf764051bd27b49c191a4d Mon Sep 17 00:00:00 2001 From: Erik Boasson Date: Fri, 24 May 2019 08:33:04 +0200 Subject: [PATCH] Fix broken check for multi-process support With the introduction of FreeRTOS support, the requirement that the underlying platform supports multiple processes became untenable, and therefore the code for dealing with multiple processes is now automatically detected via some CMake code and then effectuated in the sources via a macro (DDSRT_HAVE_MULTI_PROCESS). Unfortunately, a typo resulted in all platforms being treated as if without support for multiple processes. Fortunately, at this stage the only consequence was the disabling of the first few multi-process tests. Signed-off-by: Erik Boasson --- src/ddsrt/cmake/process.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ddsrt/cmake/process.c b/src/ddsrt/cmake/process.c index a1f3561..84e13f0 100644 --- a/src/ddsrt/cmake/process.c +++ b/src/ddsrt/cmake/process.c @@ -11,7 +11,7 @@ */ #include "dds/ddsrt/process.h" -#if DDSRT_HAVE_PROCESS +#if DDSRT_HAVE_MULTI_PROCESS # error "cmake_HAVE_MULTI_PROCESS=true" #else # error "cmake_HAVE_MULTI_PROCESS=false"