aboutsummaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure7
1 files changed, 7 insertions, 0 deletions
diff --git a/configure b/configure
index eeb19f3..dfd712b 100755
--- a/configure
+++ b/configure
@@ -31,11 +31,14 @@ usage()
echo >&2 " [--libdir=...]"
echo >&2 " [--suffix=...]"
echo >&2 " [--with-sqlite=...]"
+ echo >&2 " [--enable-static-sqlite]"
echo >&2 " [--with-rpath=...|--without-rpath]"
echo >&2 " [--bits=32|64]"
exit 1
}
+sqlite_ldarg=-lsqlite3
+
for arg
do
case $arg in
@@ -46,6 +49,9 @@ do
--libdir=*)
opt_libdir=${arg#--libdir=}
;;
+ --enable-static-sqlite)
+ sqlite_ldarg='$(SQLITE)/lib/libsqlite3.a'
+ ;;
--with-sqlite=*)
opt_sqlite=${arg#--with-sqlite=}
# assign new value if unset
@@ -114,6 +120,7 @@ sed -e '
s,@LIB@,'"$opt_lib"',g
s,@SUFFIX@,'"$opt_suffix"',g
s,@SQLITE@,'"$opt_sqlite"',g
+ s,@SQLITE_LDARG@,'"$sqlite_ldarg"',g
s!@RPATH@!'"$opt_rpath"'!g
s,@MARK64@,'"$opt_mark64"',g
s,@BITS@,'"$opt_bits"',g