diff options
| author | Carl Hetherington <cth@carlh.net> | 2020-04-26 23:11:15 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2020-04-26 23:11:15 +0200 |
| commit | 5acc1161e26bdb98e47be591878252cf900d6fa9 (patch) | |
| tree | a338d54f48ac8ddece1c7ed678264a330c893033 /src | |
| parent | daae73955974625950ffe235b451ca33da785189 (diff) | |
Try to fix Centos 6 build.
Diffstat (limited to 'src')
| -rw-r--r-- | src/reel.cc | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/reel.cc b/src/reel.cc index 12ec9344..036147d6 100644 --- a/src/reel.cc +++ b/src/reel.cc @@ -53,6 +53,11 @@ #include <boost/foreach.hpp> #include <stdint.h> +/* Centos 6 does not have this */ +#ifndef INT64_MAX +#define INT64_MAX 0x7fffffffffffffff +#endif + using std::string; using std::list; using std::cout; |
