-
-
Notifications
You must be signed in to change notification settings - Fork 4.6k
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
Raise minimum required Boost version to 1.55; fix deprecated Boost endians #2801
Raise minimum required Boost version to 1.55; fix deprecated Boost endians #2801
Conversation
This requires at least Boost 1.55.0. Please set minimum required Boost version to it. |
Is it ok if a check the version with the preprocessor?
|
I believe it is enough to adjust minimum version in CMake. PCL is currently targeting Ubuntu 16.04 as oldest Ubuntu version and this comes with 1.58.0. So forcing 1.55.0 should be ok. pcl/cmake/pcl_find_boost.cmake Lines 16 to 39 in 66a370b
So adjust |
👍 |
You'll also need to make changes here Lines 102 to 111 in 66a370b
This section is missing some refactoring. |
Thanks, I've updated |
This PR removes the following warning:
The use of BOOST_ENDIAN and BOOST_BYTE_ORDER is deprecated. Please include <boost/predef/other/endian.h> and use BOOST_ENDIAN_BYTE instead