"Fossies" - the Fresh Open Source Software Archive 
Member "scalasca-2.6/vendor/otf2/build-config/common/m4/ac_cutest.m4" (19 Apr 2021, 941 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 ## -*- mode: autoconf -*-
2
3 ##
4 ## This file is part of the Score-P software (http://www.score-p.org)
5 ##
6 ## Copyright (c) 2009-2011,
7 ## RWTH Aachen University, Germany
8 ## Gesellschaft fuer numerische Simulation mbH Braunschweig, Germany
9 ## Technische Universitaet Dresden, Germany
10 ## University of Oregon, Eugene, USA
11 ## Forschungszentrum Juelich GmbH, Germany
12 ## German Research School for Simulation Sciences GmbH, Juelich/Aachen, Germany
13 ## Technische Universitaet Muenchen, Germany
14 ##
15 ## See the COPYING file in the package base directory for details.
16 ##
17
18
19 AC_DEFUN([AC_CUTEST_COLOR_TESTS],
20 [
21
22 AC_CHECK_HEADER(
23 [unistd.h],
24 [AC_CHECK_DECL(
25 [STDOUT_FILENO],
26 [AC_CHECK_FUNC(
27 [isatty],
28 [AC_DEFINE(
29 [CUTEST_USE_COLOR],
30 [1],
31 [Try to use colorful output for tests.])])
32 ],
33 [],
34 [#include <unistd.h>])])
35
36 ])