diff options
author | Tim-Philipp Müller <tim@centricular.net> | 2012-09-29 12:36:08 +0100 |
---|---|---|
committer | Tim-Philipp Müller <tim@centricular.net> | 2012-09-29 12:36:08 +0100 |
commit | 4712247e4f54c51e718fb09319b5770dc33ace22 (patch) | |
tree | e46b6c2805e04a7d5dcecf36ba6c4e121190de68 | |
parent | 346de288460a89e97b45118b73ee0e1cbcb2bdc8 (diff) | |
download | gstreamer-plugins-bad-4712247e4f54c51e718fb09319b5770dc33ace22.tar.gz |
Remove some liboil references
https://bugzilla.gnome.org/show_bug.cgi?id=673285
-rw-r--r-- | ext/directfb/Makefile.am | 3 | ||||
-rw-r--r-- | ext/dts/gstdtsdec.c | 2 | ||||
-rw-r--r-- | ext/wayland/Makefile.am | 2 |
3 files changed, 3 insertions, 4 deletions
diff --git a/ext/directfb/Makefile.am b/ext/directfb/Makefile.am index 32b99adfb..ae9176fd7 100644 --- a/ext/directfb/Makefile.am +++ b/ext/directfb/Makefile.am @@ -6,8 +6,7 @@ libgstdfbvideosink_la_CFLAGS = $(GST_CFLAGS) $(GST_PLUGINS_BASE_CFLAGS) \ $(DIRECTFB_CFLAGS) libgstdfbvideosink_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) \ -lgstvideo-$(GST_API_VERSION) \ - -lgstinterfaces-$(GST_API_VERSION) \ - $(DIRECTFB_LIBS) $(LIBOIL_LIBS) + $(DIRECTFB_LIBS) libgstdfbvideosink_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) libgstdfbvideosink_la_LIBTOOLFLAGS = --tag=disable-static diff --git a/ext/dts/gstdtsdec.c b/ext/dts/gstdtsdec.c index 8208671cc..999758ef7 100644 --- a/ext/dts/gstdtsdec.c +++ b/ext/dts/gstdtsdec.c @@ -200,7 +200,7 @@ gst_dtsdec_class_init (GstDtsDecClass * klass) klass->dts_cpuflags = 0; #endif - GST_LOG ("CPU flags: dts=%08x, liboil=%08x", klass->dts_cpuflags, cpuflags); + GST_LOG ("CPU flags: dts=%08x, orc=%08x", klass->dts_cpuflags, cpuflags); } static void diff --git a/ext/wayland/Makefile.am b/ext/wayland/Makefile.am index dfdcf2105..6cb0bdfa9 100644 --- a/ext/wayland/Makefile.am +++ b/ext/wayland/Makefile.am @@ -5,7 +5,7 @@ libgstwaylandsink_la_CFLAGS = $(GST_CFLAGS) $(GST_PLUGINS_BASE_CFLAGS) \ $(WAYLAND_CFLAGS) libgstwaylandsink_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) \ -lgstvideo-$(GST_API_VERSION) \ - $(WAYLAND_LIBS) $(LIBOIL_LIBS) + $(WAYLAND_LIBS) libgstwaylandsink_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) libgstwaylandsink_la_LIBTOOLFLAGS = --tag=disable-static |