diff options
author | jaapb <jaapb@pkgsrc.org> | 2015-05-26 12:19:37 +0000 |
---|---|---|
committer | jaapb <jaapb@pkgsrc.org> | 2015-05-26 12:19:37 +0000 |
commit | 9b0ceb70578656b0e098357a0e66b5bc9af30753 (patch) | |
tree | 850c7b04d1bfb604b921568902986e4f7c85e0ab /textproc | |
parent | 90834f540edacd6152832b7006814292e76a6e67 (diff) | |
download | pkgsrc-9b0ceb70578656b0e098357a0e66b5bc9af30753.tar.gz |
Added patch to fix compilation error (on -current, at least)
Diffstat (limited to 'textproc')
-rw-r--r-- | textproc/xapian/distinfo | 3 | ||||
-rw-r--r-- | textproc/xapian/patches/patch-common_socket_utils.cc | 12 |
2 files changed, 14 insertions, 1 deletions
diff --git a/textproc/xapian/distinfo b/textproc/xapian/distinfo index ea6b7751fc7..0bffe077668 100644 --- a/textproc/xapian/distinfo +++ b/textproc/xapian/distinfo @@ -1,5 +1,6 @@ -$NetBSD: distinfo,v 1.18 2015/05/23 18:20:59 schmonz Exp $ +$NetBSD: distinfo,v 1.19 2015/05/26 12:19:37 jaapb Exp $ SHA1 (xapian-core-1.2.21.tar.xz) = 03f67df86f600f0b64ea62fd9b956f72b5dce933 RMD160 (xapian-core-1.2.21.tar.xz) = 6b2413007f245d2410e2b22d7656abb7f1bae750 Size (xapian-core-1.2.21.tar.xz) = 3202560 bytes +SHA1 (patch-common_socket_utils.cc) = 5e7ec55e2e1a4353a370197b2e953efa7206e59d diff --git a/textproc/xapian/patches/patch-common_socket_utils.cc b/textproc/xapian/patches/patch-common_socket_utils.cc new file mode 100644 index 00000000000..c3972b5179c --- /dev/null +++ b/textproc/xapian/patches/patch-common_socket_utils.cc @@ -0,0 +1,12 @@ +$NetBSD: patch-common_socket_utils.cc,v 1.1 2015/05/26 12:19:38 jaapb Exp $ + +--- common/socket_utils.cc.orig 2015-05-21 05:57:01.000000000 +0000 ++++ common/socket_utils.cc +@@ -28,6 +28,7 @@ using namespace std; + + #ifndef __WIN32__ + # include <sys/socket.h> ++# include <sys/time.h> + #else + # include "safeerrno.h" + |