diff options
author | joerg <joerg@pkgsrc.org> | 2006-07-04 15:15:01 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2006-07-04 15:15:01 +0000 |
commit | 9cc7d681b28ed47d1848bde142195ff4287354c1 (patch) | |
tree | ad98928f599e7a23c42aa1605337f3b3c3f33ebc /x11/py-gnome2-extras | |
parent | 4e56516cd3274df31607a4e14b9b8f9ee9bc90de (diff) | |
download | pkgsrc-9cc7d681b28ed47d1848bde142195ff4287354c1.tar.gz |
Fix build on DragonFly, where arpa/inet.h does not include
netinet/in.h by default. This is explicitly allowed by SUS.
Diffstat (limited to 'x11/py-gnome2-extras')
-rw-r--r-- | x11/py-gnome2-extras/distinfo | 3 | ||||
-rw-r--r-- | x11/py-gnome2-extras/patches/patch-aa | 13 |
2 files changed, 15 insertions, 1 deletions
diff --git a/x11/py-gnome2-extras/distinfo b/x11/py-gnome2-extras/distinfo index f204771a619..8c0f2135779 100644 --- a/x11/py-gnome2-extras/distinfo +++ b/x11/py-gnome2-extras/distinfo @@ -1,5 +1,6 @@ -$NetBSD: distinfo,v 1.3 2005/10/25 11:07:49 drochner Exp $ +$NetBSD: distinfo,v 1.4 2006/07/04 15:15:01 joerg Exp $ SHA1 (gnome-python-extras-2.12.0.tar.bz2) = 4b20dfbdedf82f3e6f025e63783ac5b35e4cbd83 RMD160 (gnome-python-extras-2.12.0.tar.bz2) = 26b48bcfd37b6759c79f238aac27e83686edf13d Size (gnome-python-extras-2.12.0.tar.bz2) = 473850 bytes +SHA1 (patch-aa) = bc547a71e368956c9bbb86afa03b7098621577b7 diff --git a/x11/py-gnome2-extras/patches/patch-aa b/x11/py-gnome2-extras/patches/patch-aa new file mode 100644 index 00000000000..25a6f45e794 --- /dev/null +++ b/x11/py-gnome2-extras/patches/patch-aa @@ -0,0 +1,13 @@ +1;5C$NetBSD: patch-aa,v 1.1 2006/07/04 15:15:01 joerg Exp $ + +--- gtop/gtop.c.orig 2006-07-04 15:05:29.000000000 +0000 ++++ gtop/gtop.c +@@ -45,7 +45,7 @@ + #include <sys/types.h> + #include <sys/socket.h> + #include <arpa/inet.h> +- ++#include <netinet/in.h> + + typedef struct + { |