summaryrefslogtreecommitdiff
path: root/apps/plugins/lua
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/lua')
-rw-r--r--apps/plugins/lua/rockaux.c2
-rw-r--r--apps/plugins/lua/rockconf.h2
-rw-r--r--apps/plugins/lua/rocklibc.h2
3 files changed, 3 insertions, 3 deletions
diff --git a/apps/plugins/lua/rockaux.c b/apps/plugins/lua/rockaux.c
index 1f832d4cc7..f10a1cb021 100644
--- a/apps/plugins/lua/rockaux.c
+++ b/apps/plugins/lua/rockaux.c
@@ -24,7 +24,7 @@
24#define _ROCKCONF_H_ /* Protect against unwanted include */ 24#define _ROCKCONF_H_ /* Protect against unwanted include */
25#include "lua.h" 25#include "lua.h"
26 26
27#if !defined(SIMULATOR) 27#if (CONFIG_PLATFORM & PLATFORM_NATIVE)
28int errno = 0; 28int errno = 0;
29#endif 29#endif
30 30
diff --git a/apps/plugins/lua/rockconf.h b/apps/plugins/lua/rockconf.h
index 7fbc89f166..dd7f98f1d7 100644
--- a/apps/plugins/lua/rockconf.h
+++ b/apps/plugins/lua/rockconf.h
@@ -31,7 +31,7 @@
31#undef LUA_PATH_DEFAULT 31#undef LUA_PATH_DEFAULT
32#define LUA_PATH_DEFAULT "$/?.lua;" "$/?/init.lua;" VIEWERS_DIR"/lua/?.lua;" VIEWERS_DIR"/lua/?/init.lua;" 32#define LUA_PATH_DEFAULT "$/?.lua;" "$/?/init.lua;" VIEWERS_DIR"/lua/?.lua;" VIEWERS_DIR"/lua/?/init.lua;"
33 33
34#ifndef SIMULATOR 34#if (CONFIG_PLATFORM & PLATFORM_NATIVE)
35#include "../../codecs/lib/setjmp.h" 35#include "../../codecs/lib/setjmp.h"
36#else 36#else
37#include <setjmp.h> 37#include <setjmp.h>
diff --git a/apps/plugins/lua/rocklibc.h b/apps/plugins/lua/rocklibc.h
index 9b68f429d2..44f916fded 100644
--- a/apps/plugins/lua/rocklibc.h
+++ b/apps/plugins/lua/rocklibc.h
@@ -26,7 +26,7 @@
26#include <ctype.h> 26#include <ctype.h>
27#include "plugin.h" 27#include "plugin.h"
28 28
29#ifdef SIMULATOR 29#if (CONFIG_PLATFORM & PLATFORM_HOSTED)
30#include <errno.h> 30#include <errno.h>
31#define PREFIX(_x_) sim_ ## _x_ 31#define PREFIX(_x_) sim_ ## _x_
32#else 32#else