diff options
| author | Björn Stenberg <bjorn@haxx.se> | 2009-01-12 21:56:46 +0000 |
|---|---|---|
| committer | Björn Stenberg <bjorn@haxx.se> | 2009-01-12 21:56:46 +0000 |
| commit | 52320b83c0e9fb3c3f6c463f8bd61de35f03b235 (patch) | |
| tree | 995a6f7e903f2a142ce64e05b27fa5e189b8544c /apps/plugins/lib | |
| parent | bbd33a0a7db188e874b11e30e509f32c13200aea (diff) | |
| download | rockbox-52320b83c0e9fb3c3f6c463f8bd61de35f03b235.zip rockbox-52320b83c0e9fb3c3f6c463f8bd61de35f03b235.tar.gz rockbox-52320b83c0e9fb3c3f6c463f8bd61de35f03b235.tar.bz2 rockbox-52320b83c0e9fb3c3f6c463f8bd61de35f03b235.tar.xz | |
Added missing dependencies for codeclib and pluginlib. This required renaming some files that have twins in other places.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19756 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/lib')
| -rw-r--r-- | apps/plugins/lib/SOURCES | 4 | ||||
| -rw-r--r-- | apps/plugins/lib/bmp_smooth_scale.c | 2 | ||||
| -rw-r--r-- | apps/plugins/lib/pluginlib_bmp.c (renamed from apps/plugins/lib/bmp.c) | 2 | ||||
| -rw-r--r-- | apps/plugins/lib/pluginlib_bmp.h (renamed from apps/plugins/lib/bmp.h) | 0 | ||||
| -rw-r--r-- | apps/plugins/lib/pluginlib_resize.c (renamed from apps/plugins/lib/resize.c) | 0 | ||||
| -rw-r--r-- | apps/plugins/lib/pluginlib_resize.h (renamed from apps/plugins/lib/resize.h) | 0 |
6 files changed, 4 insertions, 4 deletions
diff --git a/apps/plugins/lib/SOURCES b/apps/plugins/lib/SOURCES index b55fea0..bb7da12 100644 --- a/apps/plugins/lib/SOURCES +++ b/apps/plugins/lib/SOURCES @@ -9,7 +9,7 @@ rgb_hsv.c pluginlib for use with greylib overlay output */ #if LCD_DEPTH == 1 -resize.c +pluginlib_resize.c #endif grey_core.c grey_draw.c @@ -37,7 +37,7 @@ picture.c xlcd_core.c xlcd_draw.c xlcd_scroll.c -bmp.c +pluginlib_bmp.c #ifdef HAVE_LCD_COLOR bmp_smooth_scale.c #endif diff --git a/apps/plugins/lib/bmp_smooth_scale.c b/apps/plugins/lib/bmp_smooth_scale.c index 860a20e..4d5eab0 100644 --- a/apps/plugins/lib/bmp_smooth_scale.c +++ b/apps/plugins/lib/bmp_smooth_scale.c @@ -70,7 +70,7 @@ * (C) Daniel M. Duley. */ -#include "bmp.h" +#include "pluginlib_bmp.h" #include "lcd.h" void smooth_resize_bitmap(struct bitmap *src_bmp, struct bitmap *dest_bmp) diff --git a/apps/plugins/lib/bmp.c b/apps/plugins/lib/pluginlib_bmp.c index 1cb24d3..b1dd53b 100644 --- a/apps/plugins/lib/bmp.c +++ b/apps/plugins/lib/pluginlib_bmp.c @@ -20,7 +20,7 @@ * ****************************************************************************/ -#include "bmp.h" +#include "pluginlib_bmp.h" #include "lcd.h" #include "file.h" diff --git a/apps/plugins/lib/bmp.h b/apps/plugins/lib/pluginlib_bmp.h index 0e7a0a4..0e7a0a4 100644 --- a/apps/plugins/lib/bmp.h +++ b/apps/plugins/lib/pluginlib_bmp.h diff --git a/apps/plugins/lib/resize.c b/apps/plugins/lib/pluginlib_resize.c index 28446e7..28446e7 100644 --- a/apps/plugins/lib/resize.c +++ b/apps/plugins/lib/pluginlib_resize.c diff --git a/apps/plugins/lib/resize.h b/apps/plugins/lib/pluginlib_resize.h index 46a8977..46a8977 100644 --- a/apps/plugins/lib/resize.h +++ b/apps/plugins/lib/pluginlib_resize.h |