Ticket #8761: scummvm-mint-12182007.patch
File scummvm-mint-12182007.patch, 2.3 KB (added by , 17 years ago) |
---|
-
configure
985 985 ;; 986 986 mint*) 987 987 DEFINES="$DEFINES -DUNIX -DSYSTEM_NOT_SUPPORTING_D_TYPE" 988 LIBS="$LIBS -lsocket" 988 989 ;; 989 990 amigaos*) 990 991 # TODO: anything to be added here? … … 1057 1058 type_2_byte='short' 1058 1059 type_4_byte='long' 1059 1060 _ranlib=m68k-atari-mint-ranlib 1060 _ar= m68k-atari-mint-ar1061 _ar="m68k-atari-mint-ar cru" 1061 1062 ;; 1062 1063 i586-mingw32msvc) 1063 1064 echo "Cross-compiling to $_host, forcing endianness, alignment and type sizes" -
sound/fmopl.cpp
33 33 34 34 #include "sound/fmopl.h" 35 35 36 #if defined (_WIN32_WCE) || defined (__SYMBIAN32__) || defined(PALMOS_MODE) || defined(__GP32__) || defined(GP2X) || defined (__MAEMO__) || defined(__DS__) 36 #if defined (_WIN32_WCE) || defined (__SYMBIAN32__) || defined(PALMOS_MODE) || defined(__GP32__) || defined(GP2X) || defined (__MAEMO__) || defined(__DS__) || defined (__MINT__) 37 37 #include "common/config-manager.h" 38 38 #endif 39 39 … … 1171 1171 // We need to emulate one YM3812 chip 1172 1172 int env_bits = FMOPL_ENV_BITS_HQ; 1173 1173 int eg_ent = FMOPL_EG_ENT_HQ; 1174 #if defined (_WIN32_WCE) || defined(__SYMBIAN32__) || defined(PALMOS_MODE) || defined(__GP32__) || defined (GP2X) || defined(__MAEMO__) || defined(__DS__) 1174 #if defined (_WIN32_WCE) || defined(__SYMBIAN32__) || defined(PALMOS_MODE) || defined(__GP32__) || defined (GP2X) || defined(__MAEMO__) || defined(__DS__) || defined (__MINT__) 1175 1175 if (ConfMan.hasKey("FM_high_quality") && ConfMan.getBool("FM_high_quality")) { 1176 1176 env_bits = FMOPL_ENV_BITS_HQ; 1177 1177 eg_ent = FMOPL_EG_ENT_HQ; -
graphics/primitives.cpp
26 26 27 27 namespace Graphics { 28 28 29 #if def MACOSX29 #if defined MACOSX || defined __MINT__ 30 30 // Older versions of Mac OS X didn't supply a sqrtf function. To ensure 31 31 // binary compatibility, we force using sqrt instead of sqrtf (the only 32 32 // potential drawback is that it might be a little bit slower).