Skip to content

Commit

Permalink
Bumped version number to 0.3.4
Browse files Browse the repository at this point in the history
  • Loading branch information
angelskieglazki committed Aug 28, 2019
1 parent e2bc562 commit 957e527
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 7 deletions.
9 changes: 6 additions & 3 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,13 @@ AC_SUBST([$1], ['$2'])

AC_PREREQ([2.69])

AC_INIT([teonet], [0.3.3], [[email protected]])
AC_DEFINE_SUBST(LIBRARY_MAJOR_VERSION, 158, [Teonet dynamic library version])
AC_INIT([teonet], [0.3.4], [Kirill Scherba <[email protected]>, Max Ponka <[email protected]>])

AC_DEFINE(COPYRIGHT, ["(c) Kirsoft Inc., 1996-2019"], [Teonet library copyright])
AC_DEFINE_SUBST(LIBRARY_CURRENT, 2, [teocli dynamic library version])
AC_DEFINE_SUBST(LIBRARY_REVISION, 3, [teocli dynamic library version])
AC_DEFINE_SUBST(LIBRARY_AGE, 2, [teocli dynamic library version])

AC_DEFINE(COPYRIGHT, ["(c) Teonet co., 1996-2019"], [Teonet library copyright])

AC_CONFIG_HEADERS([src/config/config.h])
AC_CONFIG_SRCDIR([src/teonet.hpp])
Expand Down
2 changes: 1 addition & 1 deletion embedded/teocli
4 changes: 2 additions & 2 deletions sh/make_package.c
Original file line number Diff line number Diff line change
Expand Up @@ -107,8 +107,8 @@ int main(int argc, char** argv) {
b_type == DEB ? argv[1] : "rpm", // 0
// Script parameters
version, // $1 Version
LIBRARY_MAJOR_VERSION, // $2 Library major version
LIBRARY_MAJOR_VERSION, // $3 Library version
PACKAGE_VERSION, // $2 Library major version
PACKAGE_VERSION, // $3 Library version
CI_BUILD_ID != NULL ? CI_BUILD_ID : (CIRCLE_BUILD_NUM != NULL ? CIRCLE_BUILD_NUM : "1"), // $4 Build
argc >= 3 ? argv[2] : b_type == DEB ? "amd64" : "x86_64", // $5 Architecture
b_type > DEB ? argv[1] : "deb" // $6 RPM subtype
Expand Down
2 changes: 1 addition & 1 deletion src/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ endif
# AM_LFLAGS=-Pcfg_yy -olex.yy.c
#lexer.c: lexer.l

libteonet_la_LDFLAGS = $(AM_LDFLAGS) -version-info $(LIBRARY_MAJOR_VERSION):0:0
libteonet_la_LDFLAGS = $(AM_LDFLAGS) -version-info $(LIBRARY_CURRENT):$(LIBRARY_REVISION):$(LIBRARY_AGE)
#49:0:0

uninstall-local:
Expand Down

0 comments on commit 957e527

Please sign in to comment.