summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim.muller@collabora.co.uk>2012-04-29 15:44:31 +0100
committerTim-Philipp Müller <tim.muller@collabora.co.uk>2012-04-29 15:45:30 +0100
commitfb310b0d4219627f2f18e48b62b8cc83f5c21f62 (patch)
tree23f9ace6ec91ad373401d80f1db660fffff0b6c0
parent962c87e6efb3fd0d58cdf7bc9b7f93df0fb4601a (diff)
shapewipe: fix CFLAGS/LIBADD order in Makefile.am
And remove GIO references, it's not used here. Might fix https://bugzilla.gnome.org/show_bug.cgi?id=675050
-rw-r--r--gst/shapewipe/Makefile.am4
1 files changed, 2 insertions, 2 deletions
diff --git a/gst/shapewipe/Makefile.am b/gst/shapewipe/Makefile.am
index 35cf5df03..2119d12fc 100644
--- a/gst/shapewipe/Makefile.am
+++ b/gst/shapewipe/Makefile.am
@@ -2,8 +2,8 @@ plugin_LTLIBRARIES = libgstshapewipe.la
libgstshapewipe_la_SOURCES = gstshapewipe.c
-libgstshapewipe_la_CFLAGS = $(GIO_CFLAGS) $(GST_CFLAGS) $(GST_CONTROLLER_CFLAGS) $(GST_PLUGINS_BASE_CFLAGS)
-libgstshapewipe_la_LIBADD = $(GIO_LIBS) $(GST_LIBS) $(GST_CONTROLLER_LIBS) $(GST_PLUGINS_BASE_LIBS) -lgstvideo-@GST_MAJORMINOR@
+libgstshapewipe_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_CONTROLLER_CFLAGS) $(GST_CFLAGS)
+libgstshapewipe_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) -lgstvideo-@GST_MAJORMINOR@ $(GST_CONTROLLER_LIBS) $(GST_LIBS)
libgstshapewipe_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
libgstshapewipe_la_LIBTOOLFLAGS = --tag=disable-static