From: Giovanni F. <gaf...@gm...> - 2009-06-17 13:13:19
|
The include SDL.h is wrong, see: http://www.libsdl.org/faq.php?action=listentries&category=2#19 Patch follows. Best regards, -- Giovanni Funchal --- trunk/libvo/video_out_sdl.c.old +++ trunk/libvo/video_out_sdl.c.new @@ -31,7 +31,7 @@ #include <stdio.h> #include <stdlib.h> #include <string.h> -#include <SDL/SDL.h> +#include "SDL.h" #include <inttypes.h> #include "video_out.h" |