summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRafaël Carré <rafael.carre@gmail.com>2010-07-21 06:05:51 +0000
committerRafaël Carré <rafael.carre@gmail.com>2010-07-21 06:05:51 +0000
commit68e363b18f8c358269238a21cd1e0e1655575ddc (patch)
treedf48625d00609205967027478977eb54e20c627e
parent84f5e09820da543b6e30cbfd21f1e254204e5e03 (diff)
downloadrockbox-68e363b18f8c358269238a21cd1e0e1655575ddc.tar.gz
rockbox-68e363b18f8c358269238a21cd1e0e1655575ddc.zip
rockboy: simplify build condition
it builds for all current plugin buffer sizes git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27506 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--apps/plugins/SUBDIRS4
1 files changed, 1 insertions, 3 deletions
diff --git a/apps/plugins/SUBDIRS b/apps/plugins/SUBDIRS
index c28adfbdd7..33efc5f12d 100644
--- a/apps/plugins/SUBDIRS
+++ b/apps/plugins/SUBDIRS
@@ -17,9 +17,7 @@ clock
17 && (LCD_PIXELFORMAT != HORIZONTAL_PACKING) /* TODO */ \ 17 && (LCD_PIXELFORMAT != HORIZONTAL_PACKING) /* TODO */ \
18 && (LCD_PIXELFORMAT != VERTICAL_INTERLEAVED) /* TODO */ \ 18 && (LCD_PIXELFORMAT != VERTICAL_INTERLEAVED) /* TODO */ \
19 && (defined(HAVE_LCD_COLOR) || (LCD_HEIGHT == 64) && (LCD_DEPTH == 1) || \ 19 && (defined(HAVE_LCD_COLOR) || (LCD_HEIGHT == 64) && (LCD_DEPTH == 1) || \
20 (LCD_HEIGHT == 128) && (LCD_DEPTH == 2)) \ 20 (LCD_HEIGHT == 128) && (LCD_DEPTH == 2))
21 && (PLUGIN_BUFFER_SIZE >= 0x60000 /* it needs a lot of RAM */ || \
22 PLUGIN_BUFFER_SIZE <= 0x20000) /* but we can use overlays */
23rockboy 21rockboy
24#endif 22#endif
25 23