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=22
30 ########################################################
31 # If a official release has a serious bug #
32 # a security release will have 'a' sufffix #
34 # so SAMBA's version will be #
35 # <MAJOR>.<MINOR>.<RELEASE><REVISION> #
37 # e.g. SAMBA_VERSION_REVISION=a #
39 ########################################################
40 SAMBA_VERSION_REVISION=
42 ########################################################
43 # For 'pre' releases the version will be #
45 # <MAJOR>.<MINOR>.<RELEASE>pre<PRE_RELEASE> #
47 # e.g. SAMBA_VERSION_PRE_RELEASE=1 #
49 ########################################################
50 SAMBA_VERSION_PRE_RELEASE=1
52 ########################################################
53 # For 'rc' releases the version will be #
55 # <MAJOR>.<MINOR>.<RELEASE>rc<RC_RELEASE> #
57 # e.g. SAMBA_VERSION_RC_RELEASE=1 #
59 ########################################################
60 SAMBA_VERSION_RC_RELEASE=
62 ########################################################
63 # To mark SVN snapshots this should be set to 'yes' #
64 # in the development BRANCH, and set to 'no' only in #
65 # the SAMBA_X_X_RELEASE BRANCH #
67 # <MAJOR>.<MINOR>.<RELEASE>[...]cvs #
69 # e.g. SAMBA_VERSION_IS_SVN_SNAPSHOT=yes #
70 # -> "3.0.0-SVN-build-199" #
71 ########################################################
72 SAMBA_VERSION_IS_SVN_SNAPSHOT=yes
74 ########################################################
75 # This can be set by vendors if they want... #
76 # This can be a string constant or a function which #
77 # returns a string (const char *) #
79 # <MAJOR>.<MINOR>.<RELEASE>[...]-<VENDOR_SUFFIX> #
81 # Note the '-' is automaticaly added #
83 # e.g. SAMBA_VERSION_VENDOR_SUFFIX="VendorVersion" #
84 # -> "CVS 3.0.0rc2-VendorVersion" #
86 # Note: If you want to use a function, #
87 # then patch lib/version.c and add this function #
88 # there, because the symbol must be available in #
91 # const char *vendor_version(void) #
93 # return "VendorVersion"; #
96 # e.g. SAMBA_VERSION_VENDOR_SUFFIX=vendor_version() #
97 # -> "CVS 3.0.0rc2-VendorVersion" #
98 ########################################################
99 SAMBA_VERSION_VENDOR_SUFFIX=