"Fossies" - the Fresh Open Source Software Archive 
Member "scalasca-2.6/vendor/cubew/build-config/m4/ac_cube_version_revision_vars.m4" (19 Apr 2021, 2006 Bytes) of package /linux/misc/scalasca-2.6.tar.gz:
As a special service "Fossies" has tried to format the requested text file into HTML format (style:
standard) with prefixed line numbers.
Alternatively you can here
view or
download the uninterpreted source code file.
1 ##*************************************************************************##
2 ## CUBE http://www.scalasca.org/ ##
3 ##*************************************************************************##
4 ## Copyright (c) 1998-2016 ##
5 ## Forschungszentrum Juelich GmbH, Juelich Supercomputing Centre ##
6 ## ##
7 ## Copyright (c) 2009-2015 ##
8 ## German Research School for Simulation Sciences GmbH, ##
9 ## Laboratory for Parallel Programming ##
10 ## ##
11 ## This software may be modified and distributed under the terms of ##
12 ## a BSD-style license. See the COPYING file in the package base ##
13 ## directory for details. ##
14 ##*************************************************************************##
15
16
17
18 AC_DEFUN([AC_SCOREP_CUBE_VARS],
19 [
20 AC_REQUIRE([AC_SCOREP_PACKAGE_AND_LIBRARY_VERSION])
21 # When working with a svn checkout, write a REVISION file. The REVISION
22 # file is updated during each configure call and also at make doxygen-user
23 # and make dist.
24
25 # When working with a make-dist-generated tarball, REVISION is already
26 # there.
27
28
29 cubew_version=`${srcdir}/build-config/common/generate-package-version.sh ${srcdir}/build-config/VERSION`
30 cubew_revision=${component_revision}
31 dnl cube_common_revision=${common_revision}
32
33 CUBEW_BUILD_REVISION=`echo $cubew_revision | sed -e "s,^.*:,,g" | sed -e "s,M$,,g"`
34 CUBEW_BUILD_VERSION=`echo $cubew_version`
35 CUBEW_BUILD_SHORT_NAME=$PACKAGE_NAME
36 CUBEW_BUILD_CODENAME=""
37
38 AC_SUBST([CUBEW_BUILD_VERSION])
39 AC_SUBST([CUBEW_BUILD_REVISION])
40 AC_SUBST([CUBEW_BUILD_SHORT_NAME])
41 AC_SUBST([CUBEW_BUILD_CODENAME])
42 ])
43
44
45