diff options
author | Michael Smith <msmith@xiph.org> | 2005-09-14 11:23:44 +0000 |
---|---|---|
committer | Michael Smith <msmith@xiph.org> | 2005-09-14 11:23:44 +0000 |
commit | 3984e73c4315e6816d361ad4638980f7d41e13db (patch) | |
tree | 55ae9a6afa5313dea0b239bb8c4b7be5385962b1 | |
parent | ce7ad5916600176abf4f3eb108e9d74583b06916 (diff) |
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)
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | gst/smpte/Makefile.am | 2 |
2 files changed, 7 insertions, 1 deletions
@@ -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. diff --git a/gst/smpte/Makefile.am b/gst/smpte/Makefile.am index 91d33177..add5327d 100644 --- a/gst/smpte/Makefile.am +++ b/gst/smpte/Makefile.am @@ -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) |