diff options
author | dholland <dholland@pkgsrc.org> | 2012-05-23 06:16:00 +0000 |
---|---|---|
committer | dholland <dholland@pkgsrc.org> | 2012-05-23 06:16:00 +0000 |
commit | 84ead59ca4cc195d28890ae5e15091f151c53b05 (patch) | |
tree | b62ac810581a91b70eddd8566fa56df83ef4854b /games/qonk/patches/patch-src_lisp_lexer.cpp | |
parent | eeae7bec9c147bcc7664aebe7d11f1114c4933b6 (diff) | |
download | pkgsrc-84ead59ca4cc195d28890ae5e15091f151c53b05.tar.gz |
Add missing <cstdio>, was failing in the linux build.
Diffstat (limited to 'games/qonk/patches/patch-src_lisp_lexer.cpp')
-rw-r--r-- | games/qonk/patches/patch-src_lisp_lexer.cpp | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/games/qonk/patches/patch-src_lisp_lexer.cpp b/games/qonk/patches/patch-src_lisp_lexer.cpp index b2d29201b6e..87957db09ea 100644 --- a/games/qonk/patches/patch-src_lisp_lexer.cpp +++ b/games/qonk/patches/patch-src_lisp_lexer.cpp @@ -1,12 +1,15 @@ -$NetBSD: patch-src_lisp_lexer.cpp,v 1.1 2011/12/05 22:45:19 joerg Exp $ +$NetBSD: patch-src_lisp_lexer.cpp,v 1.2 2012/05/23 06:16:00 dholland Exp $ ---- src/lisp/lexer.cpp.orig 2011-12-05 21:37:43.000000000 +0000 +Add missing headers. + +--- src/lisp/lexer.cpp.orig 2007-09-14 05:43:03.000000000 +0000 +++ src/lisp/lexer.cpp -@@ -19,6 +19,7 @@ +@@ -19,6 +19,8 @@ // Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. #include <sstream> #include <stdexcept> +#include <cstring> ++#include <cstdio> #include "lexer.hpp" #include "translation.hpp" |