aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorKashif Rasul2011-07-22 05:05:58 -0700
committerAdam Vandenberg2011-07-27 11:26:54 -0700
commit917bdbc823b933f6db9c4a25ed23261bc44f44c8 (patch)
tree2cda0cefe9d3cff9ff9d6267695acc0a29d668b7 /Library/Formula
parent11c024c1ce31ea28a6e4bb54f9acf23acaadc8f2 (diff)
downloadhomebrew-917bdbc823b933f6db9c4a25ed23261bc44f44c8.tar.bz2
postgresql: option to dtrace probes
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
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 4e92b122c..6fca2a6d9 100644
--- a/Library/Formula/postgresql.rb
+++ b/Library/Formula/postgresql.rb
@@ -13,7 +13,8 @@ class Postgresql < Formula
def options
[
['--no-python', 'Build without Python support.'],
- ['--no-perl', 'Build without Perl support.']
+ ['--no-perl', 'Build without Perl support.'],
+ ['--enable-dtrace', 'Build with DTrace support.']
]
end
@@ -33,6 +34,7 @@ class Postgresql < Formula
args << "--with-python" unless ARGV.include? '--no-python'
args << "--with-perl" unless ARGV.include? '--no-perl'
+ args << "--enable-dtrace" if ARGV.include? '--enable-dtrace'
args << "--with-ossp-uuid"