Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
D
doxverilog
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Commits
Open sidebar
Elphel
doxverilog
Commits
96280c02
Commit
96280c02
authored
Jun 18, 2013
by
Adrian Negreanu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
sqlite3: fix the case when libsqlite3 is a symlink
Signed-off-by:
Adrian Negreanu
<
adrian.m.negreanu@intel.com
>
parent
f8331ab0
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
configure
configure
+2
-2
No files found.
configure
View file @
96280c02
...
...
@@ -421,7 +421,7 @@ fi
if
test
"
$f_sqlite3
"
=
YES
;
then
printf
" Checking for sqlite3 ... "
sqlite3_hdr_dir
=
"/usr/include /usr/local/include /opt/local/include"
sqlite3_lib_dir
=
"/usr/lib /usr/local/lib /opt/local/lib"
sqlite3_lib_dir
=
"/usr/lib /usr/local/lib /opt/local/lib
/usr/lib/x86_64-linux-gnu
"
sqlite3_lib_name
=
"libsqlite3.so libsqlite3.dylib libsqlite3.a"
sqlite3_hdr
=
NO
sqlite3_lib
=
NO
...
...
@@ -435,7 +435,7 @@ if test "$f_sqlite3" = YES; then
for
i
in
$sqlite3_lib_dir
;
do
if
test
"
$sqlite3_lib
"
=
NO
;
then
for
j
in
$sqlite3_lib_name
;
do
if
test
-
f
"
$i
/
$j
"
;
then
if
test
-
e
"
$i
/
$j
"
;
then
sqlite3_lib
=
"
$i
/
$j
"
sqlite3_link
=
"-L
$i
-lsqlite3"
break
...
...
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