From 11b7e637e904a33c5043fb5397dab1662d48501c Mon Sep 17 00:00:00 2001 From: orignal Date: Thu, 12 Nov 2015 15:39:48 -0500 Subject: [PATCH] fixed complation error for boost 1.49 and gcc 4.7 and higher --- I2PControl.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/I2PControl.cpp b/I2PControl.cpp index 1dae4997..9a7543ca 100644 --- a/I2PControl.cpp +++ b/I2PControl.cpp @@ -1,5 +1,5 @@ // There is bug in boost 1.49 with gcc 4.7 coming with Debian Wheezy -#define GCC47_BOOST149 ((BOOST_VERSION == 104900) && (__GNUC__ == 4) && (__GNUC_MINOR__ == 7)) +#define GCC47_BOOST149 ((BOOST_VERSION == 104900) && (__GNUC__ == 4) && (__GNUC_MINOR__ >= 7)) #include "I2PControl.h" #include