summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
Diffstat (limited to 'apps')
-rw-r--r--apps/codecs.c4
-rw-r--r--apps/codecs/SOURCES2
-rw-r--r--apps/plugin.c4
-rw-r--r--apps/plugins/SUBDIRS4
4 files changed, 10 insertions, 4 deletions
diff --git a/apps/codecs.c b/apps/codecs.c
index c31fd843b3..24490dd04b 100644
--- a/apps/codecs.c
+++ b/apps/codecs.c
@@ -138,8 +138,8 @@ struct codec_api ci = {
138#ifdef RB_PROFILE 138#ifdef RB_PROFILE
139 profile_thread, 139 profile_thread,
140 profstop, 140 profstop,
141 profile_func_enter, 141 __cyg_profile_func_enter,
142 profile_func_exit, 142 __cyg_profile_func_exit,
143#endif 143#endif
144 144
145#if defined(HAVE_RECORDING) && !defined(SIMULATOR) 145#if defined(HAVE_RECORDING) && !defined(SIMULATOR)
diff --git a/apps/codecs/SOURCES b/apps/codecs/SOURCES
index 25ca5490d4..3038903f9e 100644
--- a/apps/codecs/SOURCES
+++ b/apps/codecs/SOURCES
@@ -7,7 +7,9 @@ wav.c
7a52.c 7a52.c
8mpc.c 8mpc.c
9wavpack.c 9wavpack.c
10#ifndef RB_PROFILE
10alac.c 11alac.c
12#endif
11wma.c 13wma.c
12#if MEMORYSIZE > 1 14#if MEMORYSIZE > 1
13aac.c 15aac.c
diff --git a/apps/plugin.c b/apps/plugin.c
index a220e8c429..24082de637 100644
--- a/apps/plugin.c
+++ b/apps/plugin.c
@@ -335,8 +335,8 @@ static const struct plugin_api rockbox_api = {
335#ifdef RB_PROFILE 335#ifdef RB_PROFILE
336 profile_thread, 336 profile_thread,
337 profstop, 337 profstop,
338 profile_func_enter, 338 __cyg_profile_func_enter,
339 profile_func_exit, 339 __cyg_profile_func_exit,
340#endif 340#endif
341 341
342#ifdef SIMULATOR 342#ifdef SIMULATOR
diff --git a/apps/plugins/SUBDIRS b/apps/plugins/SUBDIRS
index 94614e2f12..1b3e2af252 100644
--- a/apps/plugins/SUBDIRS
+++ b/apps/plugins/SUBDIRS
@@ -33,14 +33,18 @@ pacbox
33/* For all the color targets */ 33/* For all the color targets */
34#if defined(HAVE_LCD_COLOR) || defined(MROBE_100) || \ 34#if defined(HAVE_LCD_COLOR) || defined(MROBE_100) || \
35 (LCD_DEPTH == 2) && !defined(ARCHOS_AV300) 35 (LCD_DEPTH == 2) && !defined(ARCHOS_AV300)
36#ifndef RB_PROFILE
36doom 37doom
37#endif 38#endif
39#endif
38 40
39/* For all the swcodec targets */ 41/* For all the swcodec targets */
40#if CONFIG_CODEC == SWCODEC 42#if CONFIG_CODEC == SWCODEC
41midi 43midi
42/* beatbox */ 44/* beatbox */
45#ifndef RB_PROFILE
43mpegplayer 46mpegplayer
44#endif 47#endif
48#endif
45 49
46#endif /* IRIVER_IFP7XX_SERIES */ 50#endif /* IRIVER_IFP7XX_SERIES */