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=0
24 ########################################################
25 # For 'pre' releases the version will be #
27 # <MAJOR>.<MINOR>.<RELEASE>pre<PRE_RELEASE> #
29 # e.g. SAMBA_VERSION_PRE_RELEASE=1 #
31 ########################################################
32 SAMBA_VERSION_PRE_RELEASE=
34 ########################################################
35 # For 'rc' releases the version will be #
37 # <MAJOR>.<MINOR>.<RELEASE>rc<RC_RELEASE> #
39 # e.g. SAMBA_VERSION_RC_RELEASE=1 #
41 ########################################################
42 SAMBA_VERSION_RC_RELEASE=
44 ########################################################
45 # To mark SVN snapshots this should be set to 'yes' #
46 # in the development BRANCH, and set to 'no' only in #
47 # the SAMBA_X_X_RELEASE BRANCH #
49 # <MAJOR>.<MINOR>.<RELEASE>[...]cvs #
51 # e.g. SAMBA_VERSION_IS_SVN_SNAPSHOT=yes #
52 # -> "3.0.0-SVN-build-199" #
53 ########################################################
54 SAMBA_VERSION_IS_SVN_SNAPSHOT=yes
56 ########################################################
57 # This can be set by vendors if they want... #
58 # This can be a string constant or a function which #
59 # returns a string (const char *) #
61 # <MAJOR>.<MINOR>.<RELEASE>[...]-<VENDOR_SUFFIX> #
63 # Note the '-' is automaticaly added #
65 # e.g. SAMBA_VERSION_VENDOR_SUFFIX="VendorVersion" #
66 # -> "CVS 3.0.0rc2-VendorVersion" #
68 # Note: If you want to use a function, #
69 # then patch lib/version.c and add this function #
70 # there, because the symbol must be available in #
73 # const char *vendor_version(void) #
75 # return "VendorVersion"; #
78 # e.g. SAMBA_VERSION_VENDOR_SUFFIX=vendor_version() #
79 # -> "CVS 3.0.0rc2-VendorVersion" #
80 ########################################################
81 SAMBA_VERSION_VENDOR_SUFFIX=