diff options
author | Greg Lewis <glewis@FreeBSD.org> | 2003-08-14 17:14:16 +0000 |
---|---|---|
committer | Greg Lewis <glewis@FreeBSD.org> | 2003-08-14 17:14:16 +0000 |
commit | 9088f0d80cbe1ccde08d7a89c6ccd2b04137f5e7 (patch) | |
tree | c1af183532fef4c5e840763f6d05f5ac022e4454 /games/moria | |
parent | 99cf34e2b7aecaeac08ae8bad535afce7f36d440 (diff) | |
download | ports-9088f0d80cbe1ccde08d7a89c6ccd2b04137f5e7.tar.gz ports-9088f0d80cbe1ccde08d7a89c6ccd2b04137f5e7.zip |
Notes
Diffstat (limited to 'games/moria')
-rw-r--r-- | games/moria/files/patch-source::types.h | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/games/moria/files/patch-source::types.h b/games/moria/files/patch-source::types.h new file mode 100644 index 000000000000..5c3f89b98f9a --- /dev/null +++ b/games/moria/files/patch-source::types.h @@ -0,0 +1,23 @@ +--- source/types.h.orig Tue Aug 12 10:04:48 2003 ++++ source/types.h Tue Aug 12 10:06:27 2003 +@@ -6,11 +6,20 @@ + not for profit purposes provided that this copyright and statement are + included in all such copies. */ + ++#ifdef __FreeBSD__ ++#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 */ |