diff options
author | Heiko Schaefer <heikos@users.sourceforge.net> | 2003-02-13 19:04:52 +0000 |
---|---|---|
committer | Heiko Schaefer <heikos@users.sourceforge.net> | 2003-02-13 19:04:52 +0000 |
commit | 63be400ebc6f14e329b4ea5af7237b50df8ce804 (patch) | |
tree | db4eea689628ebcebe2bdc42d1d5069e8d22ee0a /src/video_out/video_out_sdl.c | |
parent | ddd6fcdb2dfd70a575f865758f1fec3ff7b5c105 (diff) | |
download | xine-lib-63be400ebc6f14e329b4ea5af7237b50df8ce804.tar.gz xine-lib-63be400ebc6f14e329b4ea5af7237b50df8ce804.tar.bz2 |
FreeBSD compile fixes
CVS patchset: 4146
CVS date: 2003/02/13 19:04:52
Diffstat (limited to 'src/video_out/video_out_sdl.c')
-rw-r--r-- | src/video_out/video_out_sdl.c | 8 |
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" |