1 | # $Id: Version.kmk 98445 2023-02-02 13:06:39Z 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-2023 Oracle and/or its affiliates.
|
---|
10 | #
|
---|
11 | # This file is part of VirtualBox base platform packages, as
|
---|
12 | # available from https://www.virtualbox.org.
|
---|
13 | #
|
---|
14 | # This program is free software; you can redistribute it and/or
|
---|
15 | # modify it under the terms of the GNU General Public License
|
---|
16 | # as published by the Free Software Foundation, in version 3 of the
|
---|
17 | # License.
|
---|
18 | #
|
---|
19 | # This program is distributed in the hope that it will be useful, but
|
---|
20 | # WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
21 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
---|
22 | # General Public License for more details.
|
---|
23 | #
|
---|
24 | # You should have received a copy of the GNU General Public License
|
---|
25 | # along with this program; if not, see <https://www.gnu.org/licenses>.
|
---|
26 | #
|
---|
27 | # SPDX-License-Identifier: GPL-3.0-only
|
---|
28 | #
|
---|
29 |
|
---|
30 | # Major version.
|
---|
31 | VBOX_VERSION_MAJOR = 7
|
---|
32 | # Minor version.
|
---|
33 | VBOX_VERSION_MINOR = 0
|
---|
34 | # This is the current build number. It should be increased every time we publish a
|
---|
35 | # new build. The define is available in every source file. Only even build numbers
|
---|
36 | # will be published, odd numbers are set during development.
|
---|
37 | VBOX_VERSION_BUILD = 97
|
---|
38 | # This can be overridden in LocalConfig.kmk or elsewhere.
|
---|
39 | # For the convention, see checks near the end of Config.kmk.
|
---|
40 | VBOX_BUILD_PUBLISHER =
|
---|
41 | # Just the BETA[n],ALPHA[n],RC[n] indicators. Set to empty string for release.
|
---|
42 | VBOX_VERSION_PRERELEASE =
|
---|
43 | # Force a release-type build with exactly matching Additions etc, even if
|
---|
44 | # our numbering does not say this is a release build, by setting this non-empty.
|
---|
45 | VBOX_RELEASE_EXACT_MATCH =
|
---|
46 |
|
---|
47 | # darwin.arm64 will remain BETA for quite a while.
|
---|
48 | if1of ($(KBUILD_TARGET).$(KBUILD_TARGET_ARCH), darwin.arm64)
|
---|
49 | if $(VBOX_VERSION_BUILD) % 2 == 0
|
---|
50 | ifeq ($(VBOX_VERSION_PRERELEASE),)
|
---|
51 | VBOX_RELEASE_EXACT_MATCH := 1
|
---|
52 | endif
|
---|
53 | endif
|
---|
54 | VBOX_VERSION_PRERELEASE := BETA5
|
---|
55 | endif
|
---|
56 |
|
---|
57 | # Fallback revision when there is no other source. See Config.kmk.
|
---|
58 | VBOX_SVN_REV_VERSION_FALLBACK := $(patsubst %:,, $Rev: 98445 $ )
|
---|