diff options
| author | Thom Johansen <thomj@rockbox.org> | 2007-02-28 22:22:12 +0000 |
|---|---|---|
| committer | Thom Johansen <thomj@rockbox.org> | 2007-02-28 22:22:12 +0000 |
| commit | d70dc25edf4a78eb05ccc320a3c5c1530013100e (patch) | |
| tree | c13947786fad4064d19824c9ea6e83e8706deb7b /firmware/export | |
| parent | 8fd6d658a1caeddc0a84dd69ffe45739bd466e74 (diff) | |
| download | rockbox-d70dc25edf4a78eb05ccc320a3c5c1530013100e.zip rockbox-d70dc25edf4a78eb05ccc320a3c5c1530013100e.tar.gz rockbox-d70dc25edf4a78eb05ccc320a3c5c1530013100e.tar.bz2 rockbox-d70dc25edf4a78eb05ccc320a3c5c1530013100e.tar.xz | |
Fix sim builds.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12523 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/export')
| -rw-r--r-- | firmware/export/config-ipod3g.h | 2 | ||||
| -rw-r--r-- | firmware/export/config-ipod4g.h | 2 | ||||
| -rw-r--r-- | firmware/export/config-ipodcolor.h | 2 | ||||
| -rw-r--r-- | firmware/export/config-ipodmini.h | 2 | ||||
| -rw-r--r-- | firmware/export/config-ipodmini2g.h | 2 | ||||
| -rw-r--r-- | firmware/export/config-ipodnano.h | 2 | ||||
| -rw-r--r-- | firmware/export/config-ipodvideo.h | 2 |
7 files changed, 7 insertions, 7 deletions
diff --git a/firmware/export/config-ipod3g.h b/firmware/export/config-ipod3g.h index 4c9b612..58776b0 100644 --- a/firmware/export/config-ipod3g.h +++ b/firmware/export/config-ipod3g.h @@ -46,7 +46,7 @@ #define CONFIG_CODEC SWCODEC /* define this if you have a real-time clock */ -#ifndef BOOTLOADER +#if !defined(BOOTLOADER) && !defined(SIMULATOR) #define CONFIG_RTC RTC_PCF50605 #define HAVE_RTC_ALARM #endif diff --git a/firmware/export/config-ipod4g.h b/firmware/export/config-ipod4g.h index 3790500..91f2285 100644 --- a/firmware/export/config-ipod4g.h +++ b/firmware/export/config-ipod4g.h @@ -52,7 +52,7 @@ #define CONFIG_CODEC SWCODEC /* define this if you have a real-time clock */ -#ifndef BOOTLOADER +#if !defined(BOOTLOADER) && !defined(SIMULATOR) #define CONFIG_RTC RTC_PCF50605 #define HAVE_RTC_ALARM #endif diff --git a/firmware/export/config-ipodcolor.h b/firmware/export/config-ipodcolor.h index efe49fb..eacdbe6 100644 --- a/firmware/export/config-ipodcolor.h +++ b/firmware/export/config-ipodcolor.h @@ -43,7 +43,7 @@ #define CONFIG_CODEC SWCODEC /* define this if you have a real-time clock */ -#ifndef BOOTLOADER +#if !defined(BOOTLOADER) && !defined(SIMULATOR) #define CONFIG_RTC RTC_PCF50605 #define HAVE_RTC_ALARM #endif diff --git a/firmware/export/config-ipodmini.h b/firmware/export/config-ipodmini.h index 4a6c6a5..e84ebfe 100644 --- a/firmware/export/config-ipodmini.h +++ b/firmware/export/config-ipodmini.h @@ -46,7 +46,7 @@ #define CONFIG_CODEC SWCODEC /* define this if you have a real-time clock */ -#ifndef BOOTLOADER +#if !defined(BOOTLOADER) && !defined(SIMULATOR) #define CONFIG_RTC RTC_PCF50605 #define HAVE_RTC_ALARM #endif diff --git a/firmware/export/config-ipodmini2g.h b/firmware/export/config-ipodmini2g.h index a8033b1..f6aefc5 100644 --- a/firmware/export/config-ipodmini2g.h +++ b/firmware/export/config-ipodmini2g.h @@ -46,7 +46,7 @@ #define CONFIG_CODEC SWCODEC /* define this if you have a real-time clock */ -#ifndef BOOTLOADER +#if !defined(BOOTLOADER) && !defined(SIMULATOR) #define CONFIG_RTC RTC_PCF50605 #define HAVE_RTC_ALARM #endif diff --git a/firmware/export/config-ipodnano.h b/firmware/export/config-ipodnano.h index 2e727e4..b1e7c4f 100644 --- a/firmware/export/config-ipodnano.h +++ b/firmware/export/config-ipodnano.h @@ -43,7 +43,7 @@ #define CONFIG_CODEC SWCODEC /* define this if you have a real-time clock */ -#ifndef BOOTLOADER +#if !defined(BOOTLOADER) && !defined(SIMULATOR) #define CONFIG_RTC RTC_PCF50605 #define HAVE_RTC_ALARM #endif diff --git a/firmware/export/config-ipodvideo.h b/firmware/export/config-ipodvideo.h index 765c33b..8c53b38 100644 --- a/firmware/export/config-ipodvideo.h +++ b/firmware/export/config-ipodvideo.h @@ -43,7 +43,7 @@ #define CONFIG_CODEC SWCODEC /* define this if you have a real-time clock */ -#ifndef BOOTLOADER +#if !defined(BOOTLOADER) && !defined(SIMULATOR) #define CONFIG_RTC RTC_PCF50605 #define HAVE_RTC_ALARM #endif |