redmine

Version bump: 0.4.1

... ... @@ -2,7 +2,7 @@
# Process this file with autoconf to produce a configure script.
AC_PREREQ([2.59])
AC_INIT([clsync],[0.4],[Dmitry Yu Okunev <dyokunev@ut.mephi.ru>],,[https://github.com/xaionaro/clsync])
AC_INIT([clsync],[0.4.1],[Dmitry Yu Okunev <dyokunev@ut.mephi.ru>],,[https://github.com/xaionaro/clsync])
AC_CONFIG_SRCDIR([sync.c])
AC_CONFIG_MACRO_DIR([m4])
AM_INIT_AUTOMAKE([1.11 foreign -Wall -Wno-portability])
... ...
... ... @@ -483,7 +483,7 @@ pid_t fork_helper() {
}
int version() {
info(PROGRAM" v%i.%i"REVISION"\n\t"AUTHOR"\n\nCompiled with options"
info(PROGRAM" v%i.%i.%i"REVISION"\n\t"AUTHOR"\n\nCompiled with options"
#ifdef _DEBUG_SUPPORT
" -D_DEBUG_SUPPORT"
#endif
... ... @@ -538,7 +538,7 @@ int version() {
#ifdef HL_LOCKS
" -DHL_LOCKS"
#endif
, VERSION_MAJ, VERSION_MIN);
, VERSION_MAJ, VERSION_MID, VERSION_MIN);
exit(0);
}
... ...
... ... @@ -18,6 +18,7 @@
*/
#define PROGRAM "clsync"
#define VERSION_MAJ 0
#define VERSION_MIN 4
#define VERSION_MAJ 0
#define VERSION_MID 4
#define VERSION_MIN 1
#define AUTHOR "Dmitry Yu Okunev <dyokunev@ut.mephi.ru> 0x8E30679C"
... ...