Link smpte plugin against GST_BASE_LIBS, to get libgstbase; needed to build on win32 as this plugin uses collectpads ...

Original commit message from CVS:
Link smpte plugin against GST_BASE_LIBS, to get libgstbase; needed to
build on win32 as this plugin uses collectpads (bug 316204)
This commit is contained in:
Michael Smith 2005-09-14 11:23:44 +00:00
parent ce7ad59166
commit 3984e73c43
2 changed files with 7 additions and 1 deletions

View file

@ -1,3 +1,9 @@
2005-09-14 Michael Smith <msmith@fluendo.com>
* gst/smpte/Makefile.am:
Link against GST_BASE_LIBS, to get it linked against libgstbase;
needed to build on windows (bug 316204)
2005-09-12 Andy Wingo <wingo@pobox.com>
* autogen.sh (package): Now type 'make' to build gst-plugins-good.

View file

@ -5,5 +5,5 @@ libgstsmpte_la_SOURCES = gstsmpte.c gstmask.c barboxwipes.c paint.c
noinst_HEADERS = gstsmpte.h gstmask.h paint.h
libgstsmpte_la_CFLAGS = $(GST_CFLAGS) $(GST_PLUGINS_BASE_CFLAGS)
libgstsmpte_la_LIBADD = $(GST_PLUGINS_BASE_LIBS)
libgstsmpte_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) $(GST_BASE_LIBS)
libgstsmpte_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)