This file is indexed.

/usr/include/exiv2/config.h is in libexiv2-dev 0.25-3.1.

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
// config.h
//
#ifdef _MSC_VER
# ifdef EXV_MSVC_CONFIGURE
#  include "exv_msvc_configure.h"
# else
#  include "exv_msvc.h"
# endif
#else
# include "exv_conf.h"
#endif

// Linux GCC 4.8 appears to be confused about strerror_r
#ifndef EXV_STRERROR_R_CHAR_P
#ifdef  __gnu_linux__
#define EXV_STRERROR_R_CHAR_P
#endif
#endif

#if defined(__MINGW32__) || defined(__MINGW64__)
#ifndef __MING__
#define __MING__ 1
#endif
// Don't know why MinGW refuses to link libregex
#ifdef EXV_HAVE_REGEX
#undef EXV_HAVE_REGEX
#endif
#endif

#ifndef __CYGWIN__
#if defined(__CYGWIN32__) || defined(__CYGWIN64__)
#define __CYGWIN__ 1
#endif
#endif

#ifndef __LITTLE_ENDIAN__
#if    defined(__BYTE_ORDER__) && defined(__ORDER_LITTLE_ENDIAN__)
#if            __BYTE_ORDER__  ==         __ORDER_LITTLE_ENDIAN__
#define __LITTLE_ENDIAN__ 1
#endif
#endif
#endif

#ifndef __LITTLE_ENDIAN__
#if defined(_MSC_VER) || defined(__CYGWIN__) || defined(__MINGW__)
#define __LITTLE_ENDIAN__ 1
#endif
#endif

// That's all Folks!
//