/usr/include/schroedinger-1.0/schroedinger/schroversion.h is in libschroedinger-dev 1.0.11-2ubuntu1.
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 __SCHRO_VERSION_H__
#define __SCHRO_VERSION_H__
#define SCHRO_VERSION_MAJOR (1)
#define SCHRO_VERSION_MINOR (0)
#define SCHRO_VERSION_MICRO (11)
#define SCHRO_CHECK_VERSION(major,minor,micro) \
(SCHRO_VERSION_MAJOR > (major) || \
(SCHRO_VERSION_MAJOR == (major) && SCHRO_VERSION_MINOR > (minor)) || \
(SCHRO_VERSION_MAJOR == (major) && SCHRO_VERSION_MINOR == (minor) && \
SCHRO_VERSION_MICRO >= (micro)))
#endif
|