mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-20 23:36:38 +00:00
Fixed configure.ac and ext/sdl/Makefile.am for sdl port to 0.9.
Original commit message from CVS: Fixed configure.ac and ext/sdl/Makefile.am for sdl port to 0.9.
This commit is contained in:
parent
d8025d0b03
commit
5e87884c76
4 changed files with 19 additions and 10 deletions
23
ChangeLog
23
ChangeLog
|
@ -1,14 +1,21 @@
|
|||
=== release 0.9.1 ===
|
||||
|
||||
2005-09-20 Edgard Lima <edgard.lima@indt.org.br>
|
||||
|
||||
* configure.ac:
|
||||
* ext/sdl/Makefile.am:
|
||||
Fixed Makefile.am - removed hard coded flags from Makefile.am.
|
||||
Added AC_PATH_XTRA to configure.ac to be used by Makefile.am.
|
||||
|
||||
2005-09-19 Edgard Lima <edgard.lima@indt.org.br>
|
||||
|
||||
* Makefile.am
|
||||
* configure.ac
|
||||
* ext/sdl/Makefile.am
|
||||
* ext/sdl/sdlvideosink.c
|
||||
* ext/sdl/sdlvideosink.h
|
||||
* PORTED_09
|
||||
Ported to 0.9.
|
||||
* Makefile.am:
|
||||
* configure.ac:
|
||||
* ext/sdl/Makefile.am:
|
||||
* ext/sdl/sdlvideosink.c:
|
||||
* PORTED_09:
|
||||
Ported to 0.9.
|
||||
|
||||
=== release 0.9.1 ===
|
||||
|
||||
2005-09-08 Flavio Oliveira <flavio.oliveira@indt.org.br>
|
||||
|
||||
|
|
2
common
2
common
|
@ -1 +1 @@
|
|||
Subproject commit 13022c3cb4558d201e2ddf3e65d2e36b16eedc4a
|
||||
Subproject commit cd4da6a319d9f92d28f7b8a3b412577e6de50b64
|
|
@ -369,6 +369,8 @@ dnl Check for X11
|
|||
dnl now try to find the HEADER
|
||||
AC_CHECK_HEADER(X11/Xlib.h, HAVE_X="yes", HAVE_X="no")
|
||||
|
||||
AC_PATH_XTRA
|
||||
|
||||
if test "x$HAVE_X" = "xno"
|
||||
then
|
||||
AC_MSG_NOTICE([cannot find X11 development files])
|
||||
|
|
|
@ -3,7 +3,7 @@ plugin_LTLIBRARIES = libgstsdlvideosink.la
|
|||
|
||||
libgstsdlvideosink_la_SOURCES = sdlvideosink.c
|
||||
libgstsdlvideosink_la_CFLAGS = $(GST_CFLAGS) $(X_CFLAGS) $(SDL_CFLAGS)
|
||||
libgstsdlvideosink_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) -L/usr/X11R6/lib/
|
||||
libgstsdlvideosink_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||
libgstsdlvideosink_la_LIBADD = $(SDL_LIBS) \
|
||||
$(top_builddir)/../gst-plugins-base/gst-libs/gst/interfaces/libgstinterfaces-$(GST_MAJORMINOR).la \
|
||||
$(top_builddir)/../gst-plugins-base/gst-libs/gst/video/libgstvideo-$(GST_MAJORMINOR).la \
|
||||
|
|
Loading…
Reference in a new issue