This file is indexed.

/usr/include/pdal/pdal_defines.h is in libpdal-dev 1.4.0-1+b1.

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
/*
 * pdal_defines.h.in is used by cmake to generate pdal_defines.h
 *
 * Do not edit pdal_defines.h!
 *
 * Note this is a C-style header.  Do not use C++ syntax.
 */
#ifndef PDAL_DEFINES_H
#define PDAL_DEFINES_H

/*
 * version settings
 */
#define PDAL_VERSION_MAJOR 1
#define PDAL_VERSION_MINOR 4
#define PDAL_VERSION_PATCH 0

#define PDAL_VERSION_STRING "1.4.0"

#define PDAL_PLUGIN_VERSION 1

/* (note this will look yucky until we get to major>=1) */
#define PDAL_VERSION_INTEGER ((PDAL_VERSION_MAJOR*100*100)+(PDAL_VERSION_MINOR*100)+PDAL_VERSION_PATCH)

#define PDAL_PLUGIN_INSTALL_PATH "/usr/lib"
/*
 * availability of 3rd-party libraries
 */
/* #undef PDAL_HAVE_HDF5 */
/* #undef PDAL_HAVE_LASZIP */
/* #undef PDAL_HAVE_LAZPERF */
#define PDAL_HAVE_LIBXML2

#define PDAL_ARBITER_ENABLED

/*
 * Debug or Release build?
 */
#define PDAL_BUILD_TYPE "RelWithDebInfo"

/*
 * platform OS
 */
/* #undef PDAL_PLATFORM_WIN32 */
/* #undef PDAL_PLATFORM_OSX */
/* #undef PDAL_PLATFORM_LINUX */

/*
 * platform compiler
 */
/* #undef PDAL_COMPILER_MSVC */
/* #undef PDAL_COMPILER_VC12 */
/* #undef PDAL_COMPILER_VC11 */
/* #undef PDAL_COMPILER_VC10 */
/* #undef PDAL_COMPILER_VC9 */
/* #undef PDAL_COMPILER_VC8 */
#define PDAL_COMPILER_GCC
/* #undef PDAL_COMPILER_CLANG */

/*
 * built pdal app as application bundle on OSX?
 */
/* #undef PDAL_APP_BUNDLE */

#endif