Changeset 68940 in vbox
- Timestamp:
- Sep 29, 2017 5:00:20 PM (7 years ago)
- Location:
- trunk
- Files:
-
- 1 added
- 1 edited
-
Config.kmk (modified) (1 diff)
-
Version.kmk (added)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Config.kmk
r68935 r68940 199 199 endif 200 200 201 202 # 203 # The VirtualBox version. 204 # 205 206 # Major version. 207 VBOX_VERSION_MAJOR = 5 208 # Minor version. 209 VBOX_VERSION_MINOR = 2 210 # This is the current build number. It should be increased every time we publish a 211 # new build. The define is available in every source file. Only even build numbers 212 # will be published, odd numbers are set during development. 213 VBOX_VERSION_BUILD = 0 201 include $(PATH_ROOT)/Version.kmk 202 214 203 # The raw version string. This *must not* contain any other information/fields than 215 204 # major, minor and build revision (as it is now) -- also will be used for host/guest version 216 205 # comparison. 217 206 VBOX_VERSION_STRING_RAW = $(VBOX_VERSION_MAJOR).$(VBOX_VERSION_MINOR).$(VBOX_VERSION_BUILD) 218 # This can be overridden in LocalConfig.kmk or elsewhere.219 # For the convension, see checks near the end of Config.kmk.220 VBOX_BUILD_PUBLISHER =221 207 # Full version string (may include more than just x.y.z, but no spaces or other problematic chars). 222 208 # Note! The BETA[n],ALPHA[n],RC[n] indicators should be inserted before the 223 209 # publisher so that RTStrVersionCompare have a chance of comparing 224 210 # prerelease from different publishers correctly. 211 VBOX_VERSION_SUFFIX=$(ifeq $(VBOX_VERSION_PRERELEASE),,,_$(VBOX_VERSION_PRERELEASE)) 225 212 VBOX_VERSION_STRING = $(VBOX_VERSION_STRING_RAW)_RC1$(VBOX_BUILD_PUBLISHER) 226 # Just the BETA[n],ALPHA[n],RC[n] indicators. Set to empty string for release.227 VBOX_VERSION_PRERELEASE = RC1228 # Force a release-type build with exactly matching Additions etc, even if229 # our numbering does not say this is a release build.230 VBOX_RELEASE_EXACT_MATCH =231 213 232 214 # Force the additions.sh script to get an exact additions build when we're doing the release. 233 215 ifeq ($(int-mod $(VBOX_VERSION_BUILD),2),0) 234 VBOX_RELEASE_EXACT_MATCH=1 216 ifeq ($VBOX_VERSION_PRERELEASE),) 217 VBOX_RELEASE_EXACT_MATCH=1 218 endif 235 219 endif 236 220 ifneq ($(VBOX_RELEASE_EXACT_MATCH),) 237 #export VBOX_ADDITIONS_SH_MODE = release238 #export VBOX_DOCUMENTATION_SH_MODE = release239 #export VBOX_EFI_SH_MODE = release240 #export VBOX_EXTPACKS_SH_MODE = release221 export VBOX_ADDITIONS_SH_MODE = release 222 export VBOX_DOCUMENTATION_SH_MODE = release 223 export VBOX_EFI_SH_MODE = release 224 export VBOX_EXTPACKS_SH_MODE = release 241 225 endif 242 226
Note:
See TracChangeset
for help on using the changeset viewer.

