diff options
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/configure.ac b/configure.ac index 132c896..2b14c35 100644 --- a/configure.ac +++ b/configure.ac @@ -2,9 +2,8 @@ ##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--## m4_define([v_maj], [1]) m4_define([v_min], [7]) -m4_define([v_mic], [5]) -m4_define([v_rev], m4_esyscmd([(svnversion "${SVN_REPO_PATH:-.}" | grep -v '\(export\|Unversioned directory\)' || 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']))]) +m4_define([v_mic], [7]) +m4_define([v_rev], m4_esyscmd([(git rev-list --count HEAD 2>/dev/null || echo 0) | tr -d '\n']))dnl ##-- When released, remove the dnl on the below line m4_undefine([v_rev]) ##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--## @@ -58,7 +57,7 @@ AC_SUBST(VMAJ) AC_CANONICAL_BUILD AC_CANONICAL_HOST -requirement_eeze="ecore >= 1.7.5 eina >= 1.7.5 libudev" +requirement_eeze="ecore >= 1.7.7 eina >= 1.7.7 libudev" ### Checks for programs @@ -111,9 +110,9 @@ if test "x$eeze_mount" = "xyes";then AC_ARG_WITH([eject], [AS_HELP_STRING([--with-eject], [specify eject bin @<:@default=detect@:>@])], [with_eject=$withval], [with_eject="detect"]) PKG_CHECK_MODULES([LIBMOUNT], [mount >= 2.18.0]) mount_v=$(pkg-config --modversion mount) - PKG_CHECK_MODULES([ECORE_FILE], [ecore-file >= 1.7.5]) - PKG_CHECK_MODULES([EET], [eet >= 1.7.5]) - PKG_CHECK_MODULES([ECORE_CON], [ecore-con >= 1.7.5]) + PKG_CHECK_MODULES([ECORE_FILE], [ecore-file >= 1.7.7]) + PKG_CHECK_MODULES([EET], [eet >= 1.7.7]) + PKG_CHECK_MODULES([ECORE_CON], [ecore-con >= 1.7.7]) if test "x$with_mount" = "xdetect";then AC_PATH_PROG([with_mount], [mount], []) |