Showing
3 changed files
with
6 additions
and
5 deletions
@@ -2,7 +2,7 @@ | @@ -2,7 +2,7 @@ | ||
2 | # Process this file with autoconf to produce a configure script. | 2 | # Process this file with autoconf to produce a configure script. |
3 | 3 | ||
4 | AC_PREREQ([2.59]) | 4 | AC_PREREQ([2.59]) |
5 | -AC_INIT([clsync],[0.4],[Dmitry Yu Okunev <dyokunev@ut.mephi.ru>],,[https://github.com/xaionaro/clsync]) | 5 | +AC_INIT([clsync],[0.4.1],[Dmitry Yu Okunev <dyokunev@ut.mephi.ru>],,[https://github.com/xaionaro/clsync]) |
6 | AC_CONFIG_SRCDIR([sync.c]) | 6 | AC_CONFIG_SRCDIR([sync.c]) |
7 | AC_CONFIG_MACRO_DIR([m4]) | 7 | AC_CONFIG_MACRO_DIR([m4]) |
8 | AM_INIT_AUTOMAKE([1.11 foreign -Wall -Wno-portability]) | 8 | AM_INIT_AUTOMAKE([1.11 foreign -Wall -Wno-portability]) |
@@ -483,7 +483,7 @@ pid_t fork_helper() { | @@ -483,7 +483,7 @@ pid_t fork_helper() { | ||
483 | } | 483 | } |
484 | 484 | ||
485 | int version() { | 485 | int version() { |
486 | - info(PROGRAM" v%i.%i"REVISION"\n\t"AUTHOR"\n\nCompiled with options" | 486 | + info(PROGRAM" v%i.%i.%i"REVISION"\n\t"AUTHOR"\n\nCompiled with options" |
487 | #ifdef _DEBUG_SUPPORT | 487 | #ifdef _DEBUG_SUPPORT |
488 | " -D_DEBUG_SUPPORT" | 488 | " -D_DEBUG_SUPPORT" |
489 | #endif | 489 | #endif |
@@ -538,7 +538,7 @@ int version() { | @@ -538,7 +538,7 @@ int version() { | ||
538 | #ifdef HL_LOCKS | 538 | #ifdef HL_LOCKS |
539 | " -DHL_LOCKS" | 539 | " -DHL_LOCKS" |
540 | #endif | 540 | #endif |
541 | - , VERSION_MAJ, VERSION_MIN); | 541 | + , VERSION_MAJ, VERSION_MID, VERSION_MIN); |
542 | exit(0); | 542 | exit(0); |
543 | } | 543 | } |
544 | 544 |
@@ -18,6 +18,7 @@ | @@ -18,6 +18,7 @@ | ||
18 | */ | 18 | */ |
19 | 19 | ||
20 | #define PROGRAM "clsync" | 20 | #define PROGRAM "clsync" |
21 | -#define VERSION_MAJ 0 | 21 | +#define VERSION_MAJ 0 |
22 | -#define VERSION_MIN 4 | 22 | +#define VERSION_MID 4 |
23 | +#define VERSION_MIN 1 | ||
23 | #define AUTHOR "Dmitry Yu Okunev <dyokunev@ut.mephi.ru> 0x8E30679C" | 24 | #define AUTHOR "Dmitry Yu Okunev <dyokunev@ut.mephi.ru> 0x8E30679C" |
-
Please register or login to post a comment