diff options
author | tv <tv> | 2005-11-08 16:56:46 +0000 |
---|---|---|
committer | tv <tv> | 2005-11-08 16:56:46 +0000 |
commit | 728e485256d968743c1346f57b1d2bc796a932df (patch) | |
tree | aba5c9c83eddc39652e62c35428d54788bbaae60 /emulators/DatLib | |
parent | d9bef0ad880f55d33883cc71fce98f513d354279 (diff) | |
download | pkgsrc-728e485256d968743c1346f57b1d2bc796a932df.tar.gz |
Skip <stdint.h> on Interix.
Diffstat (limited to 'emulators/DatLib')
-rw-r--r-- | emulators/DatLib/distinfo | 4 | ||||
-rw-r--r-- | emulators/DatLib/patches/patch-ab | 14 | ||||
-rw-r--r-- | emulators/DatLib/patches/patch-ac | 14 |
3 files changed, 31 insertions, 1 deletions
diff --git a/emulators/DatLib/distinfo b/emulators/DatLib/distinfo index ea3f8ac7769..5e6d08558cb 100644 --- a/emulators/DatLib/distinfo +++ b/emulators/DatLib/distinfo @@ -1,6 +1,8 @@ -$NetBSD: distinfo,v 1.7 2005/10/20 01:43:18 wiz Exp $ +$NetBSD: distinfo,v 1.8 2005/11/08 16:56:46 tv Exp $ SHA1 (datlib28.zip) = aafc47472c4712bdf80a644b36fd293e97dbd090 RMD160 (datlib28.zip) = b716d8414e4b35f0ce41a0b43a322fe714956c18 Size (datlib28.zip) = 83787 bytes SHA1 (patch-aa) = c589d437d71f9342cb15b1b0e731169b274bd6b0 +SHA1 (patch-ab) = e01959114bafc63ae29fcde587b507f67e1c69b2 +SHA1 (patch-ac) = 55d7c856fc86aa40e625bcbde401b2c66b1d5b0c diff --git a/emulators/DatLib/patches/patch-ab b/emulators/DatLib/patches/patch-ab new file mode 100644 index 00000000000..85deae47fc1 --- /dev/null +++ b/emulators/DatLib/patches/patch-ab @@ -0,0 +1,14 @@ +$NetBSD: patch-ab,v 1.1 2005/11/08 16:56:46 tv Exp $ + +--- src/token.h.orig 2005-03-08 22:22:26.000000000 -0500 ++++ src/token.h +@@ -7,7 +7,9 @@ + /* --- Standard includes --- */ + + #include <string.h> ++#ifndef __INTERIX + #include <stdint.h> ++#endif + + + /* --- Token structure (the description field is used by the directory scan and for debugging output) --- */ diff --git a/emulators/DatLib/patches/patch-ac b/emulators/DatLib/patches/patch-ac new file mode 100644 index 00000000000..f6070e31723 --- /dev/null +++ b/emulators/DatLib/patches/patch-ac @@ -0,0 +1,14 @@ +$NetBSD: patch-ac,v 1.1 2005/11/08 16:56:46 tv Exp $ + +--- src/type.h.orig 2005-02-21 21:57:16.000000000 -0500 ++++ src/type.h +@@ -8,7 +8,9 @@ + + #include <stdio.h> + #include <stdlib.h> ++#ifndef __INTERIX + #include <stdint.h> ++#endif + + + /* --- DatLib Includes --- */ |