diff options
author | Shauren <shauren.trinity@gmail.com> | 2016-07-28 08:48:48 +0200 |
---|---|---|
committer | jackpoz <giacomopoz@gmail.com> | 2016-08-02 17:25:33 +0200 |
commit | 5e9f5123141e5387365da6b0214a69b0bd2cf74e (patch) | |
tree | e0b416c7ae138b7db1e7015dcbd82b9e26eb3086 /dep/boost | |
parent | ad74638cd661f2373f48513a548f6504e869476a (diff) |
Dep: Remove boost regex dependency and replace its uses with std regex (works since gcc 4.9)
(cherry picked from commit 943496e56b648b050ba6e38d83a8161255c1d537)
# Conflicts:
# src/server/game/DataStores/DB2Stores.cpp
# src/server/game/DataStores/DB2Stores.h
Diffstat (limited to 'dep/boost')
-rw-r--r-- | dep/boost/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dep/boost/CMakeLists.txt b/dep/boost/CMakeLists.txt index 764953ab587..fc20347c2c8 100644 --- a/dep/boost/CMakeLists.txt +++ b/dep/boost/CMakeLists.txt @@ -26,7 +26,7 @@ if(WIN32) set(Boost_USE_STATIC_RUNTIME OFF) endif() -find_package(Boost 1.55 REQUIRED system filesystem thread program_options iostreams regex) +find_package(Boost 1.55 REQUIRED system filesystem thread program_options iostreams) # Find if Boost was compiled in C++03 mode because it requires -DBOOST_NO_CXX11_SCOPED_ENUMS |