diff options
| author | Frank Gevaerts <frank@gevaerts.be> | 2009-10-07 16:54:15 +0000 |
|---|---|---|
| committer | Frank Gevaerts <frank@gevaerts.be> | 2009-10-07 16:54:15 +0000 |
| commit | 6e11572e0788136f77ef67b3cfc182095084da4b (patch) | |
| tree | 68539f3fdb8055807587b733d43cb38bb1ef7e19 /firmware/include | |
| parent | 9e9a9138296c602370e9c92d5fbd84a261aa17b8 (diff) | |
| download | rockbox-6e11572e0788136f77ef67b3cfc182095084da4b.zip rockbox-6e11572e0788136f77ef67b3cfc182095084da4b.tar.gz rockbox-6e11572e0788136f77ef67b3cfc182095084da4b.tar.bz2 rockbox-6e11572e0788136f77ef67b3cfc182095084da4b.tar.xz | |
Make the database tool buildable from configure.
Also update the checkwps makefile to make checkwps builds not break
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22998 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/include')
| -rw-r--r-- | firmware/include/errno.h | 2 | ||||
| -rw-r--r-- | firmware/include/rbunicode.h | 2 |
2 files changed, 1 insertions, 3 deletions
diff --git a/firmware/include/errno.h b/firmware/include/errno.h index 1843b56..846cd0e 100644 --- a/firmware/include/errno.h +++ b/firmware/include/errno.h @@ -2,7 +2,7 @@ non-reentrant. Instead, its address is returned by the function __errno. */ -#if defined(SIMULATOR) && !defined(__MINGW32__) && !defined(__CYGWIN__) +#if (defined(SIMULATOR)||defined(__PCTOOL__)) && !defined(__MINGW32__) && !defined(__CYGWIN__) #include "/usr/include/errno.h" /* use the host system implementation */ diff --git a/firmware/include/rbunicode.h b/firmware/include/rbunicode.h index a4a1c8b..a97ebb4 100644 --- a/firmware/include/rbunicode.h +++ b/firmware/include/rbunicode.h @@ -28,9 +28,7 @@ #ifndef _RBUNICODE_H_ #define _RBUNICODE_H_ -#ifndef __PCTOOL__ #include "config.h" -#endif #define MASK 0xC0 /* 11000000 */ #define COMP 0x80 /* 10x */ |