source: branches/0.4-stable/build_support/version.m4 @ 1624

Last change on this file since 1624 was 1624, checked in by Peter, 15 years ago

fixes #461. Also modified implementation of cdf_hypergeometric_P, which may cause conflict with modifications done in trunk (refs #87). If so, go with the trunk version (which uses GSL 1.8).

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 2.3 KB
Line 
1## $Id: version.m4 1624 2008-11-12 22:10:52Z peter $
2#
3# Copyright (C) 2008 Jari Häkkinen, Peter Johansson
4#
5# This file is part of the yat library, http://trac.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 2 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 this program; if not, write to the Free Software
19# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
20# 02111-1307, USA.
21#
22
23#
24# Set version numbers, see http://apr.apache.org/versioning.html 
25#
26# MAJOR - Modify when incompatible changes are made
27m4_define([MAJOR_VERSION], [0])
28# MINOR - Modify when new functionality is added
29m4_define([MINOR_VERSION], [4])
30# PATCH - Modify for every released patch
31m4_define([PATCH_VERSION], [3])
32
33# DEV_BUILD - When rolling a tarball we set this to `false'. In
34# repository value remains `true'.
35m4_define([DEV_BUILD], [true])
36
37# Library versioning (current:revision:age)
38#
39# How to update library version number
40#
41# current: Increment if the interface has additions, changes, removals.
42#
43# revision: Increment any time the source changes; set to 0 if you
44# incremented 'current'.
45#
46# age: Increment if any interfaces have been added; set to 0 if any
47# interfaces have been removed. removal has precedence over adding, so
48# set to 0 if both happened.
49#
50# See the libtool manual for further explanation of the numbers
51#
52# yat-0.3    undefined
53# yat-0.4    1:0:0
54# yat-0.4.1  1:0:0
55# yat-0.4.2  1:1:0
56# yat-0.4.3  1:2:0
57#
58m4_define([LT_VERSION], [1:2:0])
59
60
61###
62###  DO NOT EDIT BELOW THIS LINE
63###
64
65# Setting YAT_VERSION based upon settings above
66m4_define([YAT_VERSION],MAJOR_VERSION.MINOR_VERSION)
67# disregarding patch number if zero
68m4_define([YAT_VERSION], m4_if(PATCH_VERSION,[0], YAT_VERSION,
69                                  YAT_VERSION.PATCH_VERSION))
70m4_define([YAT_VERSION], m4_if(DEV_BUILD,[true], YAT_VERSION[pre],
71                                  YAT_VERSION))
72
Note: See TracBrowser for help on using the repository browser.