From 26a3ccefd0f687fb7e4b6f7216723ee21965b38b Mon Sep 17 00:00:00 2001 From: Bryan Roe Date: Mon, 4 Feb 2019 12:49:44 -0800 Subject: [PATCH] Added missing includes, if NOTLS is specified for Linux --- meshcore/KVM/Linux/linux_kvm.c | 1 + microstack/ILibParsers.c | 35 +++++++++++++++++----------------- 2 files changed, 19 insertions(+), 17 deletions(-) diff --git a/meshcore/KVM/Linux/linux_kvm.c b/meshcore/KVM/Linux/linux_kvm.c index 4809913..b6538a3 100644 --- a/meshcore/KVM/Linux/linux_kvm.c +++ b/meshcore/KVM/Linux/linux_kvm.c @@ -21,6 +21,7 @@ limitations under the License. #include "microstack/ILibAsyncServerSocket.h" #include "microstack/ILibProcessPipe.h" #include +#include #include #include diff --git a/microstack/ILibParsers.c b/microstack/ILibParsers.c index 41fc526..2a6e54e 100644 --- a/microstack/ILibParsers.c +++ b/microstack/ILibParsers.c @@ -15,24 +15,25 @@ limitations under the License. */ #if defined (__APPLE__) -#include -#include -#include -//#include + #include + #include + #include + //#include #else -#ifdef NACL -#include -#include "chrome/nacl.h" -#endif -#if defined(_POSIX) -#ifndef _VX_CPU -#include -#endif -#include -#ifndef _NOILIBSTACKDEBUG -#include -#endif -#endif + #ifdef NACL + #include + #include "chrome/nacl.h" + #endif + #if defined(_POSIX) + #ifndef _VX_CPU + #include + #endif + #include + #ifndef _NOILIBSTACKDEBUG + #include + #include + #endif + #endif #endif #ifdef _MINCORE