[68940] | 1 | # $Id: Version.kmk 98445 2023-02-02 13:06:39Z vboxsync $
|
---|
| 2 | ## @file
|
---|
| 3 | # The VirtualBox version.
|
---|
| 4 | #
|
---|
[76931] | 5 | # This file gets included by the root Config.kmk.
|
---|
[68940] | 6 | #
|
---|
| 7 |
|
---|
| 8 | #
|
---|
[98103] | 9 | # Copyright (C) 2017-2023 Oracle and/or its affiliates.
|
---|
[68940] | 10 | #
|
---|
[96407] | 11 | # This file is part of VirtualBox base platform packages, as
|
---|
| 12 | # available from https://www.virtualbox.org.
|
---|
[68940] | 13 | #
|
---|
[96407] | 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 | #
|
---|
[68940] | 29 |
|
---|
| 30 | # Major version.
|
---|
[95039] | 31 | VBOX_VERSION_MAJOR = 7
|
---|
[68940] | 32 | # Minor version.
|
---|
[95039] | 33 | VBOX_VERSION_MINOR = 0
|
---|
[68940] | 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.
|
---|
[98367] | 37 | VBOX_VERSION_BUILD = 97
|
---|
[68940] | 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.
|
---|
[97035] | 42 | VBOX_VERSION_PRERELEASE =
|
---|
[68940] | 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.
|
---|
[97047] | 45 | VBOX_RELEASE_EXACT_MATCH =
|
---|
[81610] | 46 |
|
---|
[97049] | 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),)
|
---|
[98445] | 51 | VBOX_RELEASE_EXACT_MATCH := 1
|
---|
[97049] | 52 | endif
|
---|
| 53 | endif
|
---|
[98445] | 54 | VBOX_VERSION_PRERELEASE := BETA5
|
---|
[97049] | 55 | endif
|
---|
[96806] | 56 |
|
---|
[81610] | 57 | # Fallback revision when there is no other source. See Config.kmk.
|
---|
| 58 | VBOX_SVN_REV_VERSION_FALLBACK := $(patsubst %:,, $Rev: 98445 $ )
|
---|