aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMisty De Meo2013-04-02 09:57:42 -0500
committerMisty De Meo2013-04-02 16:25:38 -0500
commitb4e940a48dcf6aab207c7acf85c50a98d75b8c5f (patch)
tree407a4aafda1e531ed0c5d6f55c5d8c0412d9048c
parentb2309d2f98edd0a2e13611b2ba1de3f510afd378 (diff)
downloadhomebrew-b4e940a48dcf6aab207c7acf85c50a98d75b8c5f.tar.bz2
weechat: disable gettext/NLS for now
This is a workaround for #18722.
-rw-r--r--Library/Formula/weechat.rb5
1 files changed, 4 insertions, 1 deletions
diff --git a/Library/Formula/weechat.rb b/Library/Formula/weechat.rb
index 9bc4a2e28..4be9febb8 100644
--- a/Library/Formula/weechat.rb
+++ b/Library/Formula/weechat.rb
@@ -6,7 +6,6 @@ class Weechat < Formula
sha1 'e4b891d9d3d68196f97d226f487c4a2382d59d99'
depends_on 'cmake' => :build
- depends_on 'gettext'
depends_on 'gnutls'
depends_on 'libgcrypt'
depends_on 'guile' if build.include? 'guile'
@@ -52,6 +51,10 @@ class Weechat < Formula
args << '-DENABLE_ASPELL=OFF' unless build.include? 'aspell'
args << '-DENABLE_GUILE=OFF' unless build.include? 'guile' and \
Formula.factory('guile').linked_keg.exist?
+
+ # NLS/gettext support disabled for now since it doesn't work in stdenv
+ # see https://github.com/mxcl/homebrew/issues/18722
+ args << "-DENABLE_NLS=OFF"
args << '..'
mkdir 'build' do