diff options
Diffstat (limited to 'apps/plugins/lib')
| -rw-r--r-- | apps/plugins/lib/SOURCES | 6 | ||||
| -rw-r--r-- | apps/plugins/lib/pluginlib_exit.h | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/apps/plugins/lib/SOURCES b/apps/plugins/lib/SOURCES index 2c4209b..fa12f94 100644 --- a/apps/plugins/lib/SOURCES +++ b/apps/plugins/lib/SOURCES @@ -28,7 +28,7 @@ grey_sh.S #endif /* HAVE_LCD_BITMAP && LCD_DEPTH < 4 */ -#ifndef SIMULATOR +#if (CONFIG_PLATFORM & PLATFORM_NATIVE) overlay.c #endif @@ -76,7 +76,7 @@ pluginlib_albumart.c pluginlib_touchscreen.c #endif -#ifndef SIMULATOR +#if (CONFIG_PLATFORM & PLATFORM_NATIVE) #ifdef CPU_ARM ../../codecs/lib/setjmp_arm.S @@ -90,4 +90,4 @@ pluginlib_touchscreen.c ../../codecs/lib/setjmp_mips.S #endif -#endif /* !SIMULATOR */ +#endif /* PLATFORM_NATIVE */ diff --git a/apps/plugins/lib/pluginlib_exit.h b/apps/plugins/lib/pluginlib_exit.h index 6cded9d..00cbc8d 100644 --- a/apps/plugins/lib/pluginlib_exit.h +++ b/apps/plugins/lib/pluginlib_exit.h @@ -23,7 +23,7 @@ #define __PLUGINLIB_EXIT_H__ #include "config.h" -#ifndef SIMULATOR +#if (CONFIG_PLATFORM & PLATFORM_NATIVE) #include "../../codecs/lib/setjmp.h" #else #include <setjmp.h> |