Files
poky/meta/recipes-support/libproxy/libproxy/g++-namepace.patch
Khem Raj 1abce24c1f libproxy: Fix build errors due to missing prototypes
g++ really does not like the missing prototypes
here we were missing close() and read() so include
unistd.h to get them

(From OE-Core rev: f32b30ef4711fe602a11549f77be06a0eef2fc0d)

Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2012-03-01 23:16:42 +00:00

23 lines
762 B
Diff

include unistd.h to get prototypes of close() and read()
otherwise g++ complains
libproxy/url.cpp:439:13: error: 'close' was not declared in this scope
libproxy/url.cpp:398:37: error: 'read' was not declared in this scope
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Upstream-Status: Pending
Index: libproxy-0.4.7/libproxy/url.cpp
===================================================================
--- libproxy-0.4.7.orig/libproxy/url.cpp 2012-03-01 09:51:11.254156247 -0800
+++ libproxy-0.4.7/libproxy/url.cpp 2012-03-01 09:56:12.058171256 -0800
@@ -33,6 +33,7 @@
#include <cstdlib> // For atoi()
#include <sys/stat.h> // For stat()
#include <algorithm> // For transform()
+#include <unistd.h> // For close(), read()
#ifdef WIN32
#include <io.h>