This file is indexed.

/usr/include/mgl2/config.h is in libmgl-dev 2.3.3+svn1216-1build3.

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

#define MGL_VER2 	3.3	// minor version of MathGL 2.* (like 1.3 for v.2.1.3)

#define MGL_USE_DOUBLE	1

#ifdef WIN32	// a man ask to use built-in font under Windows
#define MGL_DEF_FONT_NAME	""
#else
#define MGL_DEF_FONT_NAME	"STIX"
#endif

#if defined(_MSC_VER) || defined(__BORLANDC__)
#define MGL_SYS_NAN		0
#define MGL_HAVE_TYPEOF	0
#define MGL_HAVE_PTHREAD	0
#define MGL_HAVE_PTHREAD_FLTK	0
#define MGL_HAVE_ATTRIBUTE	0
#define MGL_HAVE_C99_COMPLEX	0
#else
#define MGL_HAVE_TYPEOF	1
#define MGL_SYS_NAN		1
#define MGL_HAVE_PTHREAD	0
#define MGL_HAVE_PTHREAD_FLTK	
#define MGL_HAVE_ATTRIBUTE	1
#define MGL_HAVE_C99_COMPLEX	1
#endif

#define MGL_SIZEOF_LONG	8
#define MGL_HAVE_LTDL	1
#define MGL_HAVE_RVAL	1
#define MGL_HAVE_ZLIB	1
#define MGL_HAVE_PNG	1
#define MGL_HAVE_GSL	1
#define MGL_HAVE_OPENGL	1
#define MGL_HAVE_OMP	1
#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