source: branches/0.5-stable/m4/version.m4 @ 1997

Last change on this file since 1997 was 1997, checked in by Peter, 14 years ago

Changes for future release 0.5.5

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 2.4 KB
Line 
1## $Id: version.m4 1997 2009-06-12 23:05:57Z peter $
2#
3# Copyright (C) 2008, 2009 Jari Häkkinen, Peter Johansson
4#
5# This file is part of the yat library, http://dev.thep.lu.se/yat
6#
7# The yat library is free software; you can redistribute it
8# and/or modify it under the terms of the GNU General Public License as
9# published by the Free Software Foundation; either version 3 of the
10# License, or (at your option) any later version.
11#
12# The yat library is distributed in the hope that it will be useful,
13# but WITHOUT ANY WARRANTY; without even the implied warranty of
14# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15# General Public License for more details.
16#
17# You should have received a copy of the GNU General Public License
18# along with yat. If not, see <http://www.gnu.org/licenses/>.
19#
20
21#
22# Set version numbers, see http://apr.apache.org/versioning.html 
23#
24# MAJOR - Modify when incompatible changes are made
25m4_define([MAJOR_VERSION], [0])
26# MINOR - Modify when new functionality is added
27m4_define([MINOR_VERSION], [5])
28# PATCH - Modify for every released patch
29m4_define([PATCH_VERSION], [5])
30
31# DEV_BUILD - When rolling a tarball we set this to `false'. In
32# repository value remains `true'.
33m4_define([DEV_BUILD], [true])
34
35# Library versioning (current:revision:age)
36#
37# How to update library version number
38#
39# current: Increment if the interface has additions, changes, removals.
40#
41# revision: Increment any time the source changes; set to 0 if you
42# incremented 'current'.
43#
44# age: Increment if any interfaces have been added; set to 0 if any
45# interfaces have been removed. removal has precedence over adding, so
46# set to 0 if both happened.
47#
48# See the libtool manual for further explanation of the numbers
49#
50# yat-0.3    undefined
51# yat-0.4    1:0:0
52# yat-0.4.1  1:0:0
53# yat-0.4.2  1:1:0
54# yat-0.4.3  1:2:0
55# yat-0.5    1:2:0*
56# yat-0.5.1  2:0:0
57# yat-0.5.2  2:1:0
58# yat-0.5.3  2:2:0
59# yat-0.5.4  2:3:0
60#
61# *Accidently, the libtool number was not updated for yat 0.5
62#
63m4_define([YAT_LT_VERSION_INFO], [2:4:0])
64
65###
66###  DO NOT EDIT BELOW THIS LINE
67###
68
69# Setting YAT_VERSION based upon settings above
70m4_define([YAT_VERSION],MAJOR_VERSION.MINOR_VERSION)
71# disregarding patch number if zero
72m4_define([YAT_VERSION], m4_if(PATCH_VERSION,[0], YAT_VERSION,
73                                  YAT_VERSION.PATCH_VERSION))
74m4_define([YAT_VERSION], m4_if(DEV_BUILD,[true], YAT_VERSION[pre],
75                                  YAT_VERSION))
76
Note: See TracBrowser for help on using the repository browser.