diff options
author | unknown <tomas@poseidon.ndb.mysql.com> | 2004-11-04 12:26:49 +0000 |
---|---|---|
committer | unknown <tomas@poseidon.ndb.mysql.com> | 2004-11-04 12:26:49 +0000 |
commit | ed5fed3c8be8f4ec209c42dc057d417094c4e2eb (patch) | |
tree | e0810481a6b42358e8527b13ce4eb91cc71f0d10 /configure.in | |
parent | e981c836104675533a2eb6810f7c1606377b0491 (diff) | |
download | mariadb-git-ed5fed3c8be8f4ec209c42dc057d417094c4e2eb.tar.gz |
correct ndb version
upgrade compatability with 4.1.8
configure.in:
correct ndb version
ndb/src/common/util/version.c:
upgrade compatability with 4.1.8
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/configure.in b/configure.in index 8b5104cdb42..754494f7d70 100644 --- a/configure.in +++ b/configure.in @@ -4,6 +4,7 @@ dnl Process this file with autoconf to produce a configure script. AC_INIT(sql/mysqld.cc) AC_CANONICAL_SYSTEM # The Docs Makefile.am parses this line! +# remember to also change ndb version below and update version.c in ndb AM_INIT_AUTOMAKE(mysql, 5.0.2-alpha) AM_CONFIG_HEADER(config.h) @@ -13,10 +14,10 @@ DOT_FRM_VERSION=6 SHARED_LIB_VERSION=14:0:0 # ndb version -NDB_VERSION_MAJOR=3 -NDB_VERSION_MINOR=5 -NDB_VERSION_BUILD=3 -NDB_VERSION_STATUS="" +NDB_VERSION_MAJOR=5 +NDB_VERSION_MINOR=0 +NDB_VERSION_BUILD=2 +NDB_VERSION_STATUS="alpha" # Set all version vars based on $VERSION. How do we do this more elegant ? # Remember that regexps needs to quote [ and ] since this is run through m4 |