From 05c7954306fe5ace9716303f473d9a1fc5fe0f93 Mon Sep 17 00:00:00 2001 From: Brian Cunnie & Matthew Kocher Date: Fri, 11 May 2012 20:51:37 -0700 Subject: postgresql: optional ossp-uuid A certain large cat doesn't work with ossp-uuid. Closes #12210. Signed-off-by: Charlie Sharpsteen --- Library/Formula/postgresql.rb | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'Library/Formula/postgresql.rb') 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' -- cgit v1.2.3