1
0
Fork 0
forked from len0rd/rockbox

ZenUtils:

* Apply FS#9311 by Jelle Geerts: fix compiling on MingW
  * Make zen::find_firmware_offset() detect the offset better


git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18340 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Maurus Cuelenaere 2008-08-24 21:15:29 +00:00
parent 074e48c08c
commit ced10d4db1
3 changed files with 13 additions and 12 deletions

View file

@ -39,7 +39,7 @@
# else
# error Unknown CPU type in MetroWerks CodeWarrior
# endif
#elif defined(_MSC_VER)
#elif defined(_MSC_VER) || defined(__MINGW32__)
# if defined(_M_IX86)
# define WORDS_BIGENDIAN 0
# define ROTL32(x, s) _rotl(x, s)
@ -51,7 +51,7 @@
# error Unknown compiler for WIN32
#endif
#if defined(_MSC_VER) || __MWERKS__
#if defined(_MSC_VER) || defined(__MINGW32__) || __MWERKS__
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
@ -128,6 +128,8 @@ typedef unsigned __int64 uint64_t;
typedef long off_t;
#elif defined(__MINGW32__)
#include <stdint.h>
#endif
#define MP_WBITS 32U