diff options
author | Michael Esemplare <michael.esemplare@gmail.com> | 2012-12-11 21:09:02 +0000 |
---|---|---|
committer | Tim-Philipp Müller <tim@centricular.net> | 2012-12-11 21:13:21 +0000 |
commit | 91bf909469c2a23fce40a577c667c0c79b2fa51f (patch) | |
tree | 035aeadfffda6ef115f7e860a488114568764ea4 | |
parent | 09512c5db11e7bd4490ac4e4cfeb8ccf0d1d2c57 (diff) | |
download | gstreamer-plugins-bad-91bf909469c2a23fce40a577c667c0c79b2fa51f.tar.gz |
hls: link to the right gst-plugins-base libs and fix libs order
https://bugzilla.gnome.org/show_bug.cgi?id=690030
-rw-r--r-- | gst/hls/Makefile.am | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gst/hls/Makefile.am b/gst/hls/Makefile.am index a926d08d6..7f4d3f28b 100644 --- a/gst/hls/Makefile.am +++ b/gst/hls/Makefile.am @@ -11,8 +11,9 @@ libgstfragmented_la_SOURCES = \ gstm3u8playlist.c libgstfragmented_la_CFLAGS = $(GST_PLUGINS_BAD_CFLAGS) $(GST_PLUGINS_BASE_CFLAGS) $(GST_BASE_CFLAGS) $(GST_CFLAGS) $(SOUP_CFLAGS) $(GIO_CFLAGS) -libgstfragmented_la_LIBADD = $(GST_BASE_LIBS) $(GST_LIBS) $(SOUP_LIBS) $(GIO_LIBS) $(LIBM) \ - -lgstpbutils-$(GST_API_VERSION) -lgstvideo-$(GST_API_VERSION) +libgstfragmented_la_LIBADD = \ + $(GST_PLUGINS_BASE_LIBS) -lgstpbutils-$(GST_API_VERSION) -lgstvideo-$(GST_API_VERSION) \ + $(GST_BASE_LIBS) $(GST_LIBS) $(SOUP_LIBS) $(GIO_LIBS) $(LIBM) libgstfragmented_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) -no-undefined libgstfragmented_la_LIBTOOLFLAGS = --tag=disable-static |