mysql-cluster: build universal under superenv

master
Jack Nagel 2014-05-09 20:49:36 -05:00
parent db16697ed5
commit b8669bb820
1 changed files with 4 additions and 3 deletions

View File

@ -21,8 +21,6 @@ class MysqlCluster < Formula
conflicts_with 'mysql', 'mariadb', 'percona-server',
:because => "mysql, mariadb, and percona install the same binaries."
env :std if build.universal?
fails_with :clang do
build 500
cause "http://article.gmane.org/gmane.comp.db.mysql.cluster/2085"
@ -69,7 +67,10 @@ class MysqlCluster < Formula
args << "-DWITH_BLACKHOLE_STORAGE_ENGINE=1" if build.with? "blackhole-storage-engine"
# Make universal for binding to universal applications
args << "-DCMAKE_OSX_ARCHITECTURES='#{Hardware::CPU.universal_archs.as_cmake_arch_flags}'" if build.universal?
if build.universal?
ENV.universal_binary
args << "-DCMAKE_OSX_ARCHITECTURES=#{Hardware::CPU.universal_archs.as_cmake_arch_flags}"
end
# Build with local infile loading support
args << "-DENABLED_LOCAL_INFILE=1" if build.include? 'enable-local-infile'