| 1 | # Version strings
|
|---|
| 2 |
|
|---|
| 3 | VER_PACKAGE=heimdal
|
|---|
| 4 | VER_PACKAGE_NAME=Heimdal
|
|---|
| 5 | VER_PACKAGE_BUGREPORT=heimdal-bugs@h5l.org
|
|---|
| 6 | VER_PACKAGE_COPYRIGHT=Copyright (C) 1995-2011 Royal Institute of Technology, Stockholm, Sweden
|
|---|
| 7 | VER_PACKAGE_COMPANY=www.h5l.org
|
|---|
| 8 |
|
|---|
| 9 | # ------------------------------------------------------------
|
|---|
| 10 | # The current version number. The PATCH value is only used
|
|---|
| 11 | # to indicate file versions and is ignored by the installer
|
|---|
| 12 | # engine. To permit intermediate alpha/beta development
|
|---|
| 13 | # releases to be created and tested the AUX value is
|
|---|
| 14 | # incremented in multiples of 100. 1.5.1 == 1.5.100.0.
|
|---|
| 15 |
|
|---|
| 16 | VER_PRODUCT_MAJOR=1
|
|---|
| 17 | VER_PRODUCT_MINOR=5
|
|---|
| 18 | VER_PRODUCT_AUX=200
|
|---|
| 19 | VER_PRODUCT_PATCH=0
|
|---|
| 20 |
|
|---|
| 21 | # ------------------------------------------------------------
|
|---|
| 22 | # The VER_OLD_BEGIN and VER_OLD_END version values are used in
|
|---|
| 23 | # constructing the assembly publisher configuration. The end
|
|---|
| 24 | # must be less than the VER_PRODUCT value. If the current
|
|---|
| 25 | # version is 1.5.100.0 then VER_OLD_END version is
|
|---|
| 26 | # 1.5.99.65535.
|
|---|
| 27 |
|
|---|
| 28 | VER_OLD_BEGIN_MAJOR=1
|
|---|
| 29 | VER_OLD_BEGIN_MINOR=4
|
|---|
| 30 | VER_OLD_BEGIN_AUX=0
|
|---|
| 31 | VER_OLD_BEGIN_PATCH=0
|
|---|
| 32 |
|
|---|
| 33 | VER_OLD_END_MAJOR=1
|
|---|
| 34 | VER_OLD_END_MINOR=5
|
|---|
| 35 | VER_OLD_END_AUX=200
|
|---|
| 36 | VER_OLD_END_PATCH=65535
|
|---|
| 37 |
|
|---|
| 38 | VER_PACKAGE_VERSION=$(VER_PRODUCT_MAJOR).$(VER_PRODUCT_MINOR).$(VER_PRODUCT_AUX)
|
|---|
| 39 |
|
|---|
| 40 | # Define to 1 if this is a pre-release build. Undefine otherwise
|
|---|
| 41 | # VER_PRERELEASE=1
|
|---|
| 42 |
|
|---|
| 43 | # Define to a valid string if this build DOES NOT follow normal
|
|---|
| 44 | # release procedures. I.e. this is a private build whose version
|
|---|
| 45 | # numbers are not co-ordinated with mainline development.
|
|---|
| 46 |
|
|---|
| 47 | #VER_PRIVATE=Private build for MyCompany
|
|---|
| 48 |
|
|---|
| 49 | # Define to a valid string if this build DOES follow normal release
|
|---|
| 50 | # procedures, but is a variation of the standard files of the same
|
|---|
| 51 | # version numbers.
|
|---|
| 52 |
|
|---|
| 53 | #VER_SPECIAL=Special build for testing ticket 12345
|
|---|
| 54 |
|
|---|