git-sqlite-vfs 0.0.6 → 0.0.7

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 (51) hide show
  1. package/index.js +1 -1
  2. package/package.json +8 -3
  3. package/c/output/git-merge-sqlitevfs.exe +0 -0
  4. package/c/output/gitvfs.dll +0 -0
  5. package/c/output/gitvfs.o +0 -0
  6. package/c/output/gitvfs_test.exe +0 -0
  7. package/c/output/main.o +0 -0
  8. package/c/output/sqlite3.o +0 -0
  9. package/c/sqlite-autoconf-3450200/INSTALL +0 -370
  10. package/c/sqlite-autoconf-3450200/Makefile.am +0 -20
  11. package/c/sqlite-autoconf-3450200/Makefile.fallback +0 -19
  12. package/c/sqlite-autoconf-3450200/Makefile.in +0 -1050
  13. package/c/sqlite-autoconf-3450200/Makefile.msc +0 -1069
  14. package/c/sqlite-autoconf-3450200/README.txt +0 -113
  15. package/c/sqlite-autoconf-3450200/Replace.cs +0 -223
  16. package/c/sqlite-autoconf-3450200/aclocal.m4 +0 -10204
  17. package/c/sqlite-autoconf-3450200/compile +0 -348
  18. package/c/sqlite-autoconf-3450200/config.guess +0 -1754
  19. package/c/sqlite-autoconf-3450200/config.sub +0 -1890
  20. package/c/sqlite-autoconf-3450200/configure +0 -16887
  21. package/c/sqlite-autoconf-3450200/configure.ac +0 -270
  22. package/c/sqlite-autoconf-3450200/depcomp +0 -791
  23. package/c/sqlite-autoconf-3450200/install-sh +0 -541
  24. package/c/sqlite-autoconf-3450200/ltmain.sh +0 -11251
  25. package/c/sqlite-autoconf-3450200/missing +0 -215
  26. package/c/sqlite-autoconf-3450200/shell.c +0 -29659
  27. package/c/sqlite-autoconf-3450200/sqlite3.1 +0 -161
  28. package/c/sqlite-autoconf-3450200/sqlite3.c +0 -255811
  29. package/c/sqlite-autoconf-3450200/sqlite3.h +0 -13357
  30. package/c/sqlite-autoconf-3450200/sqlite3.pc.in +0 -13
  31. package/c/sqlite-autoconf-3450200/sqlite3.rc +0 -83
  32. package/c/sqlite-autoconf-3450200/sqlite3ext.h +0 -719
  33. package/c/sqlite-autoconf-3450200/sqlite3rc.h +0 -3
  34. package/c/sqlite-autoconf-3450200/tea/Makefile.in +0 -475
  35. package/c/sqlite-autoconf-3450200/tea/README +0 -36
  36. package/c/sqlite-autoconf-3450200/tea/aclocal.m4 +0 -9
  37. package/c/sqlite-autoconf-3450200/tea/configure +0 -10179
  38. package/c/sqlite-autoconf-3450200/tea/configure.ac +0 -227
  39. package/c/sqlite-autoconf-3450200/tea/doc/sqlite3.n +0 -15
  40. package/c/sqlite-autoconf-3450200/tea/generic/tclsqlite3.c +0 -4080
  41. package/c/sqlite-autoconf-3450200/tea/license.terms +0 -6
  42. package/c/sqlite-autoconf-3450200/tea/pkgIndex.tcl.in +0 -10
  43. package/c/sqlite-autoconf-3450200/tea/tclconfig/install-sh +0 -528
  44. package/c/sqlite-autoconf-3450200/tea/tclconfig/tcl.m4 +0 -4067
  45. package/c/sqlite-autoconf-3450200/tea/win/makefile.vc +0 -430
  46. package/c/sqlite-autoconf-3450200/tea/win/nmakehlp.c +0 -815
  47. package/c/sqlite-autoconf-3450200/tea/win/rules.vc +0 -711
  48. package/c/sqlite-autoconf-3450200.tar.gz +0 -0
  49. package/c/sqlite3.c +0 -255811
  50. package/c/sqlite3.h +0 -13357
  51. package/c/sqlite3ext.h +0 -719
