Import of pkgsrc-2016Q3

This commit is contained in:
2016-10-14 07:49:11 +02:00
committed by Lionel Sambuc
parent 9d819b6d54
commit 1242aa1e36
35952 changed files with 949749 additions and 377083 deletions

View File

@@ -0,0 +1,18 @@
$NetBSD: patch-src_http.cpp,v 1.1 2015/10/03 12:08:37 bsiegert Exp $
Include <errno.h> rather than <sys/errno.h> because the latter doesn't
actually make `errno` available on NetBSD; while the former is required
to by the C standard
--- src/http.cpp.orig 2015-10-02 05:47:47.000000000 +0200
+++ src/http.cpp 2015-10-02 05:47:52.000000000 +0200
@@ -70,7 +70,7 @@
#include <unistd.h>
#include <strings.h>
-#include <sys/errno.h>
+#include <errno.h>
#include <sys/socket.h>
#include <sys/un.h>
#include <sys/uio.h>