From: Kamalesh Babulal Date: Thu, 3 Feb 2022 14:59:20 +0000 (-0700) Subject: configure: set version numbers for releases only X-Git-Tag: v3.0~244 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3d666b538098e7b9744e17669c389b822ce8c979;p=thirdparty%2Flibcgroup.git configure: set version numbers for releases only Let's set the version for releases only and set the development/main branch version to 0.0.0, that differentiate between development and releases. Suggested-by: Tom Hromatka Signed-off-by: Kamalesh Babulal Signed-off-by: Tom Hromatka --- diff --git a/configure.ac b/configure.ac index ebfd90a4..1b45fc1c 100644 --- a/configure.ac +++ b/configure.ac @@ -15,7 +15,7 @@ AC_PREREQ([2.69]) # In following section update all occurences of version, including soname -AC_INIT([libcgroup],[2.0]) +AC_INIT([libcgroup],[0.0.0]) AC_CONFIG_AUX_DIR([build-aux]) AC_CONFIG_MACRO_DIRS([m4]) @@ -25,9 +25,9 @@ AM_INIT_AUTOMAKE([foreign dist-bzip2 subdir-objects]) m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])]) # set library version, soname is libcgroup.so.MAJOR -AC_SUBST(LIBRARY_VERSION_MAJOR, 1) +AC_SUBST(LIBRARY_VERSION_MAJOR, 0) AC_SUBST(LIBRARY_VERSION_MINOR, 0) -AC_SUBST(LIBRARY_VERSION_RELEASE, 42) +AC_SUBST(LIBRARY_VERSION_RELEASE, 0) # we do not want static libraries #AC_DISABLE_STATIC