summaryrefslogtreecommitdiff
path: root/apps/SOURCES
diff options
context:
space:
mode:
authorAndrew Mahone <andrew.mahone@gmail.com>2009-05-04 15:46:41 +0000
committerAndrew Mahone <andrew.mahone@gmail.com>2009-05-04 15:46:41 +0000
commit20f76d61ae58bd47b647d79e40beebbbe747e480 (patch)
treed37569a127b02fdd051c6a3da77c70ac2d72e8ab /apps/SOURCES
parentdfb24d6ceee703361b8120d689d8d77cfc15830d (diff)
downloadrockbox-20f76d61ae58bd47b647d79e40beebbbe747e480.tar.gz
rockbox-20f76d61ae58bd47b647d79e40beebbbe747e480.zip
Make JPEG and BMP scaler optional with HAVE_JPEG and HAVE_BMP_SCALING, both defined for all targets that have HAVE_ALBUMART. Disable JPEG in PictureFlow and pluginlib album art search with 32KiB plugin buffer until PictureFlow
gets overlay support. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@20851 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/SOURCES')
-rw-r--r--apps/SOURCES8
1 files changed, 6 insertions, 2 deletions
diff --git a/apps/SOURCES b/apps/SOURCES
index 13ca913a39..62bb78a473 100644
--- a/apps/SOURCES
+++ b/apps/SOURCES
@@ -88,8 +88,6 @@ gui/viewport.c
88 88
89#if (LCD_DEPTH > 1) || (defined(HAVE_REMOTE_LCD) && (LCD_REMOTE_DEPTH > 1)) 89#if (LCD_DEPTH > 1) || (defined(HAVE_REMOTE_LCD) && (LCD_REMOTE_DEPTH > 1))
90gui/backdrop.c 90gui/backdrop.c
91recorder/resize.c
92recorder/jpeg_load.c
93#endif 91#endif
94 92
95#ifdef HAVE_LCD_CHARCELLS 93#ifdef HAVE_LCD_CHARCELLS
@@ -101,6 +99,12 @@ recorder/bmp.c
101recorder/icons.c 99recorder/icons.c
102recorder/keyboard.c 100recorder/keyboard.c
103recorder/peakmeter.c 101recorder/peakmeter.c
102#if defined(HAVE_ALBUMART) || defined(HAVE_JPEG)
103recorder/resize.c
104#endif
105#ifdef HAVE_JPEG
106recorder/jpeg_load.c
107#endif
104#ifdef HAVE_ALBUMART 108#ifdef HAVE_ALBUMART
105recorder/albumart.c 109recorder/albumart.c
106#endif 110#endif