summaryrefslogtreecommitdiff
path: root/src/third_party/SConscript
diff options
context:
space:
mode:
authorAndrew Morrow <acm@mongodb.com>2020-02-02 11:05:31 -0500
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2020-02-03 17:38:53 +0000
commit93cfea46d961955b795b83e8a3938df7d9746695 (patch)
tree90e34a77cc09b85bb4bb2198a87a4f890f407701 /src/third_party/SConscript
parent7739d3935096e3ec158fba279715f16619989d6f (diff)
downloadmongo-93cfea46d961955b795b83e8a3938df7d9746695.tar.gz
SERVER-44549 Remove the mobile storage engine
mode change 100644 => 100755 buildscripts/evergreen_task_timeout.py delete mode 100644 buildscripts/resmokeconfig/suites/disk_mobile.yml delete mode 100644 src/mongo/db/storage/mobile/SConscript delete mode 100644 src/mongo/db/storage/mobile/mobile_index.cpp delete mode 100644 src/mongo/db/storage/mobile/mobile_index.h delete mode 100644 src/mongo/db/storage/mobile/mobile_index_test.cpp delete mode 100644 src/mongo/db/storage/mobile/mobile_init.cpp delete mode 100644 src/mongo/db/storage/mobile/mobile_kv_engine.cpp delete mode 100644 src/mongo/db/storage/mobile/mobile_kv_engine.h delete mode 100644 src/mongo/db/storage/mobile/mobile_kv_engine_test.cpp delete mode 100644 src/mongo/db/storage/mobile/mobile_options.cpp delete mode 100644 src/mongo/db/storage/mobile/mobile_options.h delete mode 100644 src/mongo/db/storage/mobile/mobile_options.idl delete mode 100644 src/mongo/db/storage/mobile/mobile_options_mongod.cpp delete mode 100644 src/mongo/db/storage/mobile/mobile_record_store.cpp delete mode 100644 src/mongo/db/storage/mobile/mobile_record_store.h delete mode 100644 src/mongo/db/storage/mobile/mobile_record_store_test.cpp delete mode 100644 src/mongo/db/storage/mobile/mobile_recovery_unit.cpp delete mode 100644 src/mongo/db/storage/mobile/mobile_recovery_unit.h delete mode 100644 src/mongo/db/storage/mobile/mobile_session.cpp delete mode 100644 src/mongo/db/storage/mobile/mobile_session.h delete mode 100644 src/mongo/db/storage/mobile/mobile_session_pool.cpp delete mode 100644 src/mongo/db/storage/mobile/mobile_session_pool.h delete mode 100644 src/mongo/db/storage/mobile/mobile_sqlite_statement.cpp delete mode 100644 src/mongo/db/storage/mobile/mobile_sqlite_statement.h delete mode 100644 src/mongo/db/storage/mobile/mobile_util.cpp delete mode 100644 src/mongo/db/storage/mobile/mobile_util.h delete mode 100755 src/third_party/scripts/sqlite_get_sources.sh delete mode 100644 src/third_party/shim_sqlite.cpp delete mode 100644 src/third_party/sqlite-amalgamation-3260000/SConscript delete mode 100644 src/third_party/sqlite-amalgamation-3260000/patches/gethostuuid.patch delete mode 100644 src/third_party/sqlite-amalgamation-3260000/sqlite/shell.c delete mode 100644 src/third_party/sqlite-amalgamation-3260000/sqlite/sqlite3.c delete mode 100644 src/third_party/sqlite-amalgamation-3260000/sqlite/sqlite3.h delete mode 100644 src/third_party/sqlite-amalgamation-3260000/sqlite/sqlite3ext.h
Diffstat (limited to 'src/third_party/SConscript')
-rw-r--r--src/third_party/SConscript27
1 files changed, 0 insertions, 27 deletions
diff --git a/src/third_party/SConscript b/src/third_party/SConscript
index 47a4dee2d64..840c1c96601 100644
--- a/src/third_party/SConscript
+++ b/src/third_party/SConscript
@@ -4,7 +4,6 @@ import libdeps
import json
Import("env use_system_version_of_library usemozjs get_option")
-Import("mobile_se")
Import("use_libunwind")
Import("use_system_libunwind")
Import("use_vendored_libunwind")
@@ -22,7 +21,6 @@ gperftoolsSuffix = '-2.7'
timelibSuffix = '-2018.01'
tomcryptSuffix = '-1.18.2'
benchmarkSuffix = '-1.4.1'
-sqliteSuffix = '-amalgamation-3260000'
thirdPartyEnvironmentModifications = {
'fmt' : {
@@ -121,11 +119,6 @@ if not use_system_version_of_library('zstd'):
'CPPPATH' : ['#/src/third_party/zstandard' + zstdSuffix + '/zstd/lib'],
}
-if not use_system_version_of_library('sqlite'):
- thirdPartyEnvironmentModifications['sqlite'] = {
- 'CPPPATH' : ['#/src/third_party/sqlite' + sqliteSuffix + '/sqlite'],
- }
-
if not use_system_version_of_library('google-benchmark'):
thirdPartyEnvironmentModifications['benchmark'] = {
'CPPPATH' : ['#/src/third_party/benchmark' + benchmarkSuffix + '/benchmark/include'],
@@ -581,26 +574,6 @@ if wiredtiger:
'shim_wiredtiger.cpp'
])
-if use_system_version_of_library("sqlite"):
- sqliteEnv = env.Clone(
- SYSLIBDEPS=[
- env['LIBDEPS_SQLITE_SYSLIBDEP']
- ])
-else:
- sqliteEnv = env.Clone()
- sqliteEnv.InjectThirdParty(libraries=['sqlite'])
- sqliteEnv.SConscript('sqlite' + sqliteSuffix + '/SConscript', exports={ 'env' : sqliteEnv })
- sqliteEnv = sqliteEnv.Clone(
- LIBDEPS_INTERFACE=[
- 'sqlite' + sqliteSuffix + '/sqlite3',
- ])
-
-sqliteEnv.Library(
- target='shim_sqlite',
- source=[
- 'shim_sqlite.cpp',
- ])
-
if use_system_version_of_library("asio"):
# Normally, we would request LIBDEPS_ASIO_SYSLIBDEP here, but on most systems, the system asio
# will be header only so there is no library required. In the rare case where one is, it can be