Blame maint/version.m4

Packit 0848f5
[#] start of __file__
Packit 0848f5
# 
Packit 0848f5
# (C) 2011 by Argonne National Laboratory.
Packit 0848f5
#     See COPYRIGHT in top-level directory.
Packit 0848f5
#
Packit 0848f5
# This file contains versioning information for MPICH's configure process.
Packit 0848f5
# This was previously (as "maint/Version") a bit of shell code that was sourced
Packit 0848f5
# by configure, but shell variables are not permitted in the modern form of
Packit 0848f5
# AC_INIT.  See "Rebuilding Makefiles" in the automake-1.11.1 manual.
Packit 0848f5
#
Packit 0848f5
# !!! NOTE !!! absolutely no shell code from this file will end up in the
Packit 0848f5
# configure script, including these shell comments.  Any shell code must live in
Packit 0848f5
# the configure script and/or use m4 values defined here.  We could consider
Packit 0848f5
# changing this by playing with diversions, but then we would probably be
Packit 0848f5
# playing with autotools-fire.
Packit 0848f5
Packit 0848f5
m4_define([MPICH_VERSION_m4],[3.2.1])dnl
Packit 0848f5
m4_define([MPICH_RELEASE_DATE_m4],[Fri Nov 10 20:21:01 CST 2017])dnl
Packit 0848f5
Packit 0848f5
# For libtool ABI versioning rules see:
Packit 0848f5
# http://www.gnu.org/software/libtool/manual/libtool.html#Updating-version-info
Packit 0848f5
#
Packit 0848f5
#     1. If the library source code has changed at all since the last
Packit 0848f5
#     update, then increment revision (`c:r:a' becomes `c:r+1:a').
Packit 0848f5
#
Packit 0848f5
#     2. If any interfaces have been added, removed, or changed since
Packit 0848f5
#     the last update, increment current, and set revision to 0.
Packit 0848f5
#
Packit 0848f5
#     3. If any interfaces have been added since the last public
Packit 0848f5
#     release, then increment age.
Packit 0848f5
#
Packit 0848f5
#     4. If any interfaces have been removed since the last public
Packit 0848f5
#     release, then set age to 0.
Packit 0848f5
Packit 0848f5
# libmpi so version only includes functionality defined in the MPI
Packit 0848f5
# standard, and does not include MPIX_ functions and C++ bindings.
Packit 0848f5
Packit 0848f5
m4_define([libmpi_so_version_m4],[13:1:1])dnl
Packit 0848f5
Packit 0848f5
[#] end of __file__