aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorDavid Reynolds2009-10-05 21:27:37 +0100
committerMax Howell2009-10-12 17:37:00 +0100
commitad2a075c1b687cc0dc7141902aba57a7d9f7284b (patch)
treea57f30a62fef43d8737e2d6d20062e420384ffa7 /Library/Formula
parent375e63adc5e10226b7f74ee4e197c9e937203972 (diff)
downloadhomebrew-ad2a075c1b687cc0dc7141902aba57a7d9f7284b.tar.bz2
Adding readline support into the postgres formula
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/postgresql.rb4
1 files changed, 3 insertions, 1 deletions
diff --git a/Library/Formula/postgresql.rb b/Library/Formula/postgresql.rb
index 64592e1d1..35d2da54c 100644
--- a/Library/Formula/postgresql.rb
+++ b/Library/Formula/postgresql.rb
@@ -4,6 +4,8 @@ class Postgresql <Formula
@homepage='http://www.postgresql.org/'
@url='http://wwwmaster.postgresql.org/redir/198/h/source/v8.4.0/postgresql-8.4.0.tar.bz2'
@md5='1f172d5f60326e972837f58fa5acd130'
+
+ depends_on 'readline'
def install
configure_args = [
@@ -17,7 +19,7 @@ class Postgresql <Formula
"--with-libxml",
"--with-libxslt",
"--prefix=#{prefix}",
- "--disable-debug"
+ "--disable-debug",
]
if MACOS_VERSION >= 10.6 && Hardware.is_64_bit?