stefan pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=a440c8da275600cffa142ca99b611cf9faf7bdad
commit a440c8da275600cffa142ca99b611cf9faf7bdad Author: Stefan Schmidt <s.schm...@samsung.com> Date: Thu Jan 2 13:54:39 2014 +0100 emotion: Fix missing include resulting in unknown type GstNavigationCommand At least on the gstreamer1 version in Fedora 19 this include is needed. Glima reported it as well and I think he also uses Fedora. modules/emotion/gstreamer1/emotion_gstreamer.c:643:4: error: unknown type name 'GstNavigationCommand' Even if other distros or gstreamer1 versions do not need this it should be safe to add it here. --- src/modules/emotion/gstreamer1/emotion_gstreamer.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/modules/emotion/gstreamer1/emotion_gstreamer.h b/src/modules/emotion/gstreamer1/emotion_gstreamer.h index b74f1ed..6d9b4a4 100644 --- a/src/modules/emotion/gstreamer1/emotion_gstreamer.h +++ b/src/modules/emotion/gstreamer1/emotion_gstreamer.h @@ -15,6 +15,7 @@ #include <glib-object.h> #include <gst/video/gstvideosink.h> #include <gst/video/video.h> +#include <gst/video/navigation.h> #include <gst/audio/audio.h> #include <gst/tag/tag.h> --