summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCiaran McCreesh <ciaranm@gentoo.org>2005-05-23 09:01:51 +0000
committerCiaran McCreesh <ciaranm@gentoo.org>2005-05-23 09:01:51 +0000
commit499202dcd78d30697d0d1095b75945d43e34cb66 (patch)
tree5a770be182e15004b0af650dcdede99d6f15dd75 /sys-apps/dog/files
parentConflict between vimspell and svncommand maps, so make them block. Bug #91965 (diff)
downloadhistorical-499202dcd78d30697d0d1095b75945d43e34cb66.tar.gz
historical-499202dcd78d30697d0d1095b75945d43e34cb66.tar.bz2
historical-499202dcd78d30697d0d1095b75945d43e34cb66.zip
64 bit fixes, thanks to flameeyes for the patch. Bug #93549.
Package-Manager: portage-2.0.51.22-r1 screaming llama edition
Diffstat (limited to 'sys-apps/dog/files')
-rw-r--r--sys-apps/dog/files/digest-dog-1.7-r21
-rw-r--r--sys-apps/dog/files/dog-1.7-64bit-goodness.patch33
2 files changed, 34 insertions, 0 deletions
diff --git a/sys-apps/dog/files/digest-dog-1.7-r2 b/sys-apps/dog/files/digest-dog-1.7-r2
new file mode 100644
index 000000000000..0ab07c34f37b
--- /dev/null
+++ b/sys-apps/dog/files/digest-dog-1.7-r2
@@ -0,0 +1 @@
+MD5 9dd1e04efb7f8535a632bac2eef60a10 dog-1.7.tar.gz 30433
diff --git a/sys-apps/dog/files/dog-1.7-64bit-goodness.patch b/sys-apps/dog/files/dog-1.7-64bit-goodness.patch
new file mode 100644
index 000000000000..9143761852c1
--- /dev/null
+++ b/sys-apps/dog/files/dog-1.7-64bit-goodness.patch
@@ -0,0 +1,33 @@
+diff -ur dog-1.7/dog.c dog-1.7-64bit/dog.c
+--- dog-1.7/dog.c 2000-06-21 18:04:43.000000000 +0200
++++ dog-1.7-64bit/dog.c 2005-05-23 10:40:58.613766328 +0200
+@@ -38,22 +38,13 @@
+ #include <limits.h>
+ #include <netdb.h>
+
+-// this is fun
+-#if defined(__alpha)
+-#define uint16 unsigned short
+-#define int16 short
+-#define uint32 unsigned int
+-#define int32 int
+-#define uint64 unsigned long
+-#define int64 long
+-#else
+-#define uint16 unsigned short
+-#define int16 short
+-#define uint32 unsigned long
+-#define int32 long
+-#define uint64 unsigned long long
+-#define int64 long long
+-#endif
++#define uint16 uint16_t
++#define int16 int16_t
++#define uint32 uint32_t
++#define int32 int32_t
++#define uint64 uint64_t
++#define int64 int64_t
++
+ #if defined(__STDC__)
+ #define __dog_signed signed
+ #else