diff options
author | simonb <simonb@pkgsrc.org> | 1999-09-04 09:46:37 +0000 |
---|---|---|
committer | simonb <simonb@pkgsrc.org> | 1999-09-04 09:46:37 +0000 |
commit | cf377f679e828413225f0a6b3b33d6aa26da5645 (patch) | |
tree | cea95b1403ccd67765c76f771d3e72f94c096904 /games/moria | |
parent | 4567346da3d2f6ecfcfcbaa1da39fee0bddc31c3 (diff) | |
download | pkgsrc-cf377f679e828413225f0a6b3b33d6aa26da5645.tar.gz |
If we're on a BSD44 system, use sized types from <sys/types.h> instead
of using (for example) a "long" as a "int32". Fixes problems with prices
on stores, etc.
Diffstat (limited to 'games/moria')
-rw-r--r-- | games/moria/patches/patch-aj | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/games/moria/patches/patch-aj b/games/moria/patches/patch-aj new file mode 100644 index 00000000000..f6cd013fe76 --- /dev/null +++ b/games/moria/patches/patch-aj @@ -0,0 +1,28 @@ +$NetBSD: patch-aj,v 1.1 1999/09/04 09:46:37 simonb Exp $ +--- source/types.h.orig Fri Jul 22 11:47:49 1994 ++++ source/types.h Sat Sep 4 19:39:07 1999 +@@ -6,11 +6,24 @@ + not for profit purposes provided that this copyright and statement are + included in all such copies. */ + ++#if (defined(__unix__) || defined(unix)) && !defined(USG) ++#include <sys/param.h> ++#endif ++ ++#if (defined(BSD) && BSD >= 199306) ++#include <sys/types.h> ++typedef u_int32_t int32u; ++typedef int32_t int32; ++typedef u_int16_t int16u; ++typedef int16_t int16; ++typedef u_int8_t int8u; ++#else + typedef unsigned long int32u; + typedef long int32; + typedef unsigned short int16u; + typedef short int16; + typedef unsigned char int8u; ++#endif + /* some machines will not accept 'signed char' as a type, and some accept it + but still treat it like an unsigned character, let's just avoid it, + any variable which can ever hold a negative value must be 16 or 32 bits */ |