summaryrefslogtreecommitdiff
path: root/src/video_out/video_out_sdl.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/video_out/video_out_sdl.c')
-rw-r--r--src/video_out/video_out_sdl.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/video_out/video_out_sdl.c b/src/video_out/video_out_sdl.c
index 8288bf94c..9ede5d8e0 100644
--- a/src/video_out/video_out_sdl.c
+++ b/src/video_out/video_out_sdl.c
@@ -17,7 +17,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*
- * $Id: video_out_sdl.c,v 1.21 2003/01/29 15:34:28 miguelfreitas Exp $
+ * $Id: video_out_sdl.c,v 1.22 2003/02/13 19:04:52 heikos Exp $
*
* video_out_sdl.c, Simple DirectMedia Layer
*
@@ -47,7 +47,11 @@
#include <string.h>
#include <inttypes.h>
#include <math.h>
-#include <SDL/SDL.h>
+#if defined (__FreeBSD__)
+# include <SDL11/SDL.h>
+#else
+# include <SDL/SDL.h>
+#endif
#include "xine.h"
#include "xine_internal.h"