@@ -1,13 +0,0 @@
1
- # Package Information for pkg-config
2
-
3
- prefix=@prefix@
4
- exec_prefix=@exec_prefix@
5
- libdir=@libdir@
6
- includedir=@includedir@
7
-
8
- Name: SQLite
9
- Description: SQL database engine
10
- Version: @PACKAGE_VERSION@
11
- Libs: -L${libdir} -lsqlite3
12
- Libs.private: @LIBS@
13
- Cflags: -I${includedir}
@@ -1,83 +0,0 @@
1
- /*
2
- ** 2012 September 2
3
- **
4
- ** The author disclaims copyright to this source code. In place of
5
- ** a legal notice, here is a blessing:
6
- **
7
- ** May you do good and not evil.
8
- ** May you find forgiveness for yourself and forgive others.
9
- ** May you share freely, never taking more than you give.
10
- **
11
- ******************************************************************************
12
- **
13
- ** This file contains code and resources that are specific to Windows.
14
- */
15
-
16
- #if !defined(_WIN32_WCE)
17
- #include "winresrc.h"
18
- #else
19
- #include "windows.h"
20
- #endif /* !defined(_WIN32_WCE) */
21
-
22
- #if !defined(VS_FF_NONE)
23
- # define VS_FF_NONE 0x00000000L
24
- #endif /* !defined(VS_FF_NONE) */
25
-
26
- #include "sqlite3.h"
27
- #include "sqlite3rc.h"
28
-
29
- /*
30
- * English (U.S.) resources
31
- */
32
-
33
- #if defined(_WIN32)
34
- LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
35
- #pragma code_page(1252)
36
- #endif /* defined(_WIN32) */
37
-
38
- /*
39
- * Icon
40
- */
41
-
42
- #if !defined(RC_VERONLY)
43
- #define IDI_SQLITE 101
44
-
45
- IDI_SQLITE ICON "..\\art\\sqlite370.ico"
46
- #endif /* !defined(RC_VERONLY) */
47
-
48
- /*
49
- * Version
50
- */
51
-
52
- VS_VERSION_INFO VERSIONINFO
53
- FILEVERSION SQLITE_RESOURCE_VERSION
54
- PRODUCTVERSION SQLITE_RESOURCE_VERSION
55
- FILEFLAGSMASK VS_FFI_FILEFLAGSMASK
56
- #if defined(_DEBUG)
57
- FILEFLAGS VS_FF_DEBUG
58
- #else
59
- FILEFLAGS VS_FF_NONE
60
- #endif /* defined(_DEBUG) */
61
- FILEOS VOS__WINDOWS32
62
- FILETYPE VFT_DLL
63
- FILESUBTYPE VFT2_UNKNOWN
64
- BEGIN
65
- BLOCK "StringFileInfo"
66
- BEGIN
67
- BLOCK "040904b0"
68
- BEGIN
69
- VALUE "CompanyName", "SQLite Development Team"
70
- VALUE "FileDescription", "SQLite is a software library that implements a self-contained, serverless, zero-configuration, transactional SQL database engine."
71
- VALUE "FileVersion", SQLITE_VERSION
72
- VALUE "InternalName", "sqlite3"
73
- VALUE "LegalCopyright", "http://www.sqlite.org/copyright.html"
74
- VALUE "ProductName", "SQLite"
75
- VALUE "ProductVersion", SQLITE_VERSION
76
- VALUE "SourceId", SQLITE_SOURCE_ID
77
- END
78
- END
79
- BLOCK "VarFileInfo"
80
- BEGIN
81
- VALUE "Translation", 0x409, 0x4b0
82
- END
83
- END