git-sqlite-vfs 0.0.2 → 0.0.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (64) hide show
  1. package/README.md +67 -32
  2. package/bin/cli.js +53 -0
  3. package/c/Makefile +31 -16
  4. package/c/download-sqlite.cjs +17 -0
  5. package/c/git-merge-sqlitevfs.c +210 -186
  6. package/c/gitvfs.c +69 -21
  7. package/c/output/git-merge-sqlitevfs.exe +0 -0
  8. package/c/output/gitvfs.dll +0 -0
  9. package/c/output/gitvfs.o +0 -0
  10. package/c/output/gitvfs_test.exe +0 -0
  11. package/c/output/main.o +0 -0
  12. package/c/output/sqlite3.o +0 -0
  13. package/c/sqlite-autoconf-3450200/INSTALL +370 -0
  14. package/c/sqlite-autoconf-3450200/Makefile.am +20 -0
  15. package/c/sqlite-autoconf-3450200/Makefile.fallback +19 -0
  16. package/c/sqlite-autoconf-3450200/Makefile.in +1050 -0
  17. package/c/sqlite-autoconf-3450200/Makefile.msc +1069 -0
  18. package/c/sqlite-autoconf-3450200/README.txt +113 -0
  19. package/c/sqlite-autoconf-3450200/Replace.cs +223 -0
  20. package/c/sqlite-autoconf-3450200/aclocal.m4 +10204 -0
  21. package/c/sqlite-autoconf-3450200/compile +348 -0
  22. package/c/sqlite-autoconf-3450200/config.guess +1754 -0
  23. package/c/sqlite-autoconf-3450200/config.sub +1890 -0
  24. package/c/sqlite-autoconf-3450200/configure +16887 -0
  25. package/c/sqlite-autoconf-3450200/configure.ac +270 -0
  26. package/c/sqlite-autoconf-3450200/depcomp +791 -0
  27. package/c/sqlite-autoconf-3450200/install-sh +541 -0
  28. package/c/sqlite-autoconf-3450200/ltmain.sh +11251 -0
  29. package/c/sqlite-autoconf-3450200/missing +215 -0
  30. package/c/sqlite-autoconf-3450200/shell.c +29659 -0
  31. package/c/sqlite-autoconf-3450200/sqlite3.1 +161 -0
  32. package/c/sqlite-autoconf-3450200/sqlite3.c +255811 -0
  33. package/c/sqlite-autoconf-3450200/sqlite3.h +13357 -0
  34. package/c/sqlite-autoconf-3450200/sqlite3.pc.in +13 -0
  35. package/c/sqlite-autoconf-3450200/sqlite3.rc +83 -0
  36. package/c/sqlite-autoconf-3450200/sqlite3ext.h +719 -0
  37. package/c/sqlite-autoconf-3450200/sqlite3rc.h +3 -0
  38. package/c/sqlite-autoconf-3450200/tea/Makefile.in +475 -0
  39. package/c/sqlite-autoconf-3450200/tea/README +36 -0
  40. package/c/sqlite-autoconf-3450200/tea/aclocal.m4 +9 -0
  41. package/c/sqlite-autoconf-3450200/tea/configure +10179 -0
  42. package/c/sqlite-autoconf-3450200/tea/configure.ac +227 -0
  43. package/c/sqlite-autoconf-3450200/tea/doc/sqlite3.n +15 -0
  44. package/c/sqlite-autoconf-3450200/tea/generic/tclsqlite3.c +4080 -0
  45. package/c/sqlite-autoconf-3450200/tea/license.terms +6 -0
  46. package/c/sqlite-autoconf-3450200/tea/pkgIndex.tcl.in +10 -0
  47. package/c/sqlite-autoconf-3450200/tea/tclconfig/install-sh +528 -0
  48. package/c/sqlite-autoconf-3450200/tea/tclconfig/tcl.m4 +4067 -0
  49. package/c/sqlite-autoconf-3450200/tea/win/makefile.vc +430 -0
  50. package/c/sqlite-autoconf-3450200/tea/win/nmakehlp.c +815 -0
  51. package/c/sqlite-autoconf-3450200/tea/win/rules.vc +711 -0
  52. package/c/sqlite-autoconf-3450200.tar.gz +0 -0
  53. package/c/sqlite3.c +255811 -0
  54. package/c/sqlite3.h +13357 -0
  55. package/c/sqlite3ext.h +719 -0
  56. package/downloader.js +63 -0
  57. package/index.d.ts +14 -0
  58. package/index.js +103 -51
  59. package/install.js +13 -49
  60. package/package.json +22 -3
  61. package/c/output/git-merge-sqlitevfs +0 -0
  62. package/c/output/gitvfs.so +0 -0
  63. package/c/output/gitvfs_test +0 -0
  64. package/test.js +0 -209
