summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjoerg <joerg@pkgsrc.org>2006-01-08 16:00:41 +0000
committerjoerg <joerg@pkgsrc.org>2006-01-08 16:00:41 +0000
commit9ba39aca3e7034432eccdbba83aff9ce8b2b8a2a (patch)
tree3306b43d41896dbda5f54c209849e7678df80398
parent2464072040839faa365bfe8a71808770cd154fc9 (diff)
downloadpkgsrc-9ba39aca3e7034432eccdbba83aff9ce8b2b8a2a.tar.gz
DragonFly needs sys/types.h before sys/socket.h, reorder includes.
-rw-r--r--mail/imapproxy/distinfo3
-rw-r--r--mail/imapproxy/patches/patch-ab16
2 files changed, 18 insertions, 1 deletions
diff --git a/mail/imapproxy/distinfo b/mail/imapproxy/distinfo
index b5851f7dce4..542c9023a79 100644
--- a/mail/imapproxy/distinfo
+++ b/mail/imapproxy/distinfo
@@ -1,6 +1,7 @@
-$NetBSD: distinfo,v 1.2 2005/02/24 09:59:23 agc Exp $
+$NetBSD: distinfo,v 1.3 2006/01/08 16:00:41 joerg Exp $
SHA1 (imapproxy-1.0.tar.gz) = 844acba24633430d15cb9b3a586164aef5051583
RMD160 (imapproxy-1.0.tar.gz) = 0e0ab29c476c55a09229a21c0cbdc05e8ef885cd
Size (imapproxy-1.0.tar.gz) = 75668 bytes
SHA1 (patch-aa) = 2148477ad9e5e3c50854cba3b042220d469c5ace
+SHA1 (patch-ab) = 745129d5bf2d5e950d6bfb9c8178f1f626b6f4e5
diff --git a/mail/imapproxy/patches/patch-ab b/mail/imapproxy/patches/patch-ab
new file mode 100644
index 00000000000..ea456f96bc6
--- /dev/null
+++ b/mail/imapproxy/patches/patch-ab
@@ -0,0 +1,16 @@
+$NetBSD: patch-ab,v 1.1 2006/01/08 16:00:41 joerg Exp $
+
+--- network.c.orig 2006-01-08 15:48:57.000000000 +0000
++++ network.c
+@@ -19,10 +19,10 @@
+ */
+
+
++#include <sys/types.h>
+ #include <stdio.h>
+ #include <sys/socket.h>
+ #include <netinet/in.h>
+-#include <sys/types.h>
+ #include <string.h>
+ #include <netdb.h>
+ #include <unistd.h>