Skip to content

Commit

Permalink
postgresql: optional ossp-uuid
Browse files Browse the repository at this point in the history
A certain large cat doesn't work with ossp-uuid.

Closes Homebrew#12210.

Signed-off-by: Charlie Sharpsteen <source@sharpsteen.net>
  • Loading branch information
Brian Cunnie & Matthew Kocher authored and Sharpie committed Jun 5, 2012
1 parent 92eefe9 commit 05c7954
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Library/Formula/postgresql.rb
Original file line number Diff line number Diff line change
Expand Up @@ -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.']
Expand All @@ -33,9 +34,9 @@ def install
"--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'
Expand Down

0 comments on commit 05c7954

Please sign in to comment.