| [136] | 1 | ########################################################
|
|---|
| 2 | # SAMBA Version #
|
|---|
| 3 | # #
|
|---|
| 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 #
|
|---|
| 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 | ########################################################
|
|---|
| 26 | SAMBA_VERSION_MAJOR=3
|
|---|
| 27 | SAMBA_VERSION_MINOR=2
|
|---|
| [235] | 28 | SAMBA_VERSION_RELEASE=11
|
|---|
| [136] | 29 |
|
|---|
| 30 | ########################################################
|
|---|
| 31 | # Bug fix releases use a letter for the patch revision #
|
|---|
| 32 | # #
|
|---|
| 33 | # so SAMBA's version will be #
|
|---|
| 34 | # <MAJOR>.<MINOR>.<RELEASE><REVISION> #
|
|---|
| 35 | # #
|
|---|
| 36 | # e.g. SAMBA_VERSION_REVISION=a #
|
|---|
| 37 | # -> "2.2.8a" #
|
|---|
| 38 | ########################################################
|
|---|
| 39 | SAMBA_VERSION_REVISION=
|
|---|
| |
|---|