diff options
author | Juergen Keil <jkeil@users.sourceforge.net> | 2002-01-21 09:54:03 +0000 |
---|---|---|
committer | Juergen Keil <jkeil@users.sourceforge.net> | 2002-01-21 09:54:03 +0000 |
commit | 50e87e03b97211da1ea7387f01a3f776d71009de (patch) | |
tree | 01053d2aff6cd1d87e2888f523173caf88205660 /src | |
parent | 3aab0064e544b4b82ad815178e90c4fee3f415da (diff) | |
download | xine-lib-50e87e03b97211da1ea7387f01a3f776d71009de.tar.gz xine-lib-50e87e03b97211da1ea7387f01a3f776d71009de.tar.bz2 |
Use our own xine_setenv, for systems that don't have "setenv" in libc
CVS patchset: 1434
CVS date: 2002/01/21 09:54:03
Diffstat (limited to 'src')
-rw-r--r-- | src/video_out/video_out_sdl.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/video_out/video_out_sdl.c b/src/video_out/video_out_sdl.c index fa5bc8231..dbe19362e 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.1 2002/01/17 02:35:20 miguelfreitas Exp $ + * $Id: video_out_sdl.c,v 1.2 2002/01/21 09:54:03 jkeil Exp $ * * video_out_sdl.c, Simple DirectMedia Layer * @@ -544,8 +544,8 @@ vo_driver_t *init_video_out_plugin (config_values_t *config, void *visual_gen) { this->sdlflags = SDL_HWSURFACE | SDL_RESIZABLE; - setenv("SDL_VIDEO_YUV_HWACCEL", "1", 1); - setenv("SDL_VIDEO_X11_NODIRECTCOLOR", "1", 1); + xine_setenv("SDL_VIDEO_YUV_HWACCEL", "1", 1); + xine_setenv("SDL_VIDEO_X11_NODIRECTCOLOR", "1", 1); #ifdef HAVE_X11 this->display = visual->display; |