This file is indexed.

/usr/include/mgl2/config.h is in libmgl-dev 2.2.2.1-3+b2.

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
#ifndef _MGL_CONFIG_H_
#define _MGL_CONFIG_H_

#define MGL_USE_DOUBLE	1
#define MGL_NO_DATA_A	0

#if defined(_MSC_VER) || defined(__BORLANDC__)
#define MGL_HAVE_PTHREAD	0
#else
#define MGL_HAVE_PTHREAD	1
#endif
#define MGL_HAVE_ZLIB	1
#define MGL_HAVE_PNG		1
#define MGL_HAVE_GSL		1
#define MGL_HAVE_OPENGL	1
#define MGL_HAVE_OMP		0
#define MGL_HAVE_JPEG	1
#define MGL_HAVE_GIF		1
#define MGL_HAVE_PDF		1
#define MGL_HAVE_HDF4	1
#define MGL_HAVE_HDF5	1
#define MGL_FONT_PATH	"/usr/share/mathgl/fonts"

#endif