On Tue, Nov 17, 2009 at 12:09 PM, Aditya Mahajan <[email protected]> wrote: > For the record, I am also using Arch Linux.
Same here. > Not sure if that makes any difference or not. It should not matter. >> I just rewrote the send/recv methods in Rumai's IXP layer to be >> thread-less: >> >> http://github.com/sunaku/rumai/commit/951983523bc1debea78216e18f361878c1136020 >> >> Let's see if this solves the problem. > > Thanks. In case you're wondering how to try out that patch: cd ~/.wmii-hg git clone git://github.com/sunaku/rumai.git Then make this change to your config.rb file and restart the wmiirc: diff --git a/config.rb b/config.rb index c86797a..73d9ee3 100644 --- a/config.rb +++ b/config.rb @@ -8,8 +8,9 @@ require 'shellwords' require 'pathname' require 'yaml' -require 'rubygems' -gem 'rumai', '~> 3' +#require 'rubygems' +#gem 'rumai', '~> 3' +$LOAD_PATH.unshift File.join(File.dirname(__FILE__), 'rumai', 'lib') require 'rumai' include Rumai
