[Cryptech-Commits] [user/sra/sqlite3] 01/01: Allowing SQLite3 to use dlopen() is probably a bad idea, and allowing dlopen() complicates the build, so disable it.

git at cryptech.is git at cryptech.is
Wed Jul 1 21:31:38 UTC 2015


This is an automated email from the git hooks/post-receive script.

sra at hactrn.net pushed a commit to branch master
in repository user/sra/sqlite3.

commit f6d41618fb1b9e0449af63811c75b20f55237fb6
Author: Rob Austein <sra at hactrn.net>
Date:   Wed Jul 1 17:29:37 2015 -0400

    Allowing SQLite3 to use dlopen() is probably a bad idea, and allowing
    dlopen() complicates the build, so disable it.
---
 GNUmakefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/GNUmakefile b/GNUmakefile
index ce718f7..b8f8d20 100644
--- a/GNUmakefile
+++ b/GNUmakefile
@@ -37,7 +37,7 @@ ifndef ENABLE_THREADS
 endif
 
 URL	:= http://sqlite.org/2015/sqlite-autoconf-3080900.tar.gz
-OPTIONS	:= --enable-static --disable-shared CFLAGS=-fPIC LDFLAGS=-fPIC
+OPTIONS	:= --enable-static --disable-shared --disable-dynamic-extensions CFLAGS=-fPIC LDFLAGS=-fPIC
 
 ifneq "${ENABLE_THREADS}" "yes"
   OPTIONS += --disable-threadsafe



More information about the Commits mailing list