-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Can't compile on CentOS 7 + Boost 1.69 from epel #2
Comments
I've copied test code and tried to compile it:
|
Attaching patch: diff --git a/configure.ac b/configure.ac
index d987ba1..f6d3561 100755
--- a/configure.ac
+++ b/configure.ac
@@ -777,7 +777,7 @@ AC_LINK_IFELSE([AC_LANG_PROGRAM([[
#if BOOST_VERSION <= 105600
boost::this_thread::sleep(boost::posix_time::milliseconds(0));
#else
- choke me
+ return 0
#endif
]])],
[boost_sleep=yes; AC_DEFINE(HAVE_WORKING_BOOST_SLEEP, 1, [Define this symbol if boost sleep works])], Then configure passes, but compilation fails because source code isn't ready for recent versions of boost. |
OK, I'll set a reminder! :) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi,
I'm trying to build a BCNA on docker
centos:7
using those snippets:I'm stuck at configure,
config.log
is in here: config.logLooks like it tries to include
boost/thread
and then it tries to build a test code to test if boost is working:Unfortunately, I'm getting error:
I have no idea how to pass through it.
I've tried boost 1.48, 1.53, 1.67, 1.68 both shared and static and I'm unable to pass through this step.
The text was updated successfully, but these errors were encountered: