mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-24 02:31:03 +00:00
ext/sdl/: Add GST_CFLAGS, which apparently somehow fixes the build somewhere (#444499); initialise variable to avoid ...
Original commit message from CVS: * 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.
This commit is contained in:
parent
86cf2a601a
commit
23c17776e7
3 changed files with 9 additions and 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:
|
||||
|
|
|
@ -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) \
|
||||
|
|
|
@ -496,7 +496,7 @@ gst_sdlv_process_events (GstSDLVideoSink * sdlvideosink)
|
|||
{
|
||||
SDL_Event event;
|
||||
int numevents;
|
||||
char *keysym;
|
||||
char *keysym = NULL;
|
||||
|
||||
do {
|
||||
SDL_PumpEvents ();
|
||||
|
|
Loading…
Reference in a new issue