diff options
author | obache <obache@pkgsrc.org> | 2010-12-25 09:48:09 +0000 |
---|---|---|
committer | obache <obache@pkgsrc.org> | 2010-12-25 09:48:09 +0000 |
commit | a8613d6178521e6fd79ec194fdd91e3ed319e9b5 (patch) | |
tree | b8573fbb50ef7713f44d5ee0716afbf8e8be6428 /games/dungeon/patches | |
parent | e9de2901c8a7e05b57de79fa9bcb516965151edf (diff) | |
download | pkgsrc-a8613d6178521e6fd79ec194fdd91e3ed319e9b5.tar.gz |
intN_t and uintN_t should be provided by stdint.h for porability.
fixes PR#44278.
Diffstat (limited to 'games/dungeon/patches')
-rw-r--r-- | games/dungeon/patches/patch-aa | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/games/dungeon/patches/patch-aa b/games/dungeon/patches/patch-aa index b074a88dad7..0d9c5284f50 100644 --- a/games/dungeon/patches/patch-aa +++ b/games/dungeon/patches/patch-aa @@ -1,4 +1,4 @@ -$NetBSD: patch-aa,v 1.1 2009/11/28 20:25:40 pgoyette Exp $ +$NetBSD: patch-aa,v 1.2 2010/12/25 09:48:09 obache Exp $ Use an explicit 32-bit data type. @@ -15,7 +15,7 @@ Use an explicit 32-bit data type. + * typedef signed long glsi32; + */ + -+#include <sys/inttypes.h> ++#include <stdint.h> + +typedef uint32_t glui32; +typedef int32_t glsi32; |