Give a sensible compiler error if Boost is too old.

This commit is contained in:
JoelKatz
2012-12-24 15:06:07 -08:00
parent 69a434763e
commit 6a8d31afd7

View File

@@ -3,6 +3,11 @@
#include <boost/date_time/posix_time/posix_time.hpp>
#include <boost/format.hpp>
#include <boost/version.hpp>
#if BOOST_VERSION < 104700
#error Boost 1.47 or later is required
#endif
#include <openssl/dh.h>
#include "types.h"