File: Version.base.m4

package info (click to toggle)
mpich 4.3.2-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 101,184 kB
  • sloc: ansic: 1,040,629; cpp: 82,270; javascript: 40,763; perl: 27,933; python: 16,041; sh: 14,676; xml: 14,418; f90: 12,916; makefile: 9,270; fortran: 8,046; java: 4,635; asm: 324; ruby: 103; awk: 27; lisp: 19; php: 8; sed: 4
file content (27 lines) | stat: -rw-r--r-- 1,010 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
dnl
dnl this m4 file expects to be processed with "autom4te -l M4sugar"
dnl
m4_init

dnl get the real version values
m4_include([maint/version.m4])dnl

dnl The m4sugar langauage switches the default diversion to "KILL", and causes
dnl all normal output to be thrown away.  We switch to the default (0) diversion
dnl to restore output.
m4_divert_push([])dnl
dnl
dnl now dump out a shell script header for those looking to change the version string
# This shell script is no longer the canonical version number script, but rather
# a byproduct of running ./maint/updatefiles using maint/Version.base.m4 as
# input.  The real version info is contained in maint/version.m4 instead.  It is
# intentionally not managed by the makefile system and may not be up to date at
# all times w.r.t. the version.m4 file.

dnl now provide shell versions so that simple scripts can still use
dnl $YAKSA_VERSION as before
YAKSA_VERSION=YAKSA_VERSION_m4
export YAKSA_VERSION

dnl balance our pushed diversion
m4_divert_pop([])dnl