[ scummvm-Patches-1323715 ] OS/2 Patches to ScummVM
SourceForge.net
noreply at sourceforge.net
Tue Oct 11 12:44:02 CEST 2005
Patches item #1323715, was opened at 2005-10-11 20:14
Message generated for change (Tracker Item Submitted) made by Item Submitter
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=418822&aid=1323715&group_id=37116
Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: None
Group: None
Status: Open
Resolution: None
Priority: 5
Submitted By: Paul Smedley (psmedley)
Assigned to: Nobody/Anonymous (nobody)
Summary: OS/2 Patches to ScummVM
Initial Comment:
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; }
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=418822&aid=1323715&group_id=37116
More information about the Scummvm-tracker
mailing list