1
0
Fork 0
forked from len0rd/rockbox

Don't build mpegplayer on targets with 2MB of RAM or less since it won't run

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21033 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Rafaël Carré 2009-05-22 10:44:32 +00:00
parent e2e68c9840
commit 8872b60fb9

View file

@ -48,9 +48,11 @@ doom
midi
/* beatbox */
#ifndef RB_PROFILE
#if MEMORYSIZE > 2 /* mpegplayer allocates at least 2MB of RAM */
mpegplayer
#endif
#endif
#endif
/* Lua needs at least 160 KB to work in */
#if (PLUGIN_BUFFER_SIZE >= 0x80000)