From: Adam Dickmeiss Date: Mon, 5 Jan 2009 10:19:32 +0000 (+0100) Subject: Renamed AC var YAZ_VERSION_HEX to VERSION_HEX X-Git-Tag: v3.0.42~27 X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=commitdiff_plain;h=83ba04bfd14a9089745f91ed45d8817339794e5e;hp=125918b4266de689eeee8067074a7da24c92e4e1 Renamed AC var YAZ_VERSION_HEX to VERSION_HEX --- diff --git a/configure.ac b/configure.ac index 521d05f..02ffbb9 100644 --- a/configure.ac +++ b/configure.ac @@ -394,8 +394,8 @@ dnl ------ versioning dnl WIN_FILEVERSION=`echo $PACKAGE_VERSION | $AWK 'BEGIN { FS = "."; } { m = $4; printf("%d,%d,%d,%d", $1, $2, $3 == "" ? "0" : $3, $4 == "" ? "1" : $4);}'` AC_SUBST([WIN_FILEVERSION]) -YAZ_VERSION_HEX=`echo $PACKAGE_VERSION | $AWK 'BEGIN { FS = "."; } { printf("%x", ($1 * 256 + $2) * 256 + $3);}'` -AC_SUBST([YAZ_VERSION_HEX]) +VERSION_HEX=`echo $PACKAGE_VERSION | $AWK 'BEGIN { FS = "."; } { printf("%x", ($1 * 256 + $2) * 256 + $3);}'` +AC_SUBST([VERSION_HEX]) if test -d ${srcdir}/.git; then VERSION_SHA1=`git show --pretty=format:%H|head -1` else diff --git a/include/yaz/yaz-version.h.in b/include/yaz/yaz-version.h.in index da6c22c..e440a8f 100644 --- a/include/yaz/yaz-version.h.in +++ b/include/yaz/yaz-version.h.in @@ -36,7 +36,7 @@ #define YAZ_VERSION "@VERSION@" /** \brief YAZ version as integer (for comparison purposes) */ -#define YAZ_VERSIONL 0x@YAZ_VERSION_HEX@ +#define YAZ_VERSIONL 0x@VERSION_HEX@ /** \brief YAZ file version for YAZ DLL (resource) */ #define YAZ_FILEVERSION @WIN_FILEVERSION@