This file is indexed.

/usr/lib/x86_64-linux-gnu/perl5/5.20/GStreamer/Install/gst2perl-version.h is in libgstreamer-perl 0.19-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
#define GST_MAJOR_VERSION (0)
#define GST_MINOR_VERSION (10)
#define GST_MICRO_VERSION (36)
#define GST_CHECK_VERSION(major,minor,micro) \
	(GST_MAJOR_VERSION > (major) || \
	 (GST_MAJOR_VERSION == (major) && GST_MINOR_VERSION > (minor)) || \
	 (GST_MAJOR_VERSION == (major) && GST_MINOR_VERSION == (minor) && GST_MICRO_VERSION >= (micro)))