Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Z
Zipr Toolchain
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Open Source Software
Zipr Toolchain
Commits
9fdf7c4f
Commit
9fdf7c4f
authored
9 years ago
by
an7s
Browse files
Options
Downloads
Patches
Plain Diff
fixed dependency on sqlite3.h
Former-commit-id: 9ef4d7aa18ec40d4136d56258d26c2db58edfeed
parent
730f6414
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
appfw/src/SConscript
+15
-18
15 additions, 18 deletions
appfw/src/SConscript
with
15 additions
and
18 deletions
appfw/src/SConscript
+
15
−
18
View file @
9fdf7c4f
...
...
@@ -23,6 +23,7 @@ SQLITE3_DIR=os.path.join(os.environ['SECURITY_TRANSFORMS_HOME'], 'third_party/SQ
print
'
i am in cwd:
'
,
os
.
getcwd
()
if
env
.
GetOption
(
'
clean
'
):
print
'
option clean is turned on
'
if
os
.
path
.
exists
(
SQLITE3_DIR
):
shutil
.
rmtree
(
SQLITE3_DIR
)
if
os
.
path
.
exists
(
'
appfw_sqlite3.c
'
):
...
...
@@ -40,29 +41,25 @@ else:
tgz
.
extract
(
'
sqlite-autoconf-3071300/sqlite3.h
'
,
SQLITE3_DIR
)
tgz
.
extract
(
'
sqlite-autoconf-3071300/sqlite3.c
'
,
SQLITE3_DIR
)
source_dir
=
os
.
path
.
join
(
SQLITE3_DIR
,
'
sqlite-autoconf-3071300
'
)
target_dir
=
os
.
getcwd
()
shutil
.
copy
(
os
.
path
.
join
(
source_dir
,
'
sqlite3.c
'
),
os
.
path
.
join
(
target_dir
,
'
appfw_sqlite3.c
'
))
shutil
.
copy
(
os
.
path
.
join
(
source_dir
,
'
sqlite3.h
'
),
os
.
path
.
join
(
target_dir
,
'
appfw_sqlite3.h
'
))
shutil
.
copy
(
os
.
path
.
join
(
source_dir
,
'
sqlite3.h
'
),
os
.
path
.
join
(
target_dir
,
'
sqlite3.h
'
))
assert
os
.
path
.
isdir
(
SQLITE3_DIR
)
# need to do the sed replacement: sqlite3.[ch] --> appfw_sqlite3.[ch]
substitute_in_file
(
os
.
path
.
join
(
target_dir
,
'
appfw_sqlite3.c
'
),
'
sqlite3
'
,
'
appfw_sqlite3
'
)
substitute_in_file
(
os
.
path
.
join
(
target_dir
,
'
appfw_sqlite3.h
'
),
'
sqlite3
'
,
'
appfw_sqlite3
'
)
source_dir
=
os
.
path
.
join
(
SQLITE3_DIR
,
'
sqlite-autoconf-3071300
'
)
target_dir
=
os
.
getcwd
()
shutil
.
copy
(
os
.
path
.
join
(
source_dir
,
'
sqlite3.c
'
),
os
.
path
.
join
(
target_dir
,
'
appfw_sqlite3.c
'
))
shutil
.
copy
(
os
.
path
.
join
(
source_dir
,
'
sqlite3.h
'
),
os
.
path
.
join
(
target_dir
,
'
appfw_sqlite3.h
'
))
sqlfw_c
=
os
.
path
.
join
(
os
.
environ
[
'
SECURITY_TRANSFORMS_HOME
'
],
'
appfw
'
,
'
src
'
,
'
sqlfw.c
'
)
combined_sqlite3_c
=
os
.
path
.
join
(
os
.
environ
[
'
SECURITY_TRANSFORMS_HOME
'
],
'
appfw
'
,
'
src
'
,
'
combined_sqlite3.c
'
)
shutil
.
copy
(
os
.
path
.
join
(
source_dir
,
'
sqlite3.h
'
),
os
.
path
.
join
(
target_dir
,
'
..
'
,
'
sqlite3.h
'
))
with
open
(
combined_sqlite3_c
,
'
w
'
)
as
fout
:
for
line
in
file
input
.
input
(
files
=
(
'
appfw_sqlite3.c
'
,
sql
fw_c
)):
fout
.
write
(
line
)
# need to do the sed replacement: sqlite3.[ch] --> appfw_sqlite3.[ch]
substitute_
in
_
file
(
os
.
path
.
join
(
target_dir
,
'
appfw_sqlite3.c
'
)
,
'
sql
ite3
'
,
'
appfw_sqlite3
'
)
substitute_in_file
(
os
.
path
.
join
(
target_dir
,
'
appfw_sqlite3.h
'
),
'
sqlite3
'
,
'
appfw_sqlite3
'
)
else
:
assert
os
.
path
.
isdir
(
SQLITE3_DIR
)
sqlfw_c
=
os
.
path
.
join
(
os
.
environ
[
'
SECURITY_TRANSFORMS_HOME
'
],
'
appfw
'
,
'
src
'
,
'
sqlfw.c
'
)
combined_sqlite3_c
=
os
.
path
.
join
(
os
.
environ
[
'
SECURITY_TRANSFORMS_HOME
'
],
'
appfw
'
,
'
src
'
,
'
combined_sqlite3.c
'
)
# sqlite-autoconf-3071300.tar.gz"
# ${PS_TAR} -zxvf ../../third_party/sqlite-autoconf-3071300.tar.gz --no-anchored --wildcards 'sqlite3.[ch]'
# cp ./sqlite-autoconf-3071300/sqlite3.h .
with
open
(
combined_sqlite3_c
,
'
w
'
)
as
fout
:
for
line
in
fileinput
.
input
(
files
=
(
'
appfw_sqlite3.c
'
,
sqlfw_c
)):
fout
.
write
(
line
)
libname
=
"
appfw
"
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment