aboutsummaryrefslogtreecommitdiffstats
path: root/node_modules/sqlite3/deps
diff options
context:
space:
mode:
authorpack <pack@packgekko.xyz>2026-08-09 10:54:08 +0000
committerpack <pack@packgekko.xyz>2026-08-09 10:54:08 +0000
commitd3adc16a08d95d6e331de55d7d3bf05a66a874a8 (patch)
treea2dabd199501e67c547c2ce79e1374ca3aa55443 /node_modules/sqlite3/deps
parent55a4f1fc869e41aca748c63d3018f0448b1606e0 (diff)
downloadcrud-d3adc16a08d95d6e331de55d7d3bf05a66a874a8.tar.gz
stop tracking node_modules/
Diffstat (limited to 'node_modules/sqlite3/deps')
-rw-r--r--node_modules/sqlite3/deps/common-sqlite.gypi60
-rw-r--r--node_modules/sqlite3/deps/extract.js19
-rw-r--r--node_modules/sqlite3/deps/sqlite-autoconf-3520000.tar.gzbin3258980 -> 0 bytes
-rwxr-xr-xnode_modules/sqlite3/deps/sqlite3.gyp121
4 files changed, 0 insertions, 200 deletions
diff --git a/node_modules/sqlite3/deps/common-sqlite.gypi b/node_modules/sqlite3/deps/common-sqlite.gypi
deleted file mode 100644
index 36d53c7..0000000
--- a/node_modules/sqlite3/deps/common-sqlite.gypi
+++ /dev/null
@@ -1,60 +0,0 @@
-{
- 'variables': {
- 'sqlite_version%':'3520000',
- "toolset%":'',
- },
- 'target_defaults': {
- 'default_configuration': 'Release',
- 'conditions': [
- [ 'toolset!=""', {
- 'msbuild_toolset':'<(toolset)'
- }]
- ],
- 'configurations': {
- 'Debug': {
- 'defines!': [
- 'NDEBUG'
- ],
- 'cflags_cc!': [
- '-O3',
- '-Os',
- '-DNDEBUG'
- ],
- 'xcode_settings': {
- 'OTHER_CPLUSPLUSFLAGS!': [
- '-O3',
- '-Os',
- '-DDEBUG'
- ],
- 'GCC_OPTIMIZATION_LEVEL': '0',
- 'GCC_GENERATE_DEBUGGING_SYMBOLS': 'YES'
- },
- 'msvs_settings': {
- 'VCCLCompilerTool': {
- 'ExceptionHandling': 1, # /EHsc
- }
- }
- },
- 'Release': {
- 'defines': [
- 'NDEBUG'
- ],
- 'xcode_settings': {
- 'OTHER_CPLUSPLUSFLAGS!': [
- '-Os',
- '-O2'
- ],
- 'GCC_OPTIMIZATION_LEVEL': '3',
- 'GCC_GENERATE_DEBUGGING_SYMBOLS': 'NO',
- 'DEAD_CODE_STRIPPING': 'YES',
- 'GCC_INLINES_ARE_PRIVATE_EXTERN': 'YES'
- },
- 'msvs_settings': {
- 'VCCLCompilerTool': {
- 'ExceptionHandling': 1, # /EHsc
- }
- }
- }
- }
- }
-}
diff --git a/node_modules/sqlite3/deps/extract.js b/node_modules/sqlite3/deps/extract.js
deleted file mode 100644
index 0e1fb12..0000000
--- a/node_modules/sqlite3/deps/extract.js
+++ /dev/null
@@ -1,19 +0,0 @@
-const tar = require("tar");
-const fs = require("fs");
-const path = require("path");
-const tarball = path.resolve(process.argv[2]);
-const dirname = path.resolve(process.argv[3]);
-
-tar.extract({
- sync: true,
- file: tarball,
- cwd: dirname,
-});
-
-// SQLite >= 3.49 ships a VERSION file that conflicts with the C++20 <version>
-// header on case-insensitive filesystems (macOS/Windows).
-const base = path.basename(tarball, ".tar.gz");
-const versionFile = path.join(dirname, base, "VERSION");
-if (fs.existsSync(versionFile)) {
- fs.unlinkSync(versionFile);
-}
diff --git a/node_modules/sqlite3/deps/sqlite-autoconf-3520000.tar.gz b/node_modules/sqlite3/deps/sqlite-autoconf-3520000.tar.gz
deleted file mode 100644
index 83ed176..0000000
--- a/node_modules/sqlite3/deps/sqlite-autoconf-3520000.tar.gz
+++ /dev/null
Binary files differ
diff --git a/node_modules/sqlite3/deps/sqlite3.gyp b/node_modules/sqlite3/deps/sqlite3.gyp
deleted file mode 100755
index 660b3b0..0000000
--- a/node_modules/sqlite3/deps/sqlite3.gyp
+++ /dev/null
@@ -1,121 +0,0 @@
-{
- 'includes': [ 'common-sqlite.gypi' ],
-
- 'variables': {
- 'sqlite_magic%': '',
- },
-
- 'target_defaults': {
- 'default_configuration': 'Release',
- 'cflags':[
- '-std=c99'
- ],
- 'configurations': {
- 'Debug': {
- 'defines': [ 'DEBUG', '_DEBUG' ],
- 'msvs_settings': {
- 'VCCLCompilerTool': {
- 'RuntimeLibrary': 1, # static debug
- },
- },
- },
- 'Release': {
- 'defines': [ 'NDEBUG' ],
- 'msvs_settings': {
- 'VCCLCompilerTool': {
- 'RuntimeLibrary': 0, # static release
- },
- },
- }
- },
- 'msvs_settings': {
- 'VCCLCompilerTool': {
- },
- 'VCLibrarianTool': {
- },
- 'VCLinkerTool': {
- 'GenerateDebugInformation': 'true',
- },
- },
- 'conditions': [
- ['OS == "win"', {
- 'defines': [
- 'WIN32'
- ],
- }]
- ],
- },
-
- 'targets': [
- {
- 'target_name': 'action_before_build',
- 'type': 'none',
- 'hard_dependency': 1,
- 'actions': [
- {
- 'action_name': 'unpack_sqlite_dep',
- 'inputs': [
- './sqlite-autoconf-<@(sqlite_version).tar.gz'
- ],
- 'outputs': [
- '<(SHARED_INTERMEDIATE_DIR)/sqlite-autoconf-<@(sqlite_version)/sqlite3.c'
- ],
- 'action': ['node','./extract.js','./sqlite-autoconf-<@(sqlite_version).tar.gz','<(SHARED_INTERMEDIATE_DIR)']
- }
- ],
- 'direct_dependent_settings': {
- 'include_dirs': [
- '<(SHARED_INTERMEDIATE_DIR)/sqlite-autoconf-<@(sqlite_version)/',
- ]
- },
- },
- {
- 'target_name': 'sqlite3',
- 'type': 'static_library',
- 'include_dirs': [ '<(SHARED_INTERMEDIATE_DIR)/sqlite-autoconf-<@(sqlite_version)/' ],
- 'dependencies': [
- 'action_before_build'
- ],
- 'sources': [
- '<(SHARED_INTERMEDIATE_DIR)/sqlite-autoconf-<@(sqlite_version)/sqlite3.c'
- ],
- 'direct_dependent_settings': {
- 'include_dirs': [ '<(SHARED_INTERMEDIATE_DIR)/sqlite-autoconf-<@(sqlite_version)/' ],
- 'defines': [
- 'SQLITE_THREADSAFE=1',
- 'HAVE_USLEEP=1',
- 'SQLITE_ENABLE_FTS3',
- 'SQLITE_ENABLE_FTS4',
- 'SQLITE_ENABLE_FTS5',
- 'SQLITE_ENABLE_RTREE',
- 'SQLITE_ENABLE_DBSTAT_VTAB=1',
- 'SQLITE_ENABLE_MATH_FUNCTIONS'
- ],
- },
- 'cflags_cc': [
- '-Wno-unused-value'
- ],
- 'defines': [
- '_REENTRANT=1',
- 'SQLITE_THREADSAFE=1',
- 'HAVE_USLEEP=1',
- 'SQLITE_ENABLE_FTS3',
- 'SQLITE_ENABLE_FTS4',
- 'SQLITE_ENABLE_FTS5',
- 'SQLITE_ENABLE_RTREE',
- 'SQLITE_ENABLE_DBSTAT_VTAB=1',
- 'SQLITE_ENABLE_MATH_FUNCTIONS'
- ],
- 'export_dependent_settings': [
- 'action_before_build',
- ],
- 'conditions': [
- ["sqlite_magic != ''", {
- 'defines': [
- 'SQLITE_FILE_HEADER="<(sqlite_magic)"'
- ]
- }]
- ],
- }
- ]
-}