diff options
author | tv <tv> | 2005-01-19 16:45:59 +0000 |
---|---|---|
committer | tv <tv> | 2005-01-19 16:45:59 +0000 |
commit | 58965cba17317719e1e99d7e2781b15b3d06fedf (patch) | |
tree | 5d79bef73ff03fb8befb1c883aba80756f5e0751 /converters | |
parent | 703f748bbaa0e646210defbdc828d6e6d5783a1c (diff) | |
download | pkgsrc-58965cba17317719e1e99d7e2781b15b3d06fedf.tar.gz |
Standard sez hton*() is in <arpa/inet.h>, and that happens to be where
Interix has it. #include that too.
Diffstat (limited to 'converters')
-rw-r--r-- | converters/macfork/distinfo | 5 | ||||
-rw-r--r-- | converters/macfork/patches/patch-aa | 7 | ||||
-rw-r--r-- | converters/macfork/patches/patch-ab | 12 |
3 files changed, 19 insertions, 5 deletions
diff --git a/converters/macfork/distinfo b/converters/macfork/distinfo index 86fbdf8bca0..70ac7a8c7ac 100644 --- a/converters/macfork/distinfo +++ b/converters/macfork/distinfo @@ -1,5 +1,6 @@ -$NetBSD: distinfo,v 1.2 2003/09/20 15:11:51 jmmv Exp $ +$NetBSD: distinfo,v 1.3 2005/01/19 16:45:59 tv Exp $ SHA1 (macfork-1.0.tar.gz) = 86cbf8a7a3c65bd168f40ef9ab1e1a73161abdd0 Size (macfork-1.0.tar.gz) = 15451 bytes -SHA1 (patch-aa) = 4b0fef6b0705a6d6977fa2f38fbaf92b2b92178a +SHA1 (patch-aa) = be6282f1fb0ca57fc3a002e830885ff64eaab233 +SHA1 (patch-ab) = 82c91966a3875afdcaaf2ff65957dc97e1e3786a diff --git a/converters/macfork/patches/patch-aa b/converters/macfork/patches/patch-aa index fb9afa251c8..30da92e99f2 100644 --- a/converters/macfork/patches/patch-aa +++ b/converters/macfork/patches/patch-aa @@ -1,14 +1,15 @@ -$NetBSD: patch-aa,v 1.2 2003/09/20 15:11:54 jmmv Exp $ +$NetBSD: patch-aa,v 1.3 2005/01/19 16:45:59 tv Exp $ ---- Resource.cc.orig 1999-08-31 19:10:19.000000000 +0200 +--- Resource.cc.orig 1999-08-31 13:10:19.000000000 -0400 +++ Resource.cc -@@ -9,7 +9,10 @@ +@@ -9,7 +9,11 @@ */ #include "Resource.h" +#include <sys/types.h> +#include <sys/socket.h> #include <netinet/in.h> ++#include <arpa/inet.h> /* for ntoh*() */ +#include <string.h> #define dprintf if (0) printf diff --git a/converters/macfork/patches/patch-ab b/converters/macfork/patches/patch-ab new file mode 100644 index 00000000000..10db4c7e545 --- /dev/null +++ b/converters/macfork/patches/patch-ab @@ -0,0 +1,12 @@ +$NetBSD: patch-ab,v 1.1 2005/01/19 16:45:59 tv Exp $ + +--- MacFork.cc.orig 2005-01-19 11:43:48.000000000 -0500 ++++ MacFork.cc +@@ -14,6 +14,7 @@ + + #include "Resource.h" + #include <netinet/in.h> ++#include <arpa/inet.h> /* for ntoh*() */ + + const Int NO_ID = 65536; + |