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 <eb@ilities.com>
This commit is contained in:
Erik Boasson 2019-05-24 08:33:04 +02:00 committed by eboasson
parent d723ab79ad
commit 7fbe49c267

View file

@ -11,7 +11,7 @@
*/ */
#include "dds/ddsrt/process.h" #include "dds/ddsrt/process.h"
#if DDSRT_HAVE_PROCESS #if DDSRT_HAVE_MULTI_PROCESS
# error "cmake_HAVE_MULTI_PROCESS=true" # error "cmake_HAVE_MULTI_PROCESS=true"
#else #else
# error "cmake_HAVE_MULTI_PROCESS=false" # error "cmake_HAVE_MULTI_PROCESS=false"