diff options
author | Edwin Groothuis <edwin@FreeBSD.org> | 2003-10-03 13:51:20 +0000 |
---|---|---|
committer | Edwin Groothuis <edwin@FreeBSD.org> | 2003-10-03 13:51:20 +0000 |
commit | ef229c587156d1557d14cda80f1066aa3968c84b (patch) | |
tree | 46605d71d57e4d23efaf608a7cd6c887644005d4 /games/freesci/files/patch-src::sound::pcmout_sdl.c | |
parent | - Use the correct patch, I forgot to sync dir before commit. (diff) |
Update Port: emulators/freesci
- Update to latest release
- Remove dependancy on libpng
- Add switches for SDL, GGI and DirectFB support
- Use X11 renderer as default
- portlint
Note: Since ScummVM is in games, this port should probably
go to games to. It is not directly an emulator, but an
game-data interpreter (just like ScummVM)
PR: ports/51731
Submitted by: Ulrich Spoerlein <q@uni.de>
Approved by: maintainer timeout
Notes
Notes:
svn path=/head/; revision=90129
Diffstat (limited to 'games/freesci/files/patch-src::sound::pcmout_sdl.c')
-rw-r--r-- | games/freesci/files/patch-src::sound::pcmout_sdl.c | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/games/freesci/files/patch-src::sound::pcmout_sdl.c b/games/freesci/files/patch-src::sound::pcmout_sdl.c new file mode 100644 index 000000000000..eb10e313d6a6 --- /dev/null +++ b/games/freesci/files/patch-src::sound::pcmout_sdl.c @@ -0,0 +1,35 @@ +--- src/gfx/drivers/sdl_driver.c.orig Tue Feb 4 21:12:10 2003 ++++ src/gfx/drivers/sdl_driver.c Tue Feb 4 21:16:42 2003 +@@ -45,7 +45,7 @@ + + #ifndef _MSC_VER + # include <sys/time.h> +-# include <SDL/SDL.h> ++# include <SDL11/SDL.h> + #else + # include <SDL.h> + #endif +--- src/sound/thread_ss_sdl.c.orig Tue Feb 4 21:15:31 2003 ++++ src/sound/thread_ss_sdl.c Tue Feb 4 21:16:25 2003 +@@ -32,8 +32,8 @@ + #ifdef HAVE_SDL + + #ifndef _MSC_VER +-# include <SDL/SDL.h> +-# include <SDL/SDL_thread.h> ++# include <SDL11/SDL.h> ++# include <SDL11/SDL_thread.h> + # include <sys/timeb.h> + #else + # include <SDL.h> +--- src/sound/pcmout_sdl.c.orig Tue Feb 4 21:15:37 2003 ++++ src/sound/pcmout_sdl.c Tue Feb 4 21:16:32 2003 +@@ -23,7 +23,7 @@ + + #ifndef _MSC_VER + # include <sys/time.h> +-# include <SDL/SDL.h> ++# include <SDL11/SDL.h> + #else + # include <SDL.h> + #endif |