@@ -0,0 +1,270 @@
1
+
2
+ #-----------------------------------------------------------------------
3
+ # Supports the following non-standard switches.
4
+ #
5
+ # --enable-threadsafe
6
+ # --enable-readline
7
+ # --enable-editline
8
+ # --enable-static-shell
9
+ # --enable-dynamic-extensions
10
+ #
11
+
12
+ AC_PREREQ(2.61)
13
+ AC_INIT(sqlite, 3.45.2, http://www.sqlite.org)
14
+ AC_CONFIG_SRCDIR([sqlite3.c])
15
+ AC_CONFIG_AUX_DIR([.])
16
+
17
+ # Use automake.
18
+ AM_INIT_AUTOMAKE([foreign])
19
+
20
+ AC_SYS_LARGEFILE
21
+
22
+ # Check for required programs.
23
+ AC_PROG_CC
24
+ AC_PROG_LIBTOOL
25
+ AC_PROG_MKDIR_P
26
+
27
+ # Check for library functions that SQLite can optionally use.
28
+ AC_CHECK_FUNCS([fdatasync usleep fullfsync localtime_r gmtime_r])
29
+ AC_FUNC_STRERROR_R
30
+
31
+ AC_CONFIG_FILES([Makefile sqlite3.pc])
32
+ BUILD_CFLAGS=
33
+ AC_SUBST(BUILD_CFLAGS)
34
+
35
+ #-------------------------------------------------------------------------
36
+ # Two options to enable readline compatible libraries:
37
+ #
38
+ # --enable-editline
39
+ # --enable-readline
40
+ #
41
+ # Both are enabled by default. If, after command line processing both are
42
+ # still enabled, the script searches for editline first and automatically
43
+ # disables readline if it is found. So, to use readline explicitly, the
44
+ # user must pass "--disable-editline". To disable command line editing
45
+ # support altogether, "--disable-editline --disable-readline".
46
+ #
47
+ # When searching for either library, check for headers before libraries
48
+ # as some distros supply packages that contain libraries but not header
49
+ # files, which come as a separate development package.
50
+ #
51
+ AC_ARG_ENABLE(editline, [AS_HELP_STRING([--enable-editline],[use BSD libedit])])
52
+ AC_ARG_ENABLE(readline, [AS_HELP_STRING([--enable-readline],[use readline])])
53
+
54
+ AS_IF([ test x"$enable_editline" != xno ],[
55
+ AC_CHECK_HEADERS([editline/readline.h],[
56
+ sLIBS=$LIBS
57
+ LIBS=""
58
+ AC_SEARCH_LIBS([readline],[edit],[
59
+ AC_DEFINE([HAVE_EDITLINE],1,Define to use BSD editline)
60
+ READLINE_LIBS="$LIBS -ltinfo"
61
+ enable_readline=no
62
+ ],[],[-ltinfo])
63
+ AS_UNSET(ac_cv_search_readline)
64
+ LIBS=$sLIBS
65
+ ])
66
+ ])
67
+
68
+ AS_IF([ test x"$enable_readline" != xno ],[
69
+ AC_CHECK_HEADERS([readline/readline.h],[
70
+ sLIBS=$LIBS
71
+ LIBS=""
72
+ AC_SEARCH_LIBS(tgetent, termcap curses ncurses ncursesw, [], [])
73
+ AC_SEARCH_LIBS(readline,[readline edit], [
74
+ AC_DEFINE([HAVE_READLINE],1,Define to use readline or wrapper)
75
+ READLINE_LIBS=$LIBS
76
+ ])
77
+ LIBS=$sLIBS
78
+ ])
79
+ ])
80
+
81
+ AC_SUBST(READLINE_LIBS)
82
+ #-----------------------------------------------------------------------
83
+
84
+ #-----------------------------------------------------------------------
85
+ # --enable-threadsafe
86
+ #
87
+ AC_ARG_ENABLE(threadsafe, [AS_HELP_STRING(
88
+ [--enable-threadsafe], [build a thread-safe library [default=yes]])],
89
+ [], [enable_threadsafe=yes])
90
+ if test x"$enable_threadsafe" == "xno"; then
91
+ BUILD_CFLAGS="$BUILD_CFLAGS -DSQLITE_THREADSAFE=0"
92
+ else
93
+ BUILD_CFLAGS="$BUILD_CFLAGS -D_REENTRANT=1 -DSQLITE_THREADSAFE=1"
94
+ AC_SEARCH_LIBS(pthread_create, pthread)
95
+ AC_SEARCH_LIBS(pthread_mutexattr_init, pthread)
96
+ fi
97
+ #-----------------------------------------------------------------------
98
+
99
+ #-----------------------------------------------------------------------
100
+ # --enable-dynamic-extensions
101
+ #
102
+ AC_ARG_ENABLE(dynamic-extensions, [AS_HELP_STRING(
103
+ [--enable-dynamic-extensions], [support loadable extensions [default=yes]])],
104
+ [], [enable_dynamic_extensions=yes])
105
+ if test x"$enable_dynamic_extensions" != "xno"; then
106
+ AC_SEARCH_LIBS(dlopen, dl)
107
+ else
108
+ BUILD_CFLAGS="$BUILD_CFLAGS -DSQLITE_OMIT_LOAD_EXTENSION=1"
109
+ fi
110
+ AC_MSG_CHECKING([for whether to support dynamic extensions])
111
+ AC_MSG_RESULT($enable_dynamic_extensions)
112
+ #-----------------------------------------------------------------------
113
+
114
+ #-----------------------------------------------------------------------
115
+ # --enable-math
116
+ #
117
+ AC_ARG_ENABLE(math, [AS_HELP_STRING(
118
+ [--enable-math], [SQL math functions [default=yes]])],
119
+ [], [enable_math=yes])
120
+ AC_MSG_CHECKING([SQL math functions])
121
+ if test x"$enable_math" = "xyes"; then
122
+ BUILD_CFLAGS="$BUILD_CFLAGS -DSQLITE_ENABLE_MATH_FUNCTIONS"
123
+ AC_MSG_RESULT([enabled])
124
+ AC_SEARCH_LIBS(ceil, m)
125
+ else
126
+ AC_MSG_RESULT([disabled])
127
+ fi
128
+ #-----------------------------------------------------------------------
129
+
130
+ #-----------------------------------------------------------------------
131
+ # --enable-fts4
132
+ #
133
+ AC_ARG_ENABLE(fts4, [AS_HELP_STRING(
134
+ [--enable-fts4], [include fts4 support [default=yes]])],
135
+ [], [enable_fts4=yes])
136
+ AC_MSG_CHECKING([FTS4 extension])
137
+ if test x"$enable_fts4" = "xyes"; then
138
+ BUILD_CFLAGS="$BUILD_CFLAGS -DSQLITE_ENABLE_FTS4"
139
+ AC_MSG_RESULT([enabled])
140
+ else
141
+ AC_MSG_RESULT([disabled])
142
+ fi
143
+ #-----------------------------------------------------------------------
144
+
145
+ #-----------------------------------------------------------------------
146
+ # --enable-fts3
147
+ #
148
+ AC_ARG_ENABLE(fts3, [AS_HELP_STRING(
149
+ [--enable-fts3], [include fts3 support [default=no]])],
150
+ [], [])
151
+ AC_MSG_CHECKING([FTS3 extension])
152
+ if test x"$enable_fts3" = "xyes" -a x"$enable_fts4" = "xno"; then
153
+ BUILD_CFLAGS="$BUILD_CFLAGS -DSQLITE_ENABLE_FTS3"
154
+ AC_MSG_RESULT([enabled])
155
+ else
156
+ AC_MSG_RESULT([disabled])
157
+ fi
158
+ #-----------------------------------------------------------------------
159
+
160
+ #-----------------------------------------------------------------------
161
+ # --enable-fts5
162
+ #
163
+ AC_ARG_ENABLE(fts5, [AS_HELP_STRING(
164
+ [--enable-fts5], [include fts5 support [default=yes]])],
165
+ [], [enable_fts5=yes])
166
+ AC_MSG_CHECKING([FTS5 extension])
167
+ if test x"$enable_fts5" = "xyes"; then
168
+ AC_MSG_RESULT([enabled])
169
+ AC_SEARCH_LIBS(log, m)
170
+ BUILD_CFLAGS="$BUILD_CFLAGS -DSQLITE_ENABLE_FTS5"
171
+ else
172
+ AC_MSG_RESULT([disabled])
173
+ fi
174
+ #-----------------------------------------------------------------------
175
+
176
+ #-----------------------------------------------------------------------
177
+ # --enable-rtree
178
+ #
179
+ AC_ARG_ENABLE(rtree, [AS_HELP_STRING(
180
+ [--enable-rtree], [include rtree support [default=yes]])],
181
+ [], [enable_rtree=yes])
182
+ AC_MSG_CHECKING([RTREE extension])
183
+ if test x"$enable_rtree" = "xyes"; then
184
+ BUILD_CFLAGS="$BUILD_CFLAGS -DSQLITE_ENABLE_RTREE -DSQLITE_ENABLE_GEOPOLY"
185
+ AC_MSG_RESULT([enabled])
186
+ else
187
+ AC_MSG_RESULT([disabled])
188
+ fi
189
+ #-----------------------------------------------------------------------
190
+
191
+ #-----------------------------------------------------------------------
192
+ # --enable-session
193
+ #
194
+ AC_ARG_ENABLE(session, [AS_HELP_STRING(
195
+ [--enable-session], [enable the session extension [default=no]])],
196
+ [], [])
197
+ AC_MSG_CHECKING([Session extension])
198
+ if test x"$enable_session" = "xyes"; then
199
+ BUILD_CFLAGS="$BUILD_CFLAGS -DSQLITE_ENABLE_SESSION -DSQLITE_ENABLE_PREUPDATE_HOOK"
200
+ AC_MSG_RESULT([enabled])
201
+ else
202
+ AC_MSG_RESULT([disabled])
203
+ fi
204
+ #-----------------------------------------------------------------------
205
+
206
+ #-----------------------------------------------------------------------
207
+ # --enable-debug
208
+ #
209
+ AC_ARG_ENABLE(debug, [AS_HELP_STRING(
210
+ [--enable-debug], [build with debugging features enabled [default=no]])],
211
+ [], [])
212
+ AC_MSG_CHECKING([Build type])
213
+ if test x"$enable_debug" = "xyes"; then
214
+ BUILD_CFLAGS="$BUILD_CFLAGS -DSQLITE_DEBUG -DSQLITE_ENABLE_SELECTTRACE -DSQLITE_ENABLE_WHERETRACE"
215
+ CFLAGS="-g -O0"
216
+ AC_MSG_RESULT([debug])
217
+ else
218
+ AC_MSG_RESULT([release])
219
+ fi
220
+ #-----------------------------------------------------------------------
221
+
222
+ #-----------------------------------------------------------------------
223
+ # --enable-static-shell
224
+ #
225
+ AC_ARG_ENABLE(static-shell, [AS_HELP_STRING(
226
+ [--enable-static-shell],
227
+ [statically link libsqlite3 into shell tool [default=yes]])],
228
+ [], [enable_static_shell=yes])
229
+ if test x"$enable_static_shell" = "xyes"; then
230
+ EXTRA_SHELL_OBJ=sqlite3-sqlite3.$OBJEXT
231
+ else
232
+ EXTRA_SHELL_OBJ=libsqlite3.la
233
+ fi
234
+ AC_SUBST(EXTRA_SHELL_OBJ)
235
+ #-----------------------------------------------------------------------
236
+
237
+ AC_CHECK_FUNCS(posix_fallocate)
238
+ AC_CHECK_HEADERS(zlib.h,[
239
+ AC_SEARCH_LIBS(deflate,z,[BUILD_CFLAGS="$BUILD_CFLAGS -DSQLITE_HAVE_ZLIB"])
240
+ ])
241
+
242
+ AC_SEARCH_LIBS(system,,,[SHELL_CFLAGS="-DSQLITE_NOHAVE_SYSTEM"])
243
+ AC_SUBST(SHELL_CFLAGS)
244
+
245
+ #-----------------------------------------------------------------------
246
+ # UPDATE: Maybe it's better if users just set CFLAGS before invoking
247
+ # configure. This option doesn't really add much...
248
+ #
249
+ # --enable-tempstore
250
+ #
251
+ # AC_ARG_ENABLE(tempstore, [AS_HELP_STRING(
252
+ # [--enable-tempstore],
253
+ # [in-memory temporary tables (never, no, yes, always) [default=no]])],
254
+ # [], [enable_tempstore=no])
255
+ # AC_MSG_CHECKING([for whether or not to store temp tables in-memory])
256
+ # case "$enable_tempstore" in
257
+ # never ) TEMP_STORE=0 ;;
258
+ # no ) TEMP_STORE=1 ;;
259
+ # always ) TEMP_STORE=3 ;;
260
+ # yes ) TEMP_STORE=3 ;;
261
+ # * )
262
+ # TEMP_STORE=1
263
+ # enable_tempstore=yes
264
+ # ;;
265
+ # esac
266
+ # AC_MSG_RESULT($enable_tempstore)
267
+ # AC_SUBST(TEMP_STORE)
268
+ #-----------------------------------------------------------------------
269
+
270
+ AC_OUTPUT