1 ########################################################
4 # Samba versions are as follows #
5 # 3.0.x New production series #
6 # 3.0.x{pre,rc}y Preview/Testing & RC #
7 # 3.0.x[a-z] Patch releases #
8 # 3.0.x[a-z]-VENDOR-z Vendor patch releases #
10 # script/mkversion.sh #
11 # will use this file to create #
14 ########################################################
16 ########################################################
17 # This are the main SAMBA version numbers #
19 # <MAJOR>.<MINOR>.<RELEASE> #
21 # e.g. SAMBA_VERSION_MAJOR=3 #
22 # SAMBA_VERSION_MINOR=0 #
23 # SAMBA_VERSION_RELEASE=0 #
25 ########################################################
28 SAMBA_VERSION_RELEASE=0
30 ########################################################
31 # Bug fix releases use a letter for the patch revision #
33 # so SAMBA's version will be #
34 # <MAJOR>.<MINOR>.<RELEASE><REVISION> #
36 # e.g. SAMBA_VERSION_REVISION=a #
38 ########################################################
39 SAMBA_VERSION_REVISION=
41 ########################################################
42 # For 'pre' releases the version will be #
44 # <MAJOR>.<MINOR>.<RELEASE>pre<PRE_RELEASE> #
46 # e.g. SAMBA_VERSION_PRE_RELEASE=1 #
48 ########################################################
49 SAMBA_VERSION_PRE_RELEASE=
51 ########################################################
52 # For 'rc' releases the version will be #
54 # <MAJOR>.<MINOR>.<RELEASE>rc<RC_RELEASE> #
56 # e.g. SAMBA_VERSION_RC_RELEASE=1 #
58 ########################################################
59 SAMBA_VERSION_RC_RELEASE=
61 ########################################################
62 # To mark SVN snapshots this should be set to 'yes' #
63 # in the development BRANCH, and set to 'no' only in #
64 # the SAMBA_X_X_RELEASE BRANCH #
66 # <MAJOR>.<MINOR>.<RELEASE>[...]cvs #
68 # e.g. SAMBA_VERSION_IS_SVN_SNAPSHOT=yes #
69 # -> "3.0.0-SVN-build-199" #
70 ########################################################
71 SAMBA_VERSION_IS_GIT_SNAPSHOT=yes
73 ########################################################
74 # This can be set by vendors if they want... #
76 # <MAJOR>.<MINOR>.<RELEASE>[...]-<VENDOR_SUFFIX> #
78 # Note the '-' is automatically added #
80 # e.g. SAMBA_VERSION_VENDOR_SUFFIX="VendorVersion" #
81 # -> "CVS 3.0.0rc2-VendorVersion" #
83 # Note: If you want to use a function, take a look at #
84 # SAMBA_VERSION_VENDOR_FUNCTION #
86 ########################################################
87 SAMBA_VERSION_VENDOR_SUFFIX="devel"
88 SAMBA_VERSION_VENDOR_PATCH=
90 ########################################################
91 # This can be set by vendors if they want.. #
92 # This have to be a function which returns a string #
95 # Patch for example lib/version.c and add something #
96 # like the following example: #
98 # const char *samba_vendor_version(void) #
100 # return SAMBA_VERSION_OFFICIAL_STRING "-ENREDO-1.0" #
103 # -> "Version 3.2.0-ENREDO-1.0 #
104 ########################################################
105 SAMBA_VERSION_VENDOR_FUNCTION=