Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
N
node-sqlite3
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
俞永鹏
node-sqlite3
Commits
afc34237
Commit
afc34237
authored
Jan 30, 2011
by
Orlando Vazquez
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix npm install problem
parent
5fc6f207
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
package.json
package.json
+1
-1
wscript
wscript
+2
-2
No files found.
package.json
View file @
afc34237
...
...
@@ -16,7 +16,7 @@
}
,
'directories'
:
{
'lib'
:
'.'
}
,
'engines'
:
{
'node'
:
'>=
0.2
.
0
'
}
,
'scripts'
:
{
'test'
:
'./run-tests'
}
,
'scripts'
:
{
'test'
:
'./run-tests'
,
preinstall
:
'node-waf
configure
build'
}
,
'licenses'
:
[
{
'type'
:
'BSD'
}
]
,
'main'
:
'./sqlite'
...
...
wscript
View file @
afc34237
...
...
@@ -21,7 +21,7 @@ def configure(conf):
conf
.
env
.
append_value
(
"CPPPATH_MPOOL"
,
abspath
(
"./deps/mpool-2.1.0/"
))
conf
.
env
.
append_value
(
'LIBPATH_SQLITE'
,
abspath
(
'./deps/sqlite/'
))
conf
.
env
.
append_value
(
'LIB_SQLITE'
,
abspath
(
'sqlite'
)
)
conf
.
env
.
append_value
(
'LIB_SQLITE'
,
'sqlite3'
)
conf
.
env
.
append_value
(
'CPATH_SQLITE'
,
abspath
(
'./deps/sqlite/'
))
def
build
(
bld
):
...
...
@@ -35,7 +35,7 @@ def build(bld):
obj
.
cxxflags
=
[
"-g"
,
"-D_FILE_OFFSET_BITS=64"
,
"-D_LARGEFILE_SOURCE"
,
"-Wall"
]
obj
.
target
=
"sqlite3_bindings"
obj
.
source
=
"src/sqlite3_bindings.cc src/database.cc src/statement.cc"
obj
.
uselib
=
"MPOOL"
obj
.
uselib
=
"
SQLITE
MPOOL"
t
=
'sqlite3_bindings.node'
def
shutdown
():
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment