source: vendor/current/VERSION

Last change on this file was 989, checked in by Silvan Scherrer, 9 years ago

Samba Server: update vendor to version 4.4.7

File size: 6.1 KB
Line 
1########################################################
2# SAMBA Version #
3# #
4# Samba versions are as follows #
5# 3.0.x New production series #
6# 3.0.x{tp,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 #
9# #
10# script/mkversion.sh #
11# will use this file to create #
12# include/version.h #
13# #
14########################################################
15
16########################################################
17# This are the main SAMBA version numbers #
18# #
19# <MAJOR>.<MINOR>.<RELEASE> #
20# #
21# e.g. SAMBA_VERSION_MAJOR=3 #
22# SAMBA_VERSION_MINOR=0 #
23# SAMBA_VERSION_RELEASE=0 #
24# -> "3.0.0" #
25########################################################
26SAMBA_VERSION_MAJOR=4
27SAMBA_VERSION_MINOR=4
28SAMBA_VERSION_RELEASE=7
29
30########################################################
31# If a official release has a serious bug #
32# a security release will have 'a' sufffix #
33# #
34# so SAMBA's version will be #
35# <MAJOR>.<MINOR>.<RELEASE><REVISION> #
36# #
37# e.g. SAMBA_VERSION_REVISION=a #
38# -> "2.2.8a" #
39########################################################
40SAMBA_VERSION_REVISION=
41
42########################################################
43# For 'tp' releases the version will be #
44# #
45# <MAJOR>.<MINOR>.<RELEASE>tp<TP_RELEASE> #
46# #
47# e.g. SAMBA_VERSION_TP_RELEASE=1 #
48# -> "4.0.0tp1" #
49########################################################
50SAMBA_VERSION_TP_RELEASE=
51
52########################################################
53# For 'alpha' releases the version will be #
54# #
55# <MAJOR>.<MINOR>.<RELEASE>alpha<TP_RELEASE> #
56# #
57# e.g. SAMBA_VERSION_ALPHA_RELEASE=1 #
58# -> "4.0.0alpha1" #
59########################################################
60SAMBA_VERSION_ALPHA_RELEASE=
61
62########################################################
63# For 'alpha' releases the version will be #
64# #
65# <MAJOR>.<MINOR>.<RELEASE>beta<TP_RELEASE> #
66# #
67# e.g. SAMBA_VERSION_BETA_RELEASE=1 #
68# -> "4.0.0beta1" #
69########################################################
70SAMBA_VERSION_BETA_RELEASE=
71
72########################################################
73# For 'pre' releases the version will be #
74# #
75# <MAJOR>.<MINOR>.<RELEASE>pre<PRE_RELEASE> #
76# #
77# e.g. SAMBA_VERSION_PRE_RELEASE=1 #
78# -> "2.2.9pre1" #
79########################################################
80SAMBA_VERSION_PRE_RELEASE=
81
82########################################################
83# For 'rc' releases the version will be #
84# #
85# <MAJOR>.<MINOR>.<RELEASE>rc<RC_RELEASE> #
86# #
87# e.g. SAMBA_VERSION_RC_RELEASE=1 #
88# -> "3.0.0rc1" #
89########################################################
90SAMBA_VERSION_RC_RELEASE=
91
92########################################################
93# To mark SVN snapshots this should be set to 'yes' #
94# in the development BRANCH, and set to 'no' only in #
95# the SAMBA_X_X_RELEASE BRANCH #
96# #
97# <MAJOR>.<MINOR>.<RELEASE>[...]-SVN-build-xxx #
98# #
99# e.g. SAMBA_VERSION_IS_SVN_SNAPSHOT=yes #
100# -> "3.0.0-SVN-build-199" #
101########################################################
102SAMBA_VERSION_IS_GIT_SNAPSHOT=no
103
104########################################################
105# This is for specifying a release nickname #
106# #
107# e.g. SAMBA_VERSION_RELEASE_NICKNAME=Nicky Nickname #
108# smbd --version will then give: #
109# -> "4.0.0-tp1-VendorVersion (Nicky Nickname)" #
110########################################################
111SAMBA_VERSION_RELEASE_NICKNAME=
112
113########################################################
114# This can be set by vendors if they want... #
115# This can be a string constant or a function which #
116# returns a string (const char *) #
117# #
118# <MAJOR>.<MINOR>.<RELEASE>[...]-<VENDOR_SUFFIX> #
119# #
120# Note the '-' is automaticaly added #
121# #
122# e.g. SAMBA_VERSION_VENDOR_SUFFIX=VendorVersion #
123# -> "3.0.0rc2-VendorVersion" #
124# #
125########################################################
126SAMBA_VERSION_VENDOR_SUFFIX=
127SAMBA_VERSION_VENDOR_PATCH=
Note: See TracBrowser for help on using the repository browser.