From 7ca8dfe98a6cbf4210f3a3e952e780f373cc5608 Mon Sep 17 00:00:00 2001 From: Maxim Sobolev Date: Thu, 22 Jun 2000 10:05:54 +0000 Subject: - Fix new compiler error - Exclude GPL doc from package PR: 19222 Submitted by: KATO Tsuguru --- games/xkoules/files/patch-ab | 47 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 games/xkoules/files/patch-ab (limited to 'games/xkoules/files') diff --git a/games/xkoules/files/patch-ab b/games/xkoules/files/patch-ab new file mode 100644 index 000000000000..ea84438e9f75 --- /dev/null +++ b/games/xkoules/files/patch-ab @@ -0,0 +1,47 @@ +--- xlib/shmbitmap.c.orig Thu Mar 5 03:59:19 1998 ++++ xlib/shmbitmap.c Tue Jun 13 03:45:28 2000 +@@ -237,7 +237,7 @@ + #define __clipy1 0 + #undef __clipy2 + #define __clipy2 (MAPHEIGHT+19) +-#ifdef __i386__ ++#if defined(__i386__)&&defined(ASSEMBLY) + static INLINE int + muldiv64 (int CONST m1, int CONST m2, int CONST d) + { +@@ -333,7 +333,7 @@ + } + if (r1 & 1) + { /* left */ +-#ifdef __i386__ ++#if defined(__i386__)&&defined(ASSEMBLY) + y1 += muldiv64 (__clipx1 - x1, y2 - y1, x2 - x1); + #else + y1 += (long) (__clipx1 - x1) * (long) (y2 - y1) / (long) (x2 - x1); +@@ -342,7 +342,7 @@ + } + else if (r1 & 2) + { /* right */ +-#ifdef __i386__ ++#if defined(__i386__)&&defined(ASSEMBLY) + y1 += muldiv64 (__clipx2 - x1, y2 - y1, x2 - x1); + #else + y1 += (long) (__clipx2 - x1) * (long) (y2 - y1) / (long) (x2 - x1); +@@ -351,7 +351,7 @@ + } + else if (r1 & 4) + { /* top */ +-#ifdef __i386__ ++#if defined(__i386__)&&defined(ASSEMBLY) + x1 += muldiv64 (__clipy1 - y1, x2 - x1, y2 - y1); + #else + x1 += (long) (__clipy1 - y1) * (long) (x2 - x1) / (long) (y2 - y1); +@@ -360,7 +360,7 @@ + } + else if (r1 & 8) + { /* bottom */ +-#ifdef __i386__ ++#if defined(__i386__)&&defined(ASSEMBLY) + x1 += muldiv64 (__clipy2 - y1, x2 - x1, y2 - y1); + #else + x1 += (long) (__clipy2 - y1) * (long) (x2 - x1) / (long) (y2 - y1); -- cgit v1.2.3