eidheim / Simple-Web-Server

A very simple, fast, multithreaded, platform independent HTTP and HTTPS server and client library implemented using C++11 and Boost.Asio. Created to be an easy way to make REST resources available from C++ applications.
MIT License
2.61k stars 751 forks source link

Can't build due to TLS v1.2 support missing in Boost 1.53 #115

Open iamthebot opened 7 years ago

iamthebot commented 7 years ago

9701a4504b21f7ab424aed9eb63db66e93cabefc breaks compatibility with Boost 1.53 (the latest boost version on RHEL/CentOS 7.3). Luckily, the underlying openssl library does support it so we can still mandate TLS 1.2 support via OpenSSL flags.

This is now fixed by PR #116

iamthebot commented 7 years ago

116 has now been refactored to use a compile-time fallback.