Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Köplinger <alex.koeplinger@outlook.com>2017-08-25 22:57:20 +0300
committerAlexander Köplinger <alex.koeplinger@outlook.com>2017-08-25 23:01:16 +0300
commit63b57ba7a1ca8e48823829d86b580daf47167eb6 (patch)
tree6d3fa8a23e4fd3e5d88e697f16f6344e49bbe38e
parentcbeae56621092bbec44cce7d8eec3a0323a6d7ee (diff)
[configure.ac] Don't include the .build number in runtime-corlib version (#5449)
It's causing unnecessary complexity because we need to create a new monolite when bumping the .build number in a major.minor.build version like from 5.2.0 -> 5.2.1 corlib version bumps are very rare in those cases and even then you can just increment the MONO_CORLIB_COUNTER variable. (cherry picked from commit ec9a95dd534b8f029f2d86a2fb9bc7167a87d2b9)
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 8ff32f2a175..dfa82c743a0 100644
--- a/configure.ac
+++ b/configure.ac
@@ -41,7 +41,7 @@ MONO_VERSION_BUILD=`echo $VERSION | cut -d . -f 3`
# since it's part of the corlib version (the prefix '1' in the full
# version number is to ensure the number isn't treated as octal in C)
MONO_CORLIB_COUNTER=3
-MONO_CORLIB_VERSION=`printf "1%02d%02d%02d%03d" $MONO_VERSION_MAJOR $MONO_VERSION_MINOR $MONO_VERSION_BUILD $MONO_CORLIB_COUNTER`
+MONO_CORLIB_VERSION=`printf "1%02d%02d%02d%03d" $MONO_VERSION_MAJOR $MONO_VERSION_MINOR 4 $MONO_CORLIB_COUNTER`
AC_DEFINE_UNQUOTED(MONO_CORLIB_VERSION,$MONO_CORLIB_VERSION,[Version of the corlib-runtime interface])
AC_SUBST(MONO_CORLIB_VERSION)