diff options
| author | Brian Cunnie & Matthew Kocher | 2012-05-11 20:51:37 -0700 |
|---|---|---|
| committer | Charlie Sharpsteen | 2012-06-05 10:17:19 -0700 |
| commit | 05c7954306fe5ace9716303f473d9a1fc5fe0f93 (patch) | |
| tree | b58603e41f92ee0ccd0901d54a329e609aba63cd /Library/Formula/postgresql.rb | |
| parent | 92eefe976ed7827eb3b54a78bf679895136c39ef (diff) | |
| download | homebrew-05c7954306fe5ace9716303f473d9a1fc5fe0f93.tar.bz2 | |
postgresql: optional ossp-uuid
A certain large cat doesn't work with ossp-uuid.
Closes #12210.
Signed-off-by: Charlie Sharpsteen <source@sharpsteen.net>
Diffstat (limited to 'Library/Formula/postgresql.rb')
| -rw-r--r-- | Library/Formula/postgresql.rb | 5 |
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' |
