diff options
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/qt.rb | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Library/Formula/qt.rb b/Library/Formula/qt.rb index 27fa4dc20..d07f0d86c 100644 --- a/Library/Formula/qt.rb +++ b/Library/Formula/qt.rb @@ -19,6 +19,7 @@ class Qt <Formula depends_on "d-bus" if ARGV.include? '--with-qtdbus' depends_on 'libpng' unless x11? + depends_on 'sqlite' if MACOS_VERSION <= 10.5 def install if version == '4.6.2' # being specific so needs reconfirmed each version @@ -28,12 +29,15 @@ class Qt <Formula end conf_args = ["-prefix", prefix, - "-system-sqlite", "-system-libpng", "-system-zlib", + "-system-libpng", "-system-zlib", "-nomake", "demos", "-nomake", "examples", "-release", "-cocoa", "-confirm-license", "-opensource", "-fast"] + # See: http://github.com/mxcl/homebrew/issues/issue/744 + conf_args << "-system-sqlite" if MACOS_VERSION <= 10.5 + conf_args << "-plugin-sql-mysql" if (HOMEBREW_CELLAR+"mysql").directory? if ARGV.include? '--with-qtdbus' |
