1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* ext/readline/extconf.rb: Remove Readline 6 check because

Ruby's license is now GPLv3 compatible. [ruby-core:28736]

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@29264 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
naruse 2010-09-15 15:40:15 +00:00
parent 1c96fb4371
commit 2fe39b8864
2 changed files with 5 additions and 5 deletions

View file

@ -1,3 +1,8 @@
Thu Sep 16 00:36:25 2010 NARUSE, Yui <naruse@ruby-lang.org>
* ext/readline/extconf.rb: Remove Readline 6 check because
Ruby's license is now GPLv3 compatible. [ruby-core:28736]
Thu Sep 16 00:26:00 2010 NARUSE, Yui <naruse@ruby-lang.org>
* COPYING: change Ruby's License from a dual license with GPLv2

View file

@ -24,11 +24,6 @@ dir_config('ncurses')
dir_config('termcap')
dir_config("readline")
enable_libedit = enable_config("libedit")
$readline_extra_check = (proc {|src| src << <<EOS} unless enable_config("readline-v6"))
#if RL_VERSION_MAJOR >= 6
#error GPLv2 incompatible
#endif
EOS
have_library("user32", nil) if /cygwin/ === RUBY_PLATFORM
have_library("ncurses", "tgetnum") ||