Changeset 1475 for trunk/m4/version.m4
- Timestamp:
- Apr 22, 2012, 2:41:57 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/m4/version.m4
r1472 r1475 20 20 # 21 21 22 m4_include([m4/my_version.m4]) 23 22 24 # 23 25 # Set version numbers, see http://apr.apache.org/versioning.html 24 26 # 25 # MAJOR - Modify when incompatible changes are made26 m4_define([MAJOR_VERSION], [0])27 # MINOR - Modify when new functionality is added28 m4_define([MINOR_VERSION], [10])29 # PATCH - Modify for every released patch30 m4_define([PATCH_VERSION], [0])31 27 32 # SVNDIGEST_DEV_BUILD - When rolling a tarball we set this to `false'. In 33 # repository value remains `true'. 34 m4_define([SVNDIGEST_DEV_BUILD], [true]) 35 36 37 ### 38 ### DO NOT EDIT BELOW THIS LINE 39 ### 40 41 # Setting SVNDIGEST_VERSION based upon settings above 42 m4_define([SVNDIGEST_VERSION],MAJOR_VERSION.MINOR_VERSION) 43 # disregarding patch number if zero 44 m4_define([SVNDIGEST_VERSION], m4_if(PATCH_VERSION,[0], SVNDIGEST_VERSION, 45 SVNDIGEST_VERSION.PATCH_VERSION)) 46 m4_define([SVNDIGEST_VERSION], m4_if(SVNDIGEST_DEV_BUILD, 47 [true], 48 SVNDIGEST_VERSION[pre], 49 SVNDIGEST_VERSION)) 50 28 # edit this line before release 29 MY_VERSION_early([0], [10], [0], [true])
Note: See TracChangeset
for help on using the changeset viewer.