mirror of
https://github.com/boostorg/beast.git
synced 2026-05-03 19:30:50 +02:00
set minimum gcc version to 5.0.
This is due to C++98 support being dropped, so 4.8 fails other libraries C++11 detection.
This commit is contained in:
committed by
Klemens Morgenstern
parent
b0f6f9c39c
commit
915b80a157
@@ -41,8 +41,8 @@ namespace net = boost::asio;
|
||||
# endif
|
||||
|
||||
#elif defined(BOOST_GCC)
|
||||
# if(BOOST_GCC < 40801)
|
||||
# error Beast requires C++11: gcc version 4.8 or later needed
|
||||
# if(BOOST_GCC < 50000)
|
||||
# error Beast requires C++11: gcc version 5 or later needed
|
||||
# endif
|
||||
|
||||
#else
|
||||
|
||||
Reference in New Issue
Block a user