diff options
author | sbd <sbd@pkgsrc.org> | 2012-01-24 02:55:11 +0000 |
---|---|---|
committer | sbd <sbd@pkgsrc.org> | 2012-01-24 02:55:11 +0000 |
commit | 1a0b43703b0a7fe24c10538839726caeee9f85df (patch) | |
tree | 259f9d9de1d1c547a5715f60cf57bc86c663d757 /www/fcgi | |
parent | 25c96cc238a8264d58c95b2945e7a36a089d18fe (diff) | |
download | pkgsrc-1a0b43703b0a7fe24c10538839726caeee9f85df.tar.gz |
Include <cstdio> for the EOF macro.
Diffstat (limited to 'www/fcgi')
-rw-r--r-- | www/fcgi/distinfo | 3 | ||||
-rw-r--r-- | www/fcgi/patches/patch-libfcgi_fcgio.cpp | 14 |
2 files changed, 16 insertions, 1 deletions
diff --git a/www/fcgi/distinfo b/www/fcgi/distinfo index 41477870101..26d0c4d3d00 100644 --- a/www/fcgi/distinfo +++ b/www/fcgi/distinfo @@ -1,6 +1,7 @@ -$NetBSD: distinfo,v 1.4 2005/02/24 14:08:30 wiz Exp $ +$NetBSD: distinfo,v 1.5 2012/01/24 02:55:11 sbd Exp $ SHA1 (fcgi-2.4.0.tar.gz) = 2329404159e8b8315e524b9eaf1de763202c6e6a RMD160 (fcgi-2.4.0.tar.gz) = df5c01b197bc72fca7abee184a34ec14253dd0f0 Size (fcgi-2.4.0.tar.gz) = 468682 bytes SHA1 (patch-aa) = 13577b77ae3d124a5f27be0e456b470180c99550 +SHA1 (patch-libfcgi_fcgio.cpp) = 542e620fd252d80696d6b53e34a65998c6545ad5 diff --git a/www/fcgi/patches/patch-libfcgi_fcgio.cpp b/www/fcgi/patches/patch-libfcgi_fcgio.cpp new file mode 100644 index 00000000000..748a4f4a6f2 --- /dev/null +++ b/www/fcgi/patches/patch-libfcgi_fcgio.cpp @@ -0,0 +1,14 @@ +$NetBSD: patch-libfcgi_fcgio.cpp,v 1.1 2012/01/24 02:55:11 sbd Exp $ + +include <cstdio> for the EOF macro. + +--- libfcgi/fcgio.cpp.orig 2012-01-24 02:50:08.663956233 +0000 ++++ libfcgi/fcgio.cpp +@@ -23,6 +23,7 @@ + #endif + + #include <limits.h> ++#include <cstdio> + #include "fcgio.h" + + using std::streambuf; |