1 | # $Id: Version.kmk 83121 2020-02-19 20:17:21Z vboxsync $
|
---|
2 | ## @file
|
---|
3 | # The VirtualBox version.
|
---|
4 | #
|
---|
5 | # This file gets included by the root Config.kmk.
|
---|
6 | #
|
---|
7 |
|
---|
8 | #
|
---|
9 | # Copyright (C) 2017-2020 Oracle Corporation
|
---|
10 | #
|
---|
11 | # This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
12 | # available from http://www.virtualbox.org. This file is free software;
|
---|
13 | # you can redistribute it and/or modify it under the terms of the GNU
|
---|
14 | # General Public License (GPL) as published by the Free Software
|
---|
15 | # Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
16 | # VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
17 | # hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
18 | #
|
---|
19 |
|
---|
20 | # Major version.
|
---|
21 | VBOX_VERSION_MAJOR = 6
|
---|
22 | # Minor version.
|
---|
23 | VBOX_VERSION_MINOR = 1
|
---|
24 | # This is the current build number. It should be increased every time we publish a
|
---|
25 | # new build. The define is available in every source file. Only even build numbers
|
---|
26 | # will be published, odd numbers are set during development.
|
---|
27 | VBOX_VERSION_BUILD = 97
|
---|
28 | # This can be overridden in LocalConfig.kmk or elsewhere.
|
---|
29 | # For the convention, see checks near the end of Config.kmk.
|
---|
30 | VBOX_BUILD_PUBLISHER =
|
---|
31 | # Just the BETA[n],ALPHA[n],RC[n] indicators. Set to empty string for release.
|
---|
32 | VBOX_VERSION_PRERELEASE =
|
---|
33 | # Force a release-type build with exactly matching Additions etc, even if
|
---|
34 | # our numbering does not say this is a release build, by setting this non-empty.
|
---|
35 | VBOX_RELEASE_EXACT_MATCH =
|
---|
36 |
|
---|
37 | # Fallback revision when there is no other source. See Config.kmk.
|
---|
38 | VBOX_SVN_REV_VERSION_FALLBACK := $(patsubst %:,, $Rev: 83121 $ )
|
---|