From 91bf909469c2a23fce40a577c667c0c79b2fa51f Mon Sep 17 00:00:00 2001 From: Michael Esemplare Date: Tue, 11 Dec 2012 21:09:02 +0000 Subject: [PATCH] hls: link to the right gst-plugins-base libs and fix libs order https://bugzilla.gnome.org/show_bug.cgi?id=690030 --- gst/hls/Makefile.am | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/gst/hls/Makefile.am b/gst/hls/Makefile.am index a926d08d64..7f4d3f28b5 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