diff options
author | Aokromes <aokromes@gmail.com> | 2018-03-14 11:41:09 +0100 |
---|---|---|
committer | Aokromes <aokromes@gmail.com> | 2018-03-14 11:41:09 +0100 |
commit | bc88d3bc15debb70432603b21a2319b72db02f49 (patch) | |
tree | 328f94ad0359a456f4de907544c95ad0bba7775f /dep/boost | |
parent | 007b5a68c50bbee7d05acec888d3273c2a5a8577 (diff) |
Scripts/Commands: implemented command .server debug
- Shows detailed information about server setup, useful when reporting a bug:
* rev. hash
* versions of mysql, openssl, boost, cmake
* info about autoupdater
* info about ports (realmlist and current)
* vmap/map/mmap status and folder sizes
* available DBC locales
* TDB version
cherry pick of d18f8b94b0cb5182ef450bec5cafd3c5d74fd00a
Running this command when reporting bugs is MANDATORY (you can censor paths)
Diffstat (limited to 'dep/boost')
-rw-r--r-- | dep/boost/CMakeLists.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dep/boost/CMakeLists.txt b/dep/boost/CMakeLists.txt index bfa16db3c94..687960642a0 100644 --- a/dep/boost/CMakeLists.txt +++ b/dep/boost/CMakeLists.txt @@ -38,9 +38,9 @@ check_cxx_source_compiles(" STD_HAS_WORKING_WREGEX) if (STD_HAS_WORKING_WREGEX) - find_package(Boost 1.55 REQUIRED system filesystem thread program_options iostreams) + find_package(Boost 1.58 REQUIRED system filesystem thread program_options iostreams) else() - find_package(Boost 1.55 REQUIRED system filesystem thread program_options iostreams regex) + find_package(Boost 1.58 REQUIRED system filesystem thread program_options iostreams regex) endif() # Find if Boost was compiled in C++03 mode because it requires -DBOOST_NO_CXX11_SCOPED_ENUMS |