Blame maint/version.m4

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