#8468 closed patch
OS/2 Patches to ScummVM
Reported by: | SF/psmedley | Owned by: | sev- |
---|---|---|---|
Priority: | normal | Component: | Port: OS/2 |
Version: | Keywords: | ||
Cc: | Game: |
Description
Hi All, 2 files are required to be patched to get scummvm building on OS/2
./configure (patch in attachment)
& ./common/util.h (Patch below as only one file permitted to be attached)
--- util.h.cvs Tue Oct 11 20:13:34 2005 +++ util.h.os2patched Sat Oct 8 18:40:08 2005 @@ -23,6 +23,11 @@
#include "common/scummsys.h"
+#if defined (__INNOTEK_LIBC__)
+#undef MIN
+#undef MAX
+#endif
+
template<typename T> inline T ABS (T x)
{ return (x>=0)
? x : -x; }
#if !defined(MIN)
template<typename T> inline T MIN (T a, T b) {
return (a<b) ? a : b; }
Ticket imported from: #1323715. Ticket imported from: patches/573.
Attachments (2)
Change History (7)
by , 19 years ago
Attachment: | configure.os2patch added |
---|
comment:2 by , 19 years ago
Owner: | set to |
---|---|
Status: | new → closed |
comment:4 by , 6 years ago
Component: | → Ports |
---|
comment:5 by , 6 years ago
Component: | Ports → Port: OS/2 |
---|
Patch file for configure