8 changed files with 122 additions and 108 deletions
@ -1,17 +0,0 @@
|
||||
diff --git a/storage/tokudb/PerconaFT/cmake_modules/TokuSetupCTest.cmake b/storage/tokudb/PerconaFT/cmake_modules/TokuSetupCTest.cmake
|
||||
index 5b6882cc..d165f3e7 100644
|
||||
--- a/storage/tokudb/PerconaFT/cmake_modules/TokuSetupCTest.cmake
|
||||
+++ b/storage/tokudb/PerconaFT/cmake_modules/TokuSetupCTest.cmake
|
||||
@@ -56,11 +56,7 @@ endmacro(whoami)
|
||||
|
||||
## gives the current hostname, minus .tokutek.com if it's there
|
||||
macro(hostname out)
|
||||
- execute_process(
|
||||
- COMMAND hostname
|
||||
- OUTPUT_VARIABLE fullhostname
|
||||
- OUTPUT_STRIP_TRAILING_WHITESPACE)
|
||||
- string(REGEX REPLACE "\\.tokutek\\.com$" "" ${out} "${fullhostname}")
|
||||
+ set(${out} "archbuild")
|
||||
endmacro(hostname)
|
||||
|
||||
## gather machine info
|
@ -0,0 +1,48 @@
|
||||
diff --git a/client/logger.cc b/client/logger.cc
|
||||
index 0198dca7..c3823266 100644
|
||||
--- a/client/logger.cc
|
||||
+++ b/client/logger.cc
|
||||
@@ -27,6 +27,7 @@
|
||||
#include <time.h>
|
||||
#include <iostream>
|
||||
#include <locale>
|
||||
+#include <memory>
|
||||
|
||||
using namespace std;
|
||||
|
||||
diff --git a/components/keyrings/common/component_helpers/src/keyring_log_builtins_definition.cc b/components/keyrings/common/component_helpers/src/keyring_log_builtins_definition.cc
|
||||
index b4801329..92b483ba 100644
|
||||
--- a/components/keyrings/common/component_helpers/src/keyring_log_builtins_definition.cc
|
||||
+++ b/components/keyrings/common/component_helpers/src/keyring_log_builtins_definition.cc
|
||||
@@ -25,6 +25,7 @@
|
||||
#include <cstring>
|
||||
#include <iostream>
|
||||
#include <locale>
|
||||
+#include <memory>
|
||||
#include <sstream>
|
||||
|
||||
#include <m_string.h>
|
||||
diff --git a/plugin/auth_ldap/src/connection.cc b/plugin/auth_ldap/src/connection.cc
|
||||
index bb280388..1d221e78 100644
|
||||
--- a/plugin/auth_ldap/src/connection.cc
|
||||
+++ b/plugin/auth_ldap/src/connection.cc
|
||||
@@ -1,6 +1,7 @@
|
||||
#include "plugin/auth_ldap/include/connection.h"
|
||||
|
||||
#include <iostream>
|
||||
+#include <iterator>
|
||||
#include <regex>
|
||||
|
||||
#include "plugin/auth_ldap/include/plugin_log.h"
|
||||
diff --git a/router/src/harness/include/mysql/harness/net_ts/executor.h b/router/src/harness/include/mysql/harness/net_ts/executor.h
|
||||
index 8d0b257e..525dae33 100644
|
||||
--- a/router/src/harness/include/mysql/harness/net_ts/executor.h
|
||||
+++ b/router/src/harness/include/mysql/harness/net_ts/executor.h
|
||||
@@ -36,6 +36,7 @@
|
||||
#include <thread>
|
||||
#include <type_traits> // decay_t, enable_if
|
||||
#include <unordered_map>
|
||||
+#include <utility>
|
||||
|
||||
#include "my_compiler.h"
|
||||
#include "mysql/harness/net_ts/netfwd.h"
|
@ -1,28 +0,0 @@
|
||||
diff --git a/plugin/tokudb-backup-plugin/Percona-TokuBackup/backup/CMakeLists.txt b/plugin/tokudb-backup-plugin/Percona-TokuBackup/backup/CMakeLists.txt
|
||||
index 9d2c1dd2..cefa9190 100644
|
||||
--- a/plugin/tokudb-backup-plugin/Percona-TokuBackup/backup/CMakeLists.txt
|
||||
+++ b/plugin/tokudb-backup-plugin/Percona-TokuBackup/backup/CMakeLists.txt
|
||||
@@ -20,7 +20,7 @@ set_property(DIRECTORY APPEND PROPERTY COMPILE_DEFINITIONS
|
||||
_FILE_OFFSET_BITS=64
|
||||
_LARGEFILE64_SOURCE)
|
||||
|
||||
-set(CMAKE_CXX_FLAGS "-Werror -W -Wall -Wshadow ${CMAKE_CXX_FLAGS}")
|
||||
+set(CMAKE_CXX_FLAGS "-W -Wall -Wshadow ${CMAKE_CXX_FLAGS}")
|
||||
|
||||
set(USE_VALGRIND OFF CACHE BOOL "whether to use valgrind headers")
|
||||
if (USE_VALGRIND)
|
||||
diff --git a/storage/tokudb/PerconaFT/cmake_modules/TokuSetupCompiler.cmake b/storage/tokudb/PerconaFT/cmake_modules/TokuSetupCompiler.cmake
|
||||
index 92897b88..95dad8ac 100644
|
||||
--- a/storage/tokudb/PerconaFT/cmake_modules/TokuSetupCompiler.cmake
|
||||
+++ b/storage/tokudb/PerconaFT/cmake_modules/TokuSetupCompiler.cmake
|
||||
@@ -171,8 +171,8 @@ if (NOT CMAKE_CXX_COMPILER_ID STREQUAL Clang)
|
||||
endif ()
|
||||
|
||||
## always want these
|
||||
-set(CMAKE_C_FLAGS "-Wall -Werror ${CMAKE_C_FLAGS}")
|
||||
-set(CMAKE_CXX_FLAGS "-Wall -Werror ${CMAKE_CXX_FLAGS}")
|
||||
+set(CMAKE_C_FLAGS "-Wall ${CMAKE_C_FLAGS}")
|
||||
+set(CMAKE_CXX_FLAGS "-Wall ${CMAKE_CXX_FLAGS}")
|
||||
|
||||
# pick language dialect
|
||||
set(CMAKE_C_FLAGS "-std=c99 ${CMAKE_C_FLAGS}")
|
@ -1,17 +0,0 @@
|
||||
diff --git a/storage/tokudb/PerconaFT/cmake_modules/TokuSetupCTest.cmake b/storage/tokudb/PerconaFT/cmake_modules/TokuSetupCTest.cmake
|
||||
index 5b6882cc..d165f3e7 100644
|
||||
--- a/storage/tokudb/PerconaFT/cmake_modules/TokuSetupCTest.cmake
|
||||
+++ b/storage/tokudb/PerconaFT/cmake_modules/TokuSetupCTest.cmake
|
||||
@@ -56,11 +56,7 @@ endmacro(whoami)
|
||||
|
||||
## gives the current hostname, minus .tokutek.com if it's there
|
||||
macro(hostname out)
|
||||
- execute_process(
|
||||
- COMMAND hostname
|
||||
- OUTPUT_VARIABLE fullhostname
|
||||
- OUTPUT_STRIP_TRAILING_WHITESPACE)
|
||||
- string(REGEX REPLACE "\\.tokutek\\.com$" "" ${out} "${fullhostname}")
|
||||
+ set(${out} "archbuild")
|
||||
endmacro(hostname)
|
||||
|
||||
## gather machine info
|
@ -0,0 +1,48 @@
|
||||
diff --git a/client/logger.cc b/client/logger.cc
|
||||
index 0198dca7..c3823266 100644
|
||||
--- a/client/logger.cc
|
||||
+++ b/client/logger.cc
|
||||
@@ -27,6 +27,7 @@
|
||||
#include <time.h>
|
||||
#include <iostream>
|
||||
#include <locale>
|
||||
+#include <memory>
|
||||
|
||||
using namespace std;
|
||||
|
||||
diff --git a/components/keyrings/common/component_helpers/src/keyring_log_builtins_definition.cc b/components/keyrings/common/component_helpers/src/keyring_log_builtins_definition.cc
|
||||
index b4801329..92b483ba 100644
|
||||
--- a/components/keyrings/common/component_helpers/src/keyring_log_builtins_definition.cc
|
||||
+++ b/components/keyrings/common/component_helpers/src/keyring_log_builtins_definition.cc
|
||||
@@ -25,6 +25,7 @@
|
||||
#include <cstring>
|
||||
#include <iostream>
|
||||
#include <locale>
|
||||
+#include <memory>
|
||||
#include <sstream>
|
||||
|
||||
#include <m_string.h>
|
||||
diff --git a/plugin/auth_ldap/src/connection.cc b/plugin/auth_ldap/src/connection.cc
|
||||
index bb280388..1d221e78 100644
|
||||
--- a/plugin/auth_ldap/src/connection.cc
|
||||
+++ b/plugin/auth_ldap/src/connection.cc
|
||||
@@ -1,6 +1,7 @@
|
||||
#include "plugin/auth_ldap/include/connection.h"
|
||||
|
||||
#include <iostream>
|
||||
+#include <iterator>
|
||||
#include <regex>
|
||||
|
||||
#include "plugin/auth_ldap/include/plugin_log.h"
|
||||
diff --git a/router/src/harness/include/mysql/harness/net_ts/executor.h b/router/src/harness/include/mysql/harness/net_ts/executor.h
|
||||
index 8d0b257e..525dae33 100644
|
||||
--- a/router/src/harness/include/mysql/harness/net_ts/executor.h
|
||||
+++ b/router/src/harness/include/mysql/harness/net_ts/executor.h
|
||||
@@ -36,6 +36,7 @@
|
||||
#include <thread>
|
||||
#include <type_traits> // decay_t, enable_if
|
||||
#include <unordered_map>
|
||||
+#include <utility>
|
||||
|
||||
#include "my_compiler.h"
|
||||
#include "mysql/harness/net_ts/netfwd.h"
|
@ -1,28 +0,0 @@
|
||||
diff --git a/plugin/tokudb-backup-plugin/Percona-TokuBackup/backup/CMakeLists.txt b/plugin/tokudb-backup-plugin/Percona-TokuBackup/backup/CMakeLists.txt
|
||||
index 9d2c1dd2..cefa9190 100644
|
||||
--- a/plugin/tokudb-backup-plugin/Percona-TokuBackup/backup/CMakeLists.txt
|
||||
+++ b/plugin/tokudb-backup-plugin/Percona-TokuBackup/backup/CMakeLists.txt
|
||||
@@ -20,7 +20,7 @@ set_property(DIRECTORY APPEND PROPERTY COMPILE_DEFINITIONS
|
||||
_FILE_OFFSET_BITS=64
|
||||
_LARGEFILE64_SOURCE)
|
||||
|
||||
-set(CMAKE_CXX_FLAGS "-Werror -W -Wall -Wshadow ${CMAKE_CXX_FLAGS}")
|
||||
+set(CMAKE_CXX_FLAGS "-W -Wall -Wshadow ${CMAKE_CXX_FLAGS}")
|
||||
|
||||
set(USE_VALGRIND OFF CACHE BOOL "whether to use valgrind headers")
|
||||
if (USE_VALGRIND)
|
||||
diff --git a/storage/tokudb/PerconaFT/cmake_modules/TokuSetupCompiler.cmake b/storage/tokudb/PerconaFT/cmake_modules/TokuSetupCompiler.cmake
|
||||
index 92897b88..95dad8ac 100644
|
||||
--- a/storage/tokudb/PerconaFT/cmake_modules/TokuSetupCompiler.cmake
|
||||
+++ b/storage/tokudb/PerconaFT/cmake_modules/TokuSetupCompiler.cmake
|
||||
@@ -171,8 +171,8 @@ if (NOT CMAKE_CXX_COMPILER_ID STREQUAL Clang)
|
||||
endif ()
|
||||
|
||||
## always want these
|
||||
-set(CMAKE_C_FLAGS "-Wall -Werror ${CMAKE_C_FLAGS}")
|
||||
-set(CMAKE_CXX_FLAGS "-Wall -Werror ${CMAKE_CXX_FLAGS}")
|
||||
+set(CMAKE_C_FLAGS "-Wall ${CMAKE_C_FLAGS}")
|
||||
+set(CMAKE_CXX_FLAGS "-Wall ${CMAKE_CXX_FLAGS}")
|
||||
|
||||
# pick language dialect
|
||||
set(CMAKE_C_FLAGS "-std=c99 ${CMAKE_C_FLAGS}")
|
Loading…
Reference in new issue