ruby-changes:51800
From: kazu <ko1@a...>
Date: Sun, 22 Jul 2018 19:03:01 +0900 (JST)
Subject: [ruby-changes:51800] kazu:r64013 (trunk): Remove needless `nacl` check
kazu 2018-07-22 19:02:54 +0900 (Sun, 22 Jul 2018) New Revision: 64013 https://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=64013 Log: Remove needless `nacl` check `nacl` support already removed by https://github.com/ruby/ruby/pull/1726. [Fix GH-1920] From: yuuji.yaginuma <yuuji.yaginuma@g...> Modified files: trunk/ext/pty/extconf.rb Index: ext/pty/extconf.rb =================================================================== --- ext/pty/extconf.rb (revision 64012) +++ ext/pty/extconf.rb (revision 64013) @@ -3,7 +3,7 @@ require 'mkmf' https://github.com/ruby/ruby/blob/trunk/ext/pty/extconf.rb#L3 $INCFLAGS << " -I$(topdir) -I$(top_srcdir)" -if /mswin|mingw|bccwin|nacl/ !~ RUBY_PLATFORM +if /mswin|mingw|bccwin/ !~ RUBY_PLATFORM have_header("sys/stropts.h") have_func("setresuid") have_header("libutil.h") -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/