From b3cd23adee1a04ee9c706c7d97744cf5a747808f Mon Sep 17 00:00:00 2001 From: Guillaume Cottenceau Date: Mon, 20 Oct 2008 12:54:30 +0200 Subject: [PATCH] 0.17.0 leaks a lot, avoid it --- bin/booh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/bin/booh b/bin/booh index ef84d47..2948f9b 100755 --- a/bin/booh +++ b/bin/booh @@ -4588,6 +4588,10 @@ if binding_version == [ 0, 15, 0 ] puts "It seems that we're running ruby-gtk2 0.15.0; this version is known to crash; please upgrade or downgrade." exit end +if binding_version == [ 0, 17, 0 ] + puts "It seems that we're running ruby-gtk2 0.17.0; this version is known to has a serious memory leak; please upgrade or downgrade." + exit +end ruby_version = RUBY_VERSION.split('.').collect { |v| v.to_i } if binding_version[0] <= 0 && binding_version[1] <= 16 && ruby_version[0] >= 1 && ruby_version[1] >= 8 && ruby_version[2] >= 7 puts "It seems that we're running ruby-gtk2 <= 0.16.0 with ruby >= 1.8.7; this combination is known to crash; please upgrade or downgrade some." -- 2.30.4