diff options
author | Conrad Parker <conrad@users.sourceforge.net> | 2004-06-08 03:28:31 +0000 |
---|---|---|
committer | Conrad Parker <conrad@users.sourceforge.net> | 2004-06-08 03:28:31 +0000 |
commit | a3f67850d5243a4aa1ea1e57deb6b4e184d6aac8 (patch) | |
tree | cc48cdfb12d7510868ee7448a32e0dc5ca21f882 | |
parent | 2c00aecc6885c9b4dd24378083038d114fdf786a (diff) | |
download | xine-lib-a3f67850d5243a4aa1ea1e57deb6b4e184d6aac8.tar.gz xine-lib-a3f67850d5243a4aa1ea1e57deb6b4e184d6aac8.tar.bz2 |
applied patch from ozone, which he's tested on linux and osx.
"fixes building Xine with Fink's SDL tree on Mac OS X"
CVS patchset: 6658
CVS date: 2004/06/08 03:28:31
-rw-r--r-- | src/video_out/video_out_sdl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/video_out/video_out_sdl.c b/src/video_out/video_out_sdl.c index 3cede2844..49e529d3e 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.37 2004/04/26 17:50:10 mroi Exp $ + * $Id: video_out_sdl.c,v 1.38 2004/06/08 03:28:31 conrad Exp $ * * video_out_sdl.c, Simple DirectMedia Layer * @@ -50,7 +50,7 @@ #if defined (__FreeBSD__) # include <SDL11/SDL.h> #else -# include <SDL/SDL.h> +# include "SDL.h" #endif #define LOG_MODULE "video_out_sdl" |