From f32b30ef4711fe602a11549f77be06a0eef2fc0d Mon Sep 17 00:00:00 2001 From: Khem Raj Date: Thu, 1 Mar 2012 10:08:03 -0800 Subject: 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 Signed-off-by: Khem Raj Signed-off-by: Richard Purdie --- .../libproxy/libproxy/g++-namepace.patch | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 meta/recipes-support/libproxy/libproxy/g++-namepace.patch (limited to 'meta/recipes-support/libproxy/libproxy/g++-namepace.patch') diff --git a/meta/recipes-support/libproxy/libproxy/g++-namepace.patch b/meta/recipes-support/libproxy/libproxy/g++-namepace.patch new file mode 100644 index 000000000..cb90ab704 --- /dev/null +++ b/meta/recipes-support/libproxy/libproxy/g++-namepace.patch @@ -0,0 +1,22 @@ +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 + +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 // For atoi() + #include // For stat() + #include // For transform() ++#include // For close(), read() + + #ifdef WIN32 + #include -- cgit v1.2.3