-Emotion 0.0.1
+Emotion 1.0.0
+
+******************************************************************************
+
+ FOR ANY ISSUES PLEASE EMAIL:
+ enlightenment-devel@lists.sourceforge.net
+
+******************************************************************************
+
+Emotion is a video (and audio) codec playback library that acts as a
+front-end to libxine or gstreamer (or something else more generic)
+that provides and evas object as a control object and video output
+point. It makes using video API's much simpler and easier while it's
+at it.
+
+------------------------------------------------------------------------------
+COMPILING AND INSTALLING:
+
+ ./configure
+ make
+(do this as root unless you are installing in your users directories):
+ make install
##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##
##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##
-m4_define([v_maj], [0])
-m4_define([v_min], [2])
+m4_define([v_maj], [1])
+m4_define([v_min], [0])
m4_define([v_mic], [0])
m4_define([v_rev], m4_esyscmd([(svnversion "${SVN_REPO_PATH:-.}" | grep -v export || echo 0) | awk -F : '{printf("%s\n", $1);}' | tr -d ' :MSP\n']))
m4_if(v_rev, [0], [m4_define([v_rev], m4_esyscmd([git log 2> /dev/null | (grep -m1 git-svn-id || echo 0) | sed -e 's/.*@\([0-9]*\).*/\1/' | tr -d '\n']))])
##-- When released, remove the dnl on the below line
-dnl m4_undefine([v_rev])
+m4_undefine([v_rev])
##-- When doing snapshots - change soname. remove dnl on below line
m4_define([relname], [ver-pre-svn-07])
m4_define([v_rel], [-release relname])
##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##
##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##
-AC_INIT([emotion], [v_ver], [enlightenment-devel@lists.sourceforge.net])
+AC_INIT([emotion], [v_ver]-alpha, [enlightenment-devel@lists.sourceforge.net])
AC_PREREQ([2.60])
AC_CONFIG_SRCDIR([configure.ac])
AC_CONFIG_MACRO_DIR([m4])
Name: emotion
Description: Emotion evas based multimedia library
-@pkgconfig_requires_private@: @requirement_emotion@
Version: @VERSION@
Libs: -L${libdir} -lemotion
Cflags: -I${includedir}/emotion-@VMAJ@
extern "C" {
#endif
+#define EMOTION_VERSION_MAJOR 1
+#define EMOTION_VERSION_MINOR 0
+
+ typedef struct _Emotion_Version
+ {
+ int major;
+ int minor;
+ int micro;
+ int revision;
+ } Emotion_Version;
+
+ EAPI extern Emotion_Version *emotion_version;
+
/* api calls available */
/**
#include "Emotion.h"
#include "emotion_private.h"
+static Emotion_Version _version = { VMAJ, VMIN, VMIC, VREV };
+EAPI Emotion_Version *emotion_version = &_version;
+
EAPI int EMOTION_WEBCAM_UPDATE = 0;
struct ext_match_s