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=3
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_PRE_RELEASE=a #
33 ########################################################
34 SAMBA_VERSION_REVISION=
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=1
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 # For 'beta' releases the version will be #
59 # <MAJOR>.<MINOR>.<RELEASE>beta<BETA_RELEASE> #
61 # e.g. SAMBA_VERSION_BETA_RELEASE=3 #
63 ########################################################
64 SAMBA_VERSION_BETA_RELEASE=
66 ########################################################
67 # For 'alpha' releases the version will be #
69 # <MAJOR>.<MINOR>.<RELEASE>alpha<ALPHA_RELEASE> #
71 # e.g. SAMBA_VERSION_ALPHA_RELEASE=1 #
73 ########################################################
74 SAMBA_VERSION_ALPHA_RELEASE=
76 ########################################################
77 # For 'test' releases the version will be #
79 # <MAJOR>.<MINOR>.<RELEASE>test<TEST_RELEASE> #
81 # e.g. SAMBA_VERSION_TEST_RELEASE=1 #
83 ########################################################
84 SAMBA_VERSION_TEST_RELEASE=
86 ########################################################
87 # To mark CVS snapshots this should be set to 'yes' #
88 # in the development BRANCH, and set to 'no' only in #
89 # the SAMBA_X_X_RELEASE BRANCH #
91 # <MAJOR>.<MINOR>.<RELEASE>[...]cvs #
93 # e.g. SAMBA_VERSION_IS_CVS_SNAPSHOT=yes #
95 ########################################################
96 SAMBA_VERSION_IS_CVS_SNAPSHOT=yes
98 ########################################################
99 # This can be set by vendors if they want... #
100 # This can be a string constant or a function which #
101 # returns a string (const char *) #
103 # <MAJOR>.<MINOR>.<RELEASE>[...]-<VENDOR_SUFFIX> #
105 # Note the '-' is automaticaly added #
107 # e.g. SAMBA_VERSION_VENDOR_SUFFIX="VendorVersion" #
108 # -> "CVS 3.0.0rc2-VendorVersion" #
110 # Note: If you want to use a function, #
111 # then patch lib/version.c and add this function #
112 # there, because the symbol must be available in #
115 # const char *vendor_version(void) #
117 # return "VendorVersion"; #
120 # e.g. SAMBA_VERSION_VENDOR_SUFFIX=vendor_version() #
121 # -> "CVS 3.0.0rc2-VendorVersion" #
122 ########################################################
123 SAMBA_VERSION_VENDOR_SUFFIX=