This file is indexed.

/usr/include/trilinos/Belos_config.h is in libtrilinos-belos-dev 12.10.1-3.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
/* Define if want to build with Amesos enabled */
/* #undef HAVE_BELOS_AMESOS */

/* Define if want to build with AztecOO enabled */
#define HAVE_BELOS_AZTECOO

/* Define if want to build with IFPACK enabled */
#define HAVE_BELOS_IFPACK

/* Define if want to build with Epetra enabled */
#define HAVE_BELOS_EPETRA

/* Define if want to build with EpetraExt enabled */
#define HAVE_BELOS_EPETRAEXT

/* Define if want to build with ML enabled */
#define HAVE_BELOS_ML

/* Define if want to build with tpetra enabled */
#define HAVE_BELOS_TPETRA

/* Define whether we want to time Tpetra MultiVector operations */
/* #undef HAVE_BELOS_TPETRA_TIMERS */

/* Define if want to build with thyra enabled */
#define HAVE_BELOS_THYRA

/* Define if want to build with triutils enabled */
#define HAVE_BELOS_TRIUTILS

/* Define if want to build belos-examples */
/* #undef HAVE_BELOS_EXAMPLES */

/* Define if want to build examples */
/* #undef HAVE_EXAMPLES */

/* Define if want to build belos-tests */
/* #undef HAVE_BELOS_TESTS */

/* Define if want to build tests */
/* #undef HAVE_TESTS */

/* define if we want to use MPI */
#define HAVE_MPI

/* define if the compiler supports the mutable keyword */
#define HAVE_MUTABLE

/* define if the compiler implements namespaces */
#define HAVE_NAMESPACES

/* define if the compiler accepts the new for scoping rules */
#define HAVE_NEW_FOR_SCOPING

/* Define if want to build teuchos-complex */
#define HAVE_TEUCHOS_COMPLEX

/* Define if we are building Belos TSQR with TSQR support */
/* #undef HAVE_BELOS_TSQR */

/* Define if we are building with Teuchos TimeMonitors enabled */
#define BELOS_TEUCHOS_TIME_MONITOR

/* Define if we are building with experimental code enabled */
/* #undef HAVE_BELOS_EXPERIMENTAL */

/* Add macros for declaring functions deprecated */
#ifndef BELOS_DEPRECATED
#  if (__GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 1))
#    define BELOS_DEPRECATED  __attribute__((__deprecated__))
#  else
#    define BELOS_DEPRECATED
#  endif
#endif

#ifndef BELOS_DEPRECATED_MSG
#  if (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 5))
#    define BELOS_DEPRECATED_MSG(MSG)  __attribute__((__deprecated__ (#MSG) ))
#  elif (__GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 1))
#    define BELOS_DEPRECATED_MSG(MSG)  __attribute__((__deprecated__))
#  else
#    define BELOS_DEPRECATED_MSG(MSG)
#  endif
#endif


/* Define to `__inline__' or `__inline' if that's what the C compiler
   calls it, or to nothing if 'inline' is not supported under any name.  */
#ifndef __cplusplus
/* #undef inline */
#endif