/usr/include/openbox/3.6/obrender/version.h is in openbox-dev 3.6.1-1ubuntu2.
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 | #ifndef rr__version_h
#define rr__version_h
#define RR_MAJOR_VERSION 3
#define RR_MINOR_VERSION 6
#define RR_MICRO_VERSION 32
#define RR_VERSION RR_MAJOR_VERSION.RR_MINOR_VERSION.RR_MICRO_VERSION
#define RR_CHECK_VERSION(major,minor,micro) \
(RR_MAJOR_VERSION > (major) || \
(RR_MAJOR_VERSION == (major) && RR_MINOR_VERSION > (minor)) || \
(RR_MAJOR_VERSION == (major) && RR_MINOR_VERSION == (minor) && \
RR_MICRO_VERSION >= (micro)))
#endif
|