diff options
author | Ian Stakenvicius <axs@gentoo.org> | 2012-07-04 18:45:08 +0000 |
---|---|---|
committer | Ian Stakenvicius <axs@gentoo.org> | 2012-07-04 18:45:08 +0000 |
commit | c70e0a88126ff0ed8032de62e9bacfd3f3a66a4c (patch) | |
tree | 8d1816038a6fbefb63a6cf6f7e560b59fe0ceffd /www-client/elinks/files | |
parent | fix DEPENDS properly and add app-arch/unzip (diff) | |
download | gentoo-2-c70e0a88126ff0ed8032de62e9bacfd3f3a66a4c.tar.gz gentoo-2-c70e0a88126ff0ed8032de62e9bacfd3f3a66a4c.tar.bz2 gentoo-2-c70e0a88126ff0ed8032de62e9bacfd3f3a66a4c.zip |
fixed configure check for ruby-1.9 and above, bug 424789
(Portage version: 2.1.10.65/cvs/Linux x86_64)
Diffstat (limited to 'www-client/elinks/files')
-rw-r--r-- | www-client/elinks/files/elinks-0.12_pre5-ruby-config.patch | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/www-client/elinks/files/elinks-0.12_pre5-ruby-config.patch b/www-client/elinks/files/elinks-0.12_pre5-ruby-config.patch new file mode 100644 index 000000000000..83117e8ed450 --- /dev/null +++ b/www-client/elinks/files/elinks-0.12_pre5-ruby-config.patch @@ -0,0 +1,11 @@ +--- a/config/m4/ruby.m4 2009-07-07 08:23:17.000000000 -0400 ++++ b/config/m4/ruby.m4 2012-07-04 14:37:13.000000000 -0400 +@@ -32,7 +32,7 @@ + if test "$CONFIG_SCRIPTING_RUBY" != "no"; then + + AC_MSG_CHECKING(Ruby version) +- if $CONFIG_SCRIPTING_RUBY -e 'exit((VERSION or RUBY_VERSION) >= "1.6.0")' >/dev/null 2>/dev/null; then ++ if $CONFIG_SCRIPTING_RUBY -e 'exit((RUBY_VERSION or VERSION) >= "1.6.0")' >/dev/null 2>/dev/null; then + ruby_version=`$CONFIG_SCRIPTING_RUBY -e 'puts "#{VERSION rescue RUBY_VERSION}"'` + AC_MSG_RESULT($ruby_version) + |