1 ########################################################
4 # script/mkversion.sh #
5 # will use this file to create #
8 ########################################################
10 ########################################################
11 # This are the main SAMBA version numbers #
13 # <MAJOR>.<MINOR>.<RELEASE> #
15 # e.g. SAMBA_VERSION_MAJOR=3 #
16 # SAMBA_VERSION_MINOR=0 #
17 # SAMBA_VERSION_RELEASE=0 #
19 ########################################################
22 SAMBA_VERSION_RELEASE=20
24 ########################################################
25 # If a official release has a serious bug #
26 # a security release will have 'a' sufffix #
28 # so SAMBA's version will be #
29 # <MAJOR>.<MINOR>.<RELEASE><REVISION> #
31 # e.g. SAMBA_VERSION_REVISION=a #
33 ########################################################
34 SAMBA_VERSION_REVISION=a
36 ########################################################
37 # For 'pre' releases the version will be #
39 # <MAJOR>.<MINOR>.<RELEASE>pre<PRE_RELEASE> #
41 # e.g. SAMBA_VERSION_PRE_RELEASE=1 #
43 ########################################################
44 SAMBA_VERSION_PRE_RELEASE=
46 ########################################################
47 # For 'rc' releases the version will be #
49 # <MAJOR>.<MINOR>.<RELEASE>rc<RC_RELEASE> #
51 # e.g. SAMBA_VERSION_RC_RELEASE=1 #
53 ########################################################
54 SAMBA_VERSION_RC_RELEASE=
56 ########################################################
57 # To mark SVN snapshots this should be set to 'yes' #
58 # in the development BRANCH, and set to 'no' only in #
59 # the SAMBA_X_X_RELEASE BRANCH #
61 # <MAJOR>.<MINOR>.<RELEASE>[...]cvs #
63 # e.g. SAMBA_VERSION_IS_SVN_SNAPSHOT=yes #
64 # -> "3.0.0-SVN-build-199" #
65 ########################################################
66 SAMBA_VERSION_IS_SVN_SNAPSHOT=
68 ########################################################
69 # This can be set by vendors if they want... #
70 # This can be a string constant or a function which #
71 # returns a string (const char *) #
73 # <MAJOR>.<MINOR>.<RELEASE>[...]-<VENDOR_SUFFIX> #
75 # Note the '-' is automaticaly added #
77 # e.g. SAMBA_VERSION_VENDOR_SUFFIX="VendorVersion" #
78 # -> "CVS 3.0.0rc2-VendorVersion" #
80 # Note: If you want to use a function, #
81 # then patch lib/version.c and add this function #
82 # there, because the symbol must be available in #
85 # const char *vendor_version(void) #
87 # return "VendorVersion"; #
90 # e.g. SAMBA_VERSION_VENDOR_SUFFIX=vendor_version() #
91 # -> "CVS 3.0.0rc2-VendorVersion" #
92 ########################################################
93 SAMBA_VERSION_VENDOR_SUFFIX=