diff options
author | Bastien Nocera <hadess@hadess.net> | 2014-05-30 17:49:50 +0200 |
---|---|---|
committer | Bastien Nocera <hadess@hadess.net> | 2014-05-30 17:49:50 +0200 |
commit | 3964922b9b010800109d0ae6106dfd14298a754b (patch) | |
tree | 808670ef2ae33320d3de0b502e11fa20fbf3a70a /src/plugins/rotation | |
parent | 238a61bcf8dbf30d231b6daf445c05399944e472 (diff) | |
download | totem-3964922b9b010800109d0ae6106dfd14298a754b.tar.gz |
rotation: Remove unneeded Clutter dependency
There's no need for a direct clutter dependency, we use the video
widget's helper functions now.
Diffstat (limited to 'src/plugins/rotation')
-rw-r--r-- | src/plugins/rotation/Makefile.am | 4 | ||||
-rw-r--r-- | src/plugins/rotation/totem-rotation-plugin.vala | 2 |
2 files changed, 2 insertions, 4 deletions
diff --git a/src/plugins/rotation/Makefile.am b/src/plugins/rotation/Makefile.am index 7da6d704a..bca407fae 100644 --- a/src/plugins/rotation/Makefile.am +++ b/src/plugins/rotation/Makefile.am @@ -5,11 +5,11 @@ plugin_LTLIBRARIES = librotation.la plugin_in_files = rotation.plugin.in -# here we are explicitly specifying gtk+-3.0 and clutter-1.0 to use the vapi +# here we are explicitly specifying gtk+-3.0 to use the vapi # because vala still cannot parse the gir AM_VALAFLAGS = \ --girdir=$(top_builddir)/src \ - --pkg Totem-1.0 --pkg libpeas-1.0 --pkg cogl-pango-1.0 --pkg GtkClutter-1.0 --pkg Clutter-1.0 --pkg gtk+-3.0 bacon-video.vapi + --pkg Totem-1.0 --pkg libpeas-1.0 --pkg cogl-pango-1.0 --pkg gtk+-3.0 bacon-video.vapi librotation_la_SOURCES = totem-rotation-plugin.vala librotation_la_LDFLAGS = $(plugin_ldflags) diff --git a/src/plugins/rotation/totem-rotation-plugin.vala b/src/plugins/rotation/totem-rotation-plugin.vala index c2e3cb4b5..7a06d4ca1 100644 --- a/src/plugins/rotation/totem-rotation-plugin.vala +++ b/src/plugins/rotation/totem-rotation-plugin.vala @@ -19,8 +19,6 @@ using GLib; using Totem; using Peas; -using Clutter; -using GtkClutter; public const string GIO_ROTATION_FILE_ATTRIBUTE = "metadata::totem::rotation"; |