Opened 19 years ago

Closed 19 years ago

Last modified 5 years ago

#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)

configure.os2patch (3.9 KB ) - added by SF/psmedley 19 years ago.
Patch file for configure
util.h.patch (383 bytes ) - added by SF/psmedley 19 years ago.
patch file fo r./common/util.h

Download all attachments as: .zip

Change History (7)

by SF/psmedley, 19 years ago

Attachment: configure.os2patch added

Patch file for configure

comment:1 by SF/psmedley, 19 years ago

patch for util.h attached

by SF/psmedley, 19 years ago

Attachment: util.h.patch added

patch file fo r./common/util.h

comment:2 by sev-, 19 years ago

Owner: set to sev-
Status: newclosed

comment:3 by sev-, 19 years ago

Commited. Thanks.

comment:4 by digitall, 5 years ago

Component: Ports

comment:5 by digitall, 5 years ago

Component: PortsPort: OS/2
Note: See TracTickets for help on using tickets.