Import of pkgsrc-2014Q1

This commit is contained in:
2014-04-17 16:38:45 +02:00
parent 785076ae39
commit 9a8c06dafb
19365 changed files with 828089 additions and 278039 deletions

View File

@@ -0,0 +1,14 @@
$NetBSD: patch-src_cpp_server_pstream.cpp,v 1.1 2013/12/01 23:25:31 bsiegert Exp $
Socket functions need sys/types.h on MirBSD.
--- src/cpp/server_pstream.cpp.orig Thu Sep 19 12:47:06 2013
+++ src/cpp/server_pstream.cpp
@@ -22,6 +22,7 @@
#include <winsock.h>
typedef int socklen_t;
#else
+#include <sys/types.h>
#include <sys/socket.h>
#endif
#include <errno.h>