Commit 5594c61a authored by Christophe Massiot's avatar Christophe Massiot

Fixed a FreeBSD bug (again).

parent d307283d
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* aout_sdl.c : audio sdl functions library * aout_sdl.c : audio sdl functions library
***************************************************************************** *****************************************************************************
* Copyright (C) 1999, 2000 VideoLAN * Copyright (C) 1999, 2000 VideoLAN
* $Id: aout_sdl.c,v 1.16 2001/07/25 19:14:06 massiot Exp $ * $Id: aout_sdl.c,v 1.17 2001/07/27 16:40:20 massiot Exp $
* *
* Authors: Michel Kaempf <maxx@via.ecp.fr> * Authors: Michel Kaempf <maxx@via.ecp.fr>
* Samuel Hocevar <sam@zoy.org> * Samuel Hocevar <sam@zoy.org>
...@@ -38,11 +38,11 @@ ...@@ -38,11 +38,11 @@
#include <stdio.h> /* "intf_msg.h" */ #include <stdio.h> /* "intf_msg.h" */
#include <stdlib.h> /* calloc(), malloc(), free() */ #include <stdlib.h> /* calloc(), malloc(), free() */
#ifdef HAVE_SDL_SDL_H #if HAVE_SDL_SDL_H
# include <SDL/SDL.h> # include <SDL/SDL.h>
#elif defined(HAVE_SDL11_SDL_H) #elif HAVE_SDL11_SDL_H
# include <SDL11/SDL.h> # include <SDL11/SDL.h>
#elif defined(HAVE_SDL12_SDL_H) #elif HAVE_SDL12_SDL_H
# include <SDL12/SDL.h> # include <SDL12/SDL.h>
#else #else
# error # error
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* vout_sdl.c: SDL video output display method * vout_sdl.c: SDL video output display method
***************************************************************************** *****************************************************************************
* Copyright (C) 1998, 1999, 2000 VideoLAN * Copyright (C) 1998, 1999, 2000 VideoLAN
* $Id: vout_sdl.c,v 1.59 2001/07/25 19:14:06 massiot Exp $ * $Id: vout_sdl.c,v 1.60 2001/07/27 16:40:20 massiot Exp $
* *
* Authors: Samuel Hocevar <sam@zoy.org> * Authors: Samuel Hocevar <sam@zoy.org>
* Pierre Baillet <oct@zoy.org> * Pierre Baillet <oct@zoy.org>
...@@ -40,11 +40,11 @@ ...@@ -40,11 +40,11 @@
# include <netinet/in.h> /* BSD: struct in_addr */ # include <netinet/in.h> /* BSD: struct in_addr */
#endif #endif
#ifdef HAVE_SDL_SDL_H #if HAVE_SDL_SDL_H
# include <SDL/SDL.h> # include <SDL/SDL.h>
#elif defined(HAVE_SDL11_SDL_H) #elif HAVE_SDL11_SDL_H
# include <SDL11/SDL.h> # include <SDL11/SDL.h>
#elif defined(HAVE_SDL12_SDL_H) #elif HAVE_SDL12_SDL_H
# include <SDL12/SDL.h> # include <SDL12/SDL.h>
#else #else
# error # error
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment