X-Git-Url: https://www.ginac.de/ginac.git//ginac.git?p=ginac.git;a=blobdiff_plain;f=configure.ac;h=63f6594a41d760fc9e79271192b9bbd22186b10e;hp=edee0de838a5337c2ef7300b0b62287c2bb258ca;hb=0289100f425e420da988a709cd52616b6d69d348;hpb=a06a27122b0a9087e9c64743940016c7e0176ce2 diff --git a/configure.ac b/configure.ac index edee0de8..63f6594a 100644 --- a/configure.ac +++ b/configure.ac @@ -1,32 +1,15 @@ -dnl Process this file with autoconf to produce a configure script. - -dnl GiNaC version number +dnl Pull version info from the ginac/version.h file. +dnl GiNaC release number: m4_define([ginac_major_version], GINAC_GET_VERSION([MAJOR])) m4_define([ginac_minor_version], GINAC_GET_VERSION([MINOR])) m4_define([ginac_micro_version], GINAC_GET_VERSION([MICRO])) m4_define([ginac_version], [ginac_major_version.ginac_minor_version.ginac_micro_version]) m4_define([ginac_release], [ginac_major_version.ginac_minor_version]) - dnl GiNaC library version information. It has very little to do with GiNaC dnl version number. In particular, library version is OS dependent. -dnl -dnl When making releases, do -dnl 1. Increment ginac_lt_revision -dnl 2. If any interfaces have been added, removed, or changed since the last -dnl release, increment ginac_lt_current and set ginac_lt_revision to 0. -dnl 3. If any interfaces have been added since the last release, increment -dnl ginac_lt_age. -dnl 4. If any interfaces have been removed since the last release, set -dnl ginac_lt_age to 0. -dnl -dnl Please note: the libtool naming scheme cannot guarantee that on all -dnl systems, the numbering is consecutive. It only guarantees that it is -dnl increasing. This doesn't matter, though: there is not incurred cost -dnl for numbers that are omitted, except for shrinking the available space -dnl of leftover numbers. Not something we need to worry about yet. ;-) -m4_define([ginac_lt_current], [3]) -m4_define([ginac_lt_revision], [0]) -m4_define([ginac_lt_age], [1]) +m4_define([ginac_lt_current], GINAC_GET_LTVERSION([CURRENT])) +m4_define([ginac_lt_age], GINAC_GET_LTVERSION([AGE])) +m4_define([ginac_lt_revision], GINAC_GET_LTVERSION([REVISION])) AC_INIT([GiNaC], ginac_version, [ginac-list@ginac.de], [ginac], [http://www.ginac.de/]) AC_PREREQ(2.59)