[Mplayer-cvslog] CVS: main/libvo Makefile,1.8,1.9 vo_sdl.c,1.39,1.40 x11_common.c,1.20,1.21
GEREOFFY
arpi_esp at users.sourceforge.net
Tue Jun 5 20:40:46 CEST 2001
- Previous message: [Mplayer-cvslog] CVS: main/libao2 Makefile,1.4,1.5 ao_alsa5.c,1.1,1.2 ao_null.c,1.2,1.3 ao_oss.c,1.3,1.4 ao_sdl.c,1.7,1.8 audio_out.c,1.5,1.6 audio_out.h,1.1,1.2 audio_out_internal.h,1.1,1.2
- Next message: [Mplayer-cvslog] CVS: main/linux getch2.c,1.2,1.3
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Update of /cvsroot/mplayer/main/libvo
In directory usw-pr-cvs1:/tmp/cvs-serv7869/libvo
Modified Files:
Makefile vo_sdl.c x11_common.c
Log Message:
applied solaris8/netbsd/other fixes patch by Jürgen Keil <jk at tools.de>
Index: Makefile
===================================================================
RCS file: /cvsroot/mplayer/main/libvo/Makefile,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -r1.8 -r1.9
*** Makefile 2001/06/04 19:33:28 1.8
--- Makefile 2001/06/05 18:40:44 1.9
***************
*** 7,11 ****
OBJS=$(SRCS:.c=.o)
! CFLAGS = $(OPTFLAGS) -I. -I.. -DMPG12PLAY
# -I/usr/X11R6/include/
--- 7,11 ----
OBJS=$(SRCS:.c=.o)
! CFLAGS = $(OPTFLAGS) -I. -I.. -DMPG12PLAY $(SDL_INC)
# -I/usr/X11R6/include/
Index: vo_sdl.c
===================================================================
RCS file: /cvsroot/mplayer/main/libvo/vo_sdl.c,v
retrieving revision 1.39
retrieving revision 1.40
diff -C2 -r1.39 -r1.40
*** vo_sdl.c 2001/06/03 21:02:46 1.39
--- vo_sdl.c 2001/06/05 18:40:44 1.40
***************
*** 137,140 ****
--- 137,141 ----
};
+
#ifdef __FreeBSD__
#include <SDL11/SDL.h>
***************
*** 142,145 ****
--- 143,164 ----
#include <SDL/SDL.h>
#endif
+
+
+ #if defined(sun) && defined(__svr4__)
+ /* setenv is missing on solaris */
+ static void setenv(const char *name, const char *val, int _xx)
+ {
+ int len = strlen(name) + strlen(val) + 2;
+ char *env = malloc(len);
+
+ if (env != NULL) {
+ strcpy(env, name);
+ strcat(env, "=");
+ strcat(env, val);
+ putenv(env);
+ }
+ }
+ #endif
+
#define FS 0x01
Index: x11_common.c
===================================================================
RCS file: /cvsroot/mplayer/main/libvo/x11_common.c,v
retrieving revision 1.20
retrieving revision 1.21
diff -C2 -r1.20 -r1.21
*** x11_common.c 2001/05/31 22:32:58 1.20
--- x11_common.c 2001/06/05 18:40:44 1.21
***************
*** 177,181 ****
char buf[100];
KeySym keySym;
! XComposeStatus stat;
// unsigned long vo_KeyTable[512];
--- 177,181 ----
char buf[100];
KeySym keySym;
! static XComposeStatus stat;
// unsigned long vo_KeyTable[512];
_______________________________________________
Mplayer-cvslog mailing list
Mplayer-cvslog at lists.sourceforge.net
http://lists.sourceforge.net/lists/listinfo/mplayer-cvslog
- Previous message: [Mplayer-cvslog] CVS: main/libao2 Makefile,1.4,1.5 ao_alsa5.c,1.1,1.2 ao_null.c,1.2,1.3 ao_oss.c,1.3,1.4 ao_sdl.c,1.7,1.8 audio_out.c,1.5,1.6 audio_out.h,1.1,1.2 audio_out_internal.h,1.1,1.2
- Next message: [Mplayer-cvslog] CVS: main/linux getch2.c,1.2,1.3
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the MPlayer-cvslog
mailing list