diff options
author | Rob Austein <sra@hactrn.net> | 2015-07-01 17:29:37 -0400 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2015-07-01 17:29:37 -0400 |
commit | f6d41618fb1b9e0449af63811c75b20f55237fb6 (patch) | |
tree | 5e4d65ea3b56a7f7b97f6bb73802949cf6a96989 /GNUmakefile | |
parent | 48ec7e3996bc61fd2be4dfb04c1f71c4496ebd2f (diff) |
Allowing SQLite3 to use dlopen() is probably a bad idea, and allowing
dlopen() complicates the build, so disable it.
Diffstat (limited to 'GNUmakefile')
-rw-r--r-- | GNUmakefile | 2 |
1 files changed, 1 insertions, 1 deletions
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 |