From 0db847071fc5a0799a9cd7b025d237d151d2870e Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Sat, 17 Feb 2007 21:31:17 +0000 Subject: repair the condition git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12358 a1c6a512-1295-4272-9138-f99709370657 --- firmware/export/config.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'firmware/export/config.h') diff --git a/firmware/export/config.h b/firmware/export/config.h index 6a5c881013..4a25b915ed 100644 --- a/firmware/export/config.h +++ b/firmware/export/config.h @@ -218,7 +218,8 @@ /* Enable the directory cache and tagcache in RAM if we have * plenty of RAM. Both features can be enabled independently. */ -#if defined(MEMORYSIZE) && (MEMORYSIZE > 8 || MEM > 8) && !defined(BOOTLOADER) +#if (!defined(MEMORYSIZE) || (MEMORYSIZE > 8) || (MEM > 8)) && \ + !defined(BOOTLOADER) #define HAVE_DIRCACHE #ifdef HAVE_TAGCACHE #define HAVE_TC_RAMCACHE -- cgit v1.2.3