aboutsummaryrefslogtreecommitdiffstats
path: root/meta-webserver/recipes-support/fcgi/fcgi/Fix_EOF_not_declared_issue.patch
diff options
context:
space:
mode:
authorYangHaibo <b40869@freescale.com>2014-08-19 15:01:49 +0800
committerMartin Jansa <Martin.Jansa@gmail.com>2014-08-21 21:35:07 +0200
commitff134012611bc9f93237e4a4372b87c3ceaaf1a3 (patch)
tree547dce30d3751ba11b435d1469d797ec66fdd492 /meta-webserver/recipes-support/fcgi/fcgi/Fix_EOF_not_declared_issue.patch
parent6edd5b336455627f0540238d9d63e45d633cd249 (diff)
downloadmeta-openembedded-contrib-ff134012611bc9f93237e4a4372b87c3ceaaf1a3.tar.gz
fcgi: move recipe and patches to correct folder
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: YangHaibo <b40869@freescale.com>
Diffstat (limited to 'meta-webserver/recipes-support/fcgi/fcgi/Fix_EOF_not_declared_issue.patch')
-rw-r--r--meta-webserver/recipes-support/fcgi/fcgi/Fix_EOF_not_declared_issue.patch17
1 files changed, 17 insertions, 0 deletions
diff --git a/meta-webserver/recipes-support/fcgi/fcgi/Fix_EOF_not_declared_issue.patch b/meta-webserver/recipes-support/fcgi/fcgi/Fix_EOF_not_declared_issue.patch
new file mode 100644
index 0000000000..51ddeaac22
--- /dev/null
+++ b/meta-webserver/recipes-support/fcgi/fcgi/Fix_EOF_not_declared_issue.patch
@@ -0,0 +1,17 @@
+Upstream-Status: Pending
+
+Fix EOF not declared issue, following is the error log.
+fcgio.cpp:70:72: error: 'EOF' was not declared in this scope
+ if (FCGX_PutStr(pbase(), plen, this->fcgx) != plen) return EOF;
+
+Signed-off-by: Yang Haibo <b40869@freescale.com>
+--- fcgi-ori/libfcgi/fcgio.cpp 2014-07-28 18:01:00.000000000 +0800
++++ fcgi-2.4.0/libfcgi/fcgio.cpp 2014-07-28 18:01:22.000000000 +0800
+@@ -22,6 +22,7 @@
+ #define DLLAPI __declspec(dllexport)
+ #endif
+
++#include <stdio.h>
+ #include <limits.h>
+ #include "fcgio.h"
+