diff options
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | ext/sdl/Makefile.am | 2 | ||||
-rw-r--r-- | ext/sdl/sdlvideosink.c | 2 |
3 files changed, 9 insertions, 2 deletions
@@ -1,3 +1,10 @@ +2007-06-06 Tim-Philipp Müller <tim at centricular dot net> + + * ext/sdl/Makefile.am: + * ext/sdl/sdlvideosink.c: (gst_sdlv_process_events): + Add GST_CFLAGS, which apparently somehow fixes the build somewhere + (#444499); initialise variable to avoid false compiler warning. + 2007-06-01 Wim Taymans <wim@fluendo.com> * docs/plugins/Makefile.am: diff --git a/ext/sdl/Makefile.am b/ext/sdl/Makefile.am index 556ad064..51f71a30 100644 --- a/ext/sdl/Makefile.am +++ b/ext/sdl/Makefile.am @@ -5,7 +5,7 @@ libgstsdl_la_SOURCES = \ sdlvideosink.c \ sdlaudiosink.c -libgstsdl_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(SDL_CFLAGS) +libgstsdl_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS) $(SDL_CFLAGS) libgstsdl_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) \ -lgstvideo-$(GST_MAJORMINOR) \ -lgstaudio-$(GST_MAJORMINOR) \ diff --git a/ext/sdl/sdlvideosink.c b/ext/sdl/sdlvideosink.c index 6c452409..4664c219 100644 --- a/ext/sdl/sdlvideosink.c +++ b/ext/sdl/sdlvideosink.c @@ -496,7 +496,7 @@ gst_sdlv_process_events (GstSDLVideoSink * sdlvideosink) { SDL_Event event; int numevents; - char *keysym; + char *keysym = NULL; do { SDL_PumpEvents (); |