1 dnl @synopsis mc_VERSION
3 dnl Get current version of Midnight Commander from git tags
5 dnl @author Slava Zanko <slavazanko@gmail.com>
6 dnl @version 2021-04-04
8 dnl @copyright Free Software Foundation, Inc.
9 dnl @modified Andrew Borodin <aborodin@vmail.ru>
11 AC_DEFUN([mc_VERSION],[
12 if test -f ${srcdir}/mc-version.h; then
13 VERSION=$(grep '^#define MC_CURRENT_VERSION' ${srcdir}/mc-version.h | ${SED-sed} 's/.*"\(.*\)"$/\1/')
18 dnl Version without dashes for the man page
19 MAN_VERSION=`echo $VERSION | sed 's/^\([[^\-]]*\).*/\1/'`