diff options
| author | Jens Arnold <amiconn@rockbox.org> | 2005-01-16 15:54:47 +0000 |
|---|---|---|
| committer | Jens Arnold <amiconn@rockbox.org> | 2005-01-16 15:54:47 +0000 |
| commit | 3d1ca9deb5439da170f206504945172b149ebabf (patch) | |
| tree | 40ede989e0af1f19dff668ec3d6afc0bf1370e09 /apps/plugins/calendar.c | |
| parent | 166f7a2fe015dda37b3b1fa7a7070189493cde05 (diff) | |
| download | rockbox-3d1ca9deb5439da170f206504945172b149ebabf.zip rockbox-3d1ca9deb5439da170f206504945172b149ebabf.tar.gz rockbox-3d1ca9deb5439da170f206504945172b149ebabf.tar.bz2 rockbox-3d1ca9deb5439da170f206504945172b149ebabf.tar.xz | |
Plugin fixes for simulator: (1) Don't compile calendar for units without RTC. (2) Don't compile wormlet for non-recorders.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5567 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to '')
| -rw-r--r-- | apps/plugins/calendar.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/calendar.c b/apps/plugins/calendar.c index 8870554..44b3685 100644 --- a/apps/plugins/calendar.c +++ b/apps/plugins/calendar.c @@ -19,7 +19,7 @@ ****************************************************************************/ #include "plugin.h" -#ifdef HAVE_LCD_BITMAP +#if defined(HAVE_LCD_BITMAP) && defined(HAVE_RTC) #include <timefuncs.h> |