diff options
| author | Kashif Rasul | 2011-07-22 05:05:58 -0700 |
|---|---|---|
| committer | Adam Vandenberg | 2011-07-27 11:26:54 -0700 |
| commit | 917bdbc823b933f6db9c4a25ed23261bc44f44c8 (patch) | |
| tree | 2cda0cefe9d3cff9ff9d6267695acc0a29d668b7 /Library | |
| parent | 11c024c1ce31ea28a6e4bb54f9acf23acaadc8f2 (diff) | |
| download | homebrew-917bdbc823b933f6db9c4a25ed23261bc44f44c8.tar.bz2 | |
postgresql: option to dtrace probes
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/postgresql.rb | 4 |
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" |
