-
-
Notifications
You must be signed in to change notification settings - Fork 2k
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
Make compatible with boost 1.73.0+ and gcc 4.4 #1000
Closed
Closed
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
…6. Allows detecting IPv6 literal addresses in order to generate valid URI strings. fixes zaphoyd#601 references zaphoyd#879
Fix clang getting CXXFLANGS instead of CXXFLAGS
…ted. Removed unnecessary hardcoded dependency on libc++ for clang. fixes zaphoyd#859
… boost versions. fixes zaphoyd#855
…irectories rather than hard coding. fixes zaphoyd#854
Python 3 has no has_key on dictionary so the detection of environmental variables wouldn't work.
updated SConstruct to be compatible with Python 3
Trying to on-board this software into a large corporation. The powers that control this process are unable to recognize this license as BSD-3 without it explicitly saying that it's BSD3.
Add license type
…Update bundled HTTP library to remove the use of exceptions for error handling. All exceptions have been replaced with the error_codes used by the rest of the library either returned or as an output parameter. Documentation has been updated to note when this has happened. The main library interface has been updated to ensure that all functions that can throw are labeled as such and have a non-throwing overload. Nothing has been removed from the main library interface so anyone who uses exception handling with the main library is unaffected. These changes are being done in preparation for adding options to build WebSocket++ on platforms with exceptions disabled. references zaphoyd#438 zaphoyd#908
…cketpp into robinlinden-u/fix-scons-ci
Haiku check for -lnetwork
… into SophiaTX-set_body-move
# Conflicts: # websocketpp/connection.hpp # websocketpp/impl/connection_impl.hpp
# Conflicts: # changelog.md
…tart_accept. Update docs. fixes zaphoyd#896
…s like TCP_NODELAY from being set. Improve documentation about how pre_init differs from init_asio. Improve documentation for the TCP pre-bind handler that is the actual solution to the issue this regression related to. references zaphoyd#530 fixes zaphoyd#812
…ty library. It wasn't used, is not reasonably in scope for this library, and was causing warning messages. references zaphoyd#956
This tenatively looks good. Would it be possible for you to resubmit this against the develop branch? |
gcc 4.4 doesn't have support for the <functional> c++11 header, and relies on boost bind. But boost bind now tells you to use `#include <boost/bind/bind.hpp>` instead of ` #include <boost/bind.hpp>`, and that requires scoping the `boost::placeholders` namespace fully, but has the benefit of allowing a cleaner namespace definition more like the c++11 one.
done #1001 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
gcc 4.4 doesn't have support for the
<functional>
c++11 header, and relies on boost bind. But boost bind now tells you to use#include <boost/bind/bind.hpp>
instead of#include <boost/bind.hpp>
, and that requires scoping theboost::placeholders
namespace fully, but has the benefit of allowing a cleaner namespace definition more like the c++11 one.