blob: 51bed6e1265fbd7a36dbcb5ef3fca30f55f8c20f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
# Version strings
VER_PACKAGE=heimdal
VER_PACKAGE_NAME=Heimdal
VER_PACKAGE_BUGREPORT=https://github.com/heimdal/heimdal/issues
VER_PACKAGE_COPYRIGHT=Copyright (C) 1995-2016 Royal Institute of Technology, Stockholm, Sweden
VER_PACKAGE_COMPANY=www.h5l.org
VER_PRODUCT_MAJOR=7
VER_PRODUCT_MINOR=99
VER_PRODUCT_AUX=1
VER_PRODUCT_PATCH=0
# ------------------------------------------------------------
# The VER_OLD_BEGIN and VER_OLD_END version values are used in
# constructing the assembly publisher configuration. The end
# must be less than the VER_PRODUCT value. If the current
# version is 1.5.100.0 then VER_OLD_END version is
# 1.5.99.65535.
VER_OLD_BEGIN_MAJOR=7
VER_OLD_BEGIN_MINOR=99
VER_OLD_BEGIN_AUX=0
VER_OLD_BEGIN_PATCH=0
VER_OLD_END_MAJOR=7
VER_OLD_END_MINOR=99
VER_OLD_END_AUX=0
VER_OLD_END_PATCH=65535
VER_PACKAGE_VERSION=$(VER_PRODUCT_MAJOR).$(VER_PRODUCT_MINOR).$(VER_PRODUCT_AUX)
# Debug build flag
!ifndef NODEBUG
VER_DEBUG=1
!endif
# Define to 1 if this is a pre-release build. Undefine otherwise
VER_PRERELEASE=1
# Define to a valid string if this build DOES NOT follow normal
# release procedures. I.e. this is a private build whose version
# numbers are not co-ordinated with mainline development.
#VER_PRIVATE=Private build for MyCompany
# Define to a valid string if this build DOES follow normal release
# procedures, but is a variation of the standard files of the same
# version numbers.
#VER_SPECIAL=Special build for testing ticket 12345
|