File codeblocks-boost-fix.patch of Package codeblocks
--- a/configure.ac
+++ b/configure.ac
@@ -424,7 +424,7 @@
AC_MSG_CHECKING([whether the Boost::System library is available])
AC_LANG_PUSH([C++])
ac_save_LIBS="$LIBS"
-if test $cb_boost_major -gt 1 -o \( $cb_boost_major -eq 1 -a $cb_boost_minor -ge 35 \); then
+if test \( $cb_boost_major -eq 1 -a $cb_boost_minor -ge 35 \) -a \( $cb_boost_major -eq 1 -a $cb_boost_minor -lt 89 \); then
# We need to explicitly link against the boost-system library (see: http://www.boost.org/doc/libs/1_35_0/libs/system/doc/index.html).
# We assume here that the boost-system library is available as a shared object
# (which is the case for most distros), so we add '-lboost_system' to LIBS.