aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/postgresql.rb
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Formula/postgresql.rb')
-rw-r--r--Library/Formula/postgresql.rb5
1 files changed, 3 insertions, 2 deletions
diff --git a/Library/Formula/postgresql.rb b/Library/Formula/postgresql.rb
index ba5997019..4c1b419f7 100644
--- a/Library/Formula/postgresql.rb
+++ b/Library/Formula/postgresql.rb
@@ -12,6 +12,7 @@ class Postgresql < Formula
def options
[
['--32-bit', 'Build 32-bit only.'],
+ ['--without-ossp-uuid', 'Build without OSSP uuid.'],
['--no-python', 'Build without Python support.'],
['--no-perl', 'Build without Perl support.'],
['--enable-dtrace', 'Build with DTrace support.']
@@ -33,9 +34,9 @@ class Postgresql < Formula
"--with-krb5",
"--with-openssl",
"--with-libxml",
- "--with-libxslt",
- "--with-ossp-uuid"]
+ "--with-libxslt"]
+ args << "--with-ossp-uuid" unless ARGV.include? '--without-ossp-uuid'
args << "--with-python" unless ARGV.include? '--no-python'
args << "--with-perl" unless ARGV.include? '--no-perl'
args << "--enable-dtrace" if ARGV.include? '--enable-dtrace'