From 08456e4cd335a5ea0e3aa8285b39f2c4bfd93171 Mon Sep 17 00:00:00 2001 From: Charlie Sharpsteen Date: Mon, 7 May 2012 09:51:29 -0700 Subject: 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. --- Library/Formula/sqlite.rb | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'Library/Formula/sqlite.rb') diff --git a/Library/Formula/sqlite.rb b/Library/Formula/sqlite.rb index 08b3c55c6..f8e20900d 100644 --- a/Library/Formula/sqlite.rb +++ b/Library/Formula/sqlite.rb @@ -44,8 +44,7 @@ class Sqlite < Formula ENV.universal_binary if ARGV.build_universal? - system "./configure", "--prefix=#{prefix}", "--disable-dependency-tracking", - (ARGV.include? "--with-functions") ? "--enable-dynamic-extensions" : "" + system "./configure", "--prefix=#{prefix}", "--disable-dependency-tracking", "--enable-dynamic-extensions" system "make install" if ARGV.include? "--with-functions" -- cgit v1.2.3