aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorDouglas Creager2010-08-18 17:20:22 -0400
committerAdam Vandenberg2010-08-18 17:14:14 -0700
commitce8d2f5bce47d0a7383dd5648e6164b684516225 (patch)
tree145600bf9709d8185da68b563ff61f3155cd2191 /Library/Formula
parent2e42815cf65e886d7cb40524dbd470f45725f2b0 (diff)
downloadhomebrew-ce8d2f5bce47d0a7383dd5648e6164b684516225.tar.bz2
Fixing several formulae that fail with LLVM
Specifically: emacs, glib, igraph, and zeromq Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/emacs.rb2
-rw-r--r--Library/Formula/glib.rb2
-rw-r--r--Library/Formula/igraph.rb2
-rw-r--r--Library/Formula/zeromq.rb1
4 files changed, 7 insertions, 0 deletions
diff --git a/Library/Formula/emacs.rb b/Library/Formula/emacs.rb
index 5bcfa1184..32f3a5a32 100644
--- a/Library/Formula/emacs.rb
+++ b/Library/Formula/emacs.rb
@@ -53,6 +53,8 @@ class Emacs <Formula
end
def install
+ fails_with_llvm "Duplicate symbol errors while linking."
+
configure_args = [
"--prefix=#{prefix}",
"--without-dbus",
diff --git a/Library/Formula/glib.rb b/Library/Formula/glib.rb
index 4c5071ad4..7434c61b1 100644
--- a/Library/Formula/glib.rb
+++ b/Library/Formula/glib.rb
@@ -16,6 +16,8 @@ class Glib <Formula
depends_on 'gettext'
def install
+ fails_with_llvm "Undefined symbol errors while linking"
+
# Snow Leopard libiconv doesn't have a 64bit version of the libiconv_open
# function, which breaks things for us, so we build our own
# http://www.mail-archive.com/gtk-list@gnome.org/msg28747.html
diff --git a/Library/Formula/igraph.rb b/Library/Formula/igraph.rb
index c175d293d..b71ca9e85 100644
--- a/Library/Formula/igraph.rb
+++ b/Library/Formula/igraph.rb
@@ -9,6 +9,8 @@ class Igraph <Formula
depends_on 'gmp'
def install
+ fails_with_llvm "Segfault while compiling."
+
system "./configure", "--disable-debug", "--disable-dependency-tracking", "--prefix=#{prefix}"
system "make install"
end
diff --git a/Library/Formula/zeromq.rb b/Library/Formula/zeromq.rb
index 43d53ee6c..f0238e459 100644
--- a/Library/Formula/zeromq.rb
+++ b/Library/Formula/zeromq.rb
@@ -6,6 +6,7 @@ class Zeromq <Formula
md5 'c9cb3ee4499df1781f8ddc03c20d656b'
def install
+ fails_with_llvm "Compiling with LLVM gives a segfault while linking."
system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
system "make install"
end