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=2
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=
73 ########################################################
74 # This can be set by vendors if they want... #
75 # This can be a string constant or a function which #
76 # returns a string (const char *) #
78 # <MAJOR>.<MINOR>.<RELEASE>[...]-<VENDOR_SUFFIX> #
80 # Note the '-' is automaticaly added #
82 # e.g. SAMBA_VERSION_VENDOR_SUFFIX="VendorVersion" #
83 # -> "CVS 3.0.0rc2-VendorVersion" #
85 # Note: If you want to use a function, #
86 # then patch lib/version.c and add this function #
87 # there, because the symbol must be available in #
90 # const char *vendor_version(void) #
92 # return "VendorVersion"; #
95 # e.g. SAMBA_VERSION_VENDOR_SUFFIX=vendor_version() #
96 # -> "CVS 3.0.0rc2-VendorVersion" #
97 ########################################################
98 SAMBA_VERSION_VENDOR_SUFFIX=
99 SAMBA_VERSION_VENDOR_PATCH=