SQLite: Always enable dynamic extensions
This is the configure default, but may as well make it explicit. Without this functionality any library which builds on top of SQLite, such as SpatiaLite, won't work.
This commit is contained in:
parent
1a8376f279
commit
4fd75d8871
1 changed files with 1 additions and 2 deletions
|
@ -44,8 +44,7 @@ class Sqlite < Formula
|
||||||
|
|
||||||
ENV.universal_binary if ARGV.build_universal?
|
ENV.universal_binary if ARGV.build_universal?
|
||||||
|
|
||||||
system "./configure", "--prefix=#{prefix}", "--disable-dependency-tracking",
|
system "./configure", "--prefix=#{prefix}", "--disable-dependency-tracking", "--enable-dynamic-extensions"
|
||||||
(ARGV.include? "--with-functions") ? "--enable-dynamic-extensions" : ""
|
|
||||||
system "make install"
|
system "make install"
|
||||||
|
|
||||||
if ARGV.include? "--with-functions"
|
if ARGV.include? "--with-functions"
|
||||||
|
|
Loading…
Reference in a new issue