diff options
author | Bram Moolenaar <Bram@vim.org> | 2013-08-07 15:22:23 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2013-08-07 15:22:23 +0200 |
commit | 026a445c4034ce3f489d582c45e2cf49bd77322e (patch) | |
tree | 98bf5236cbfeac43bb0682c2b4c087f5ccacc584 /src/auto/configure | |
parent | 01c458e4383002519b542c95371153eb4b83789e (diff) | |
download | vim-026a445c4034ce3f489d582c45e2cf49bd77322e.zip |
updated for version 7.4b.016
Problem: Ruby detection fails on Fedora 19.
Solution: Use one way to get the Ruby version. (Michael Henry)
Diffstat (limited to 'src/auto/configure')
-rwxr-xr-x | src/auto/configure | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/auto/configure b/src/auto/configure index 62aeab9fd..a9755a0b6 100755 --- a/src/auto/configure +++ b/src/auto/configure @@ -6741,6 +6741,9 @@ $as_echo "$rubyhdrdir" >&6; } RUBY_CFLAGS="$RUBY_CFLAGS -I$rubyhdrdir/$rubyarch" fi rubyversion=`$vi_cv_path_ruby -r rbconfig -e "print $ruby_rbconfig::CONFIG['ruby_version'].gsub(/\./, '')[0,2]"` + if test "X$rubyversion" = "X"; then + rubyversion=`$vi_cv_path_ruby -e "print ((VERSION rescue RUBY_VERSION)).gsub(/\./, '')[0,2]"` + fi RUBY_CFLAGS="$RUBY_CFLAGS -DRUBY_VERSION=$rubyversion" rubylibs=`$vi_cv_path_ruby -r rbconfig -e "print $ruby_rbconfig::CONFIG['LIBS']"` if test "X$rubylibs" != "X"; then |