The cirros image was rebuilt against the 3.13.0-83 kernel, drivers e1000e, igbvf...
[packages/trusty/cirros-testvm.git] / cirros-testvm / src-cirros / buildroot-2015.05 / package / libfcgi / 0001-eof.patch
1 [PATCH] fix build with C++ support and gcc >= 4.4
2
3 EOF is defined in stdio, so ensure it is included.
4
5 Based on similar patch by Markus Rothe:
6 http://comments.gmane.org/gmane.comp.web.fastcgi.devel/3205
7
8 Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
9 ---
10  libfcgi/fcgio.cpp |    1 +
11  1 file changed, 1 insertion(+)
12
13 Index: fcgi-2.4.0/libfcgi/fcgio.cpp
14 ===================================================================
15 --- fcgi-2.4.0.orig/libfcgi/fcgio.cpp
16 +++ fcgi-2.4.0/libfcgi/fcgio.cpp
17 @@ -22,6 +22,7 @@
18  #define DLLAPI  __declspec(dllexport)
19  #endif
20  
21 +#include <cstdio>
22  #include <limits.h>
23  #include "fcgio.h"
24