summaryrefslogtreecommitdiffstats
path: root/meta/recipes-support/libproxy/libproxy/g++-namepace.patch
diff options
context:
space:
mode:
authorPhil Blundell <pb@pbcl.net>2014-01-13 12:41:17 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2014-01-14 11:33:55 +0000
commit90e8429de68ca288e9a6554e7d6e8ac1473334e7 (patch)
tree7632935fa39f0dfc63f31d9302dec2b5ecbd820c /meta/recipes-support/libproxy/libproxy/g++-namepace.patch
parenta90fb7b7329d8fdda53dc573349f1fc06b093c13 (diff)
downloadpoky-90e8429de68ca288e9a6554e7d6e8ac1473334e7.tar.gz
libproxy: Update to 0.4.11
Delete patches that have been applied upstream or are no longer necessary. Update LIC_FILES_CHKSUM to match new COPYING (whitespace changes only). (From OE-Core rev: 7c3b070b9cdd8b1d564d8900858cd31d11b20e6f) Signed-off-by: Phil Blundell <pb@pbcl.net> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-support/libproxy/libproxy/g++-namepace.patch')
-rw-r--r--meta/recipes-support/libproxy/libproxy/g++-namepace.patch22
1 files changed, 0 insertions, 22 deletions
diff --git a/meta/recipes-support/libproxy/libproxy/g++-namepace.patch b/meta/recipes-support/libproxy/libproxy/g++-namepace.patch
deleted file mode 100644
index cb90ab704e..0000000000
--- a/meta/recipes-support/libproxy/libproxy/g++-namepace.patch
+++ /dev/null
@@ -1,22 +0,0 @@
1include unistd.h to get prototypes of close() and read()
2otherwise g++ complains
3
4libproxy/url.cpp:439:13: error: 'close' was not declared in this scope
5libproxy/url.cpp:398:37: error: 'read' was not declared in this scope
6
7Signed-off-by: Khem Raj <raj.khem@gmail.com>
8
9Upstream-Status: Pending
10
11Index: libproxy-0.4.7/libproxy/url.cpp
12===================================================================
13--- libproxy-0.4.7.orig/libproxy/url.cpp 2012-03-01 09:51:11.254156247 -0800
14+++ libproxy-0.4.7/libproxy/url.cpp 2012-03-01 09:56:12.058171256 -0800
15@@ -33,6 +33,7 @@
16 #include <cstdlib> // For atoi()
17 #include <sys/stat.h> // For stat()
18 #include <algorithm> // For transform()
19+#include <unistd.h> // For close(), read()
20
21 #ifdef WIN32
22 #include <io.h>