Heads up: GLEW soname bump in F16

David Tardon dtardon at redhat.com
Wed Jun 22 07:10:43 UTC 2011


On Tue, Jun 21, 2011 at 01:54:12PM -0400, Adam Jackson wrote:
> > supertux
> 
> An error message I'd never before seen:
> 
> /builddir/build/BUILD/supertux-0.3.3/src/supertux/screen_manager.cpp: In 
> member function 'void ScreenManager::process_events()':
> /builddir/build/BUILD/supertux-0.3.3/src/supertux/screen_manager.cpp:205:14: 
> error: the default argument for parameter 0 of 'void 
> ScreenManager::quit(ScreenFade*)' has not yet been parsed
> 
> Which... what?  I don't even.

This cryptic message means that NULL has not been defined. Patch
attached.

D.
-------------- next part --------------
diff -up supertux-0.3.3/src/supertux/screen_manager.hpp.dt supertux-0.3.3/src/supertux/screen_manager.hpp
--- supertux-0.3.3/src/supertux/screen_manager.hpp.dt	2011-06-22 08:41:31.941841762 +0200
+++ supertux-0.3.3/src/supertux/screen_manager.hpp	2011-06-22 08:41:33.957794718 +0200
@@ -17,6 +17,7 @@
 #ifndef HEADER_SUPERTUX_SUPERTUX_MAINLOOP_HPP
 #define HEADER_SUPERTUX_SUPERTUX_MAINLOOP_HPP
 
+#include <cstdlib>
 #include <memory>
 
 #include "scripting/thread_queue.hpp"


More information about the devel mailing list