diff options
| author | Charlie Sharpsteen | 2012-05-07 09:51:29 -0700 |
|---|---|---|
| committer | Charlie Sharpsteen | 2012-05-07 09:51:29 -0700 |
| commit | 08456e4cd335a5ea0e3aa8285b39f2c4bfd93171 (patch) | |
| tree | ad567229735ac80c977c31bd63ace3873d150856 /Library/Formula/sqlite.rb | |
| parent | 69880c35b5456e2431a1e7948d1a63575b727efe (diff) | |
| download | homebrew-08456e4cd335a5ea0e3aa8285b39f2c4bfd93171.tar.bz2 | |
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.
Diffstat (limited to 'Library/Formula/sqlite.rb')
| -rw-r--r-- | Library/Formula/sqlite.rb | 3 |
1 files changed, 1 insertions, 2 deletions
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" |
