This file is indexed.

/usr/lib/perl5/Gnome2/GConf/Install/gconfperl-version.h is in libgnome2-gconf-perl 1.044-4.

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 GCONF_MAJOR_VERSION (3)
#define GCONF_MINOR_VERSION (2)
#define GCONF_MICRO_VERSION (3)
#define GCONF_CHECK_VERSION(major,minor,micro) \
	(GCONF_MAJOR_VERSION > (major) || \
	 (GCONF_MAJOR_VERSION == (major) && GCONF_MINOR_VERSION > (minor)) || \
	 (GCONF_MAJOR_VERSION == (major) && GCONF_MINOR_VERSION == (minor) && GCONF_MICRO_VERSION >= (micro)))