-
configure seems to be working so far, but there's still one issue i had forgotten about: With templates, one cannot use ar, but has to use CC -ptused -ar -o. Since configure sets _ar automatically, with no manual method to override, one needs seomthing like the patch below:
Index: configure
===================================================================
--- configure (revision 44403)
+++...
2009-09-27 16:05:22 UTC in ScummVM
-
Now that sourceforge has eaten my carefully crafted comment, a shorter version will ahve to do.
7.4.4 is most likely the only wokring version of the MipsPRO C++ compiler, since it fixes a bunch of tempolate handling bugs that outright prevent older versions (at least 7.4.1) from compiling scummvm. I assume that there is at least a 99% probablility that a non-gcc compiler on IRIX is MipsPRO...
2009-09-23 23:20:24 UTC in ScummVM
-
Currently, configure fails for any compilers that don't support -dumpversion and adds numerous gcc-only Warning flags even if this check is circumvented. This patch adds some basic infrastructure to support non-gcc compilers and adds actual support for one, namely MipsPRO on IRIX.
2009-08-16 12:45:45 UTC in ScummVM
-
Update patch to fix formatting, add README section on configuration.
I don't see any reference to the equivalent alsa_port in base/commandLine.cpp, or for that matter anywhere outside alsa.cpp and the REAME, so I'm not certain what you expect to be added to the usage help. To be honest, I don'e even know how the ConfMan objects correspond to commandline options.
File Added...
2009-03-08 17:25:39 UTC in ScummVM
-
This patch is a first attempt to implement getDevices() for the IRIX midi driver dmedia.cpp.
2009-03-03 20:40:44 UTC in ScummVM
-
We're using an AdderLink IP VGA+KeyboardVNC device which is rather noisy when uncalibrated and therefore continuously updates the screen. Any update at all apparently risks a disconnect, sometimes with automatic reconnect, sometimes resulting in the "Connection Terminated Unknown rectangle encoding 4692 -> exiting" dialog. The numbers vary widely.
2008-09-05 10:44:58.077 Chicken of the...
2008-09-05 08:57:26 UTC in Chicken of the VNC
-
While it should be trivial to update the constants scattered about setupIcon() in the unliekely event that the official scummvm icon should ever be changed to some other size, this artificial restriction makes it unneccesarily difficult to change to another icon format on platforms where 32x32 just doesn't look good enough.
I actually started inspecting/modifying setupIcon() due to a bug in...
2008-08-26 19:48:52 UTC in ScummVM
-
Since uploads don't currently work and cut-and-paste apparently mangles tabs, I've put a clean version of the patch on
http://scummvm.canavan.de/SDLsetupIcon.patch.
2008-08-25 19:21:28 UTC in ScummVM
-
--- sdl.cpp.orig Fri Aug 22 21:43:29 CEST 2008
+++ sdl.cpp Sun Aug 24 17:22:20 CEST 2008
@@ -276,15 +276,21 @@
}
void OSystem_SDL::setupIcon() {
- int w, h, ncols, nbytes, i;
- unsigned int rgba[256], icon[32 * 32];
- unsigned char mask[32][4];
+ int x, y, w, h, ncols, nbytes, i;
+ unsigned int rgba[256];
+ unsigned int *icon;
sscanf(scummvm_icon[0], "%d %d %d %d", &w,
2008-08-25 19:13:17 UTC in ScummVM
-
OSystem_SDL::setupIcon imposes unneccesary size limitations on the icon to be installed. Furthermore, it computes a mask for the icon, although SDL_WM_SetIcon will do that automatically when mask==NULL and and the RGBSurface has an alpha channel.
2008-08-24 18:33:14 UTC in ScummVM