meltwater / served

A C++11 RESTful web server library
MIT License
710 stars 174 forks source link

README: require Boost 1.53 or newer instead of 1.56 #49

Closed AdrianDC closed 5 years ago

AdrianDC commented 5 years ago

Works properly based on Boost 1.53, therefore no backports from Boost 1.56 are required.

The RPM and DEB cmake rules already specify the following requirements:

./cmake/CPackConfigRPM.cmake:    SET(CPACK_RPM_PACKAGE_REQUIRES "libboost >= 1.53")                                 
./cmake/CPackConfigDEB.cmake:    SET(CPACK_DEBIAN_PACKAGE_DEPENDS "libboost (>= 1.53)")                                    
./cmake/CPackConfigDEB.cmake:    SET(CPACK_DEBIAN_PACKAGE_BUILDS_DEPENDS "libboost-dev (>= 1.53)")                                                            

And the Travis configuration uses 1.55.

Jeffail commented 5 years ago

Awesome, thanks @AdrianDC.