diff options
author | Martin Jansa <Martin.Jansa@gmail.com> | 2017-04-27 11:04:51 +0200 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2017-08-31 10:18:33 +0200 |
commit | ec9e5ed06256ad92c818474cdb490dc0d3a0d0a3 (patch) | |
tree | e16d2a838f4561d5538928a58f805e5f1373225a /meta-networking/recipes-support/curlpp | |
parent | 6775acb048dabd624c5c8197b683aba45ed91569 (diff) | |
download | meta-openembedded-ec9e5ed06256ad92c818474cdb490dc0d3a0d0a3.tar.gz |
recipes: remove blacklisted recipes
* as PNBLACKLIST message says, these recipes are blacklisted for long
time and nobody showed any interest to fix them
* remove all unused .patch and .inc files as well
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-networking/recipes-support/curlpp')
-rw-r--r-- | meta-networking/recipes-support/curlpp/curlpp/example21.cpp-remove-deprecated-code.patch | 47 |
1 files changed, 0 insertions, 47 deletions
diff --git a/meta-networking/recipes-support/curlpp/curlpp/example21.cpp-remove-deprecated-code.patch b/meta-networking/recipes-support/curlpp/curlpp/example21.cpp-remove-deprecated-code.patch deleted file mode 100644 index dae583d854..0000000000 --- a/meta-networking/recipes-support/curlpp/curlpp/example21.cpp-remove-deprecated-code.patch +++ /dev/null | |||
@@ -1,47 +0,0 @@ | |||
1 | example21.cpp: remove deprecated code | ||
2 | |||
3 | The deprecated code was no longer used, so remove it to avoid | ||
4 | compiling failure with -Werror=unused-function | ||
5 | ... | ||
6 | | example21.cpp:51:8: error: 'size_t {anonymous}::readData(char*, | ||
7 | size_t, size_t)' defined but not used [-Werror=unused-function] | ||
8 | | size_t readData(char *buffer, size_t size, size_t nitems) | ||
9 | ... | ||
10 | |||
11 | Upstream-Status: Pending | ||
12 | |||
13 | Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> | ||
14 | --- | ||
15 | examples/example21.cpp | 17 ----------------- | ||
16 | 1 file changed, 17 deletions(-) | ||
17 | |||
18 | diff --git a/examples/example21.cpp b/examples/example21.cpp | ||
19 | --- a/examples/example21.cpp | ||
20 | +++ b/examples/example21.cpp | ||
21 | @@ -39,23 +39,6 @@ | ||
22 | #include <curlpp/Options.hpp> | ||
23 | #include <curlpp/Exception.hpp> | ||
24 | |||
25 | -/* | ||
26 | - anonymous namespace to prevent name clash in case other examples using the same global entities | ||
27 | - would be compiled in the same project | ||
28 | -*/ | ||
29 | -namespace | ||
30 | -{ | ||
31 | - | ||
32 | -char *data = NULL; | ||
33 | - | ||
34 | -size_t readData(char *buffer, size_t size, size_t nitems) | ||
35 | -{ | ||
36 | - strncpy(buffer, data, size * nitems); | ||
37 | - return size * nitems; | ||
38 | -} | ||
39 | - | ||
40 | -} // namespace | ||
41 | - | ||
42 | int main(int argc, char *argv[]) | ||
43 | { | ||
44 | if(argc != 3) { | ||
45 | -- | ||
46 | 1.9.1 | ||
47 | |||