diff options
Diffstat (limited to 'Library/Formula')
| -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" |
