/usr/lib/perl5/Gtk2/Install/gtk2perl-versions.h is in libgtk2-perl 2:1.249-2.
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 ATK_MAJOR_VERSION (2)
#define ATK_MINOR_VERSION (10)
#define ATK_MICRO_VERSION (0)
#define ATK_CHECK_VERSION(major,minor,micro) \
(ATK_MAJOR_VERSION > (major) || \
(ATK_MAJOR_VERSION == (major) && ATK_MINOR_VERSION > (minor)) || \
(ATK_MAJOR_VERSION == (major) && ATK_MINOR_VERSION == (minor) && ATK_MICRO_VERSION >= (micro)))
|