1
0
Fork 0
forked from len0rd/rockbox

ifdef all the tagcache code, allows rombox to be compiled again, Thanks Austin Appel

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@11338 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Jonathan Gordon 2006-10-25 10:17:57 +00:00
parent 22dfcdb3ec
commit 710ccb7b48
63 changed files with 237 additions and 16 deletions

View file

@ -41,7 +41,9 @@
#include "misc.h"
#include "splash.h"
#include "dircache.h"
#ifdef HAVE_TAGCACHE
#include "tagcache.h"
#endif
#include "lcd-remote.h"
#include "crc32.h"
#include "logf.h"
@ -1917,6 +1919,7 @@ static bool dbg_dircache_info(void)
#endif /* HAVE_DIRCACHE */
#ifdef HAVE_LCD_BITMAP
#ifdef HAVE_TAGCACHE
static bool dbg_tagcache_info(void)
{
bool done = false;
@ -1960,6 +1963,7 @@ static bool dbg_tagcache_info(void)
return false;
}
#endif
#endif
#if CONFIG_CPU == SH7034
bool dbg_save_roms(void)
@ -2193,7 +2197,9 @@ bool debug_menu(void)
{ "View dircache info", dbg_dircache_info },
#endif
#ifdef HAVE_LCD_BITMAP
#ifdef HAVE_TAGCACHE
{ "View tagcache info", dbg_tagcache_info },
#endif
#if CONFIG_CODEC == SWCODEC || !defined(SIMULATOR)
{ "View audio thread", dbg_audio_thread },
#endif