diff options
author | Bram Moolenaar <Bram@vim.org> | 2010-02-17 16:23:09 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2010-02-17 16:23:09 +0100 |
commit | 165641da2534f00507fffb58a8826d5f3410049e (patch) | |
tree | ee4f0e8dcbf16528679c899d72f86e3cf1817a38 /src/Makefile | |
parent | 0b69c73411bfe259d7b9ee87d11554545bedbfd5 (diff) | |
download | vim-git-165641da2534f00507fffb58a8826d5f3410049e.tar.gz |
updated for version 7.2.361v7.2.361
Problem: Ruby 1.9 is not supported.
Solution: Add Ruby 1.9 support. (Msaki Suketa)
Diffstat (limited to 'src/Makefile')
-rw-r--r-- | src/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/Makefile b/src/Makefile index 02b8d6cb8..7bc2820d6 100644 --- a/src/Makefile +++ b/src/Makefile @@ -395,7 +395,9 @@ CClink = $(CC) # RUBY # Uncomment this when you want to include the Ruby interface. -#CONF_OPT_RUBY = --enable-rubyinterp +# Note: you need the development package (e.g., ruby1.9.1-dev on Ubuntu). +# CONF_OPT_RUBY = --enable-rubyinterp +# CONF_OPT_RUBY = --enable-rubyinterp --with-ruby-command=ruby1.9.1 # MZSCHEME # Uncomment this when you want to include the MzScheme interface. |