From 9b7ea0f23defbe8bfb0297b8598ff8edfb58154d Mon Sep 17 00:00:00 2001 From: nobu Date: Fri, 6 Sep 2002 11:23:14 +0000 Subject: * lib/mkmf.rb ($CC): command to compile C source. * lib/mkmf.rb (try_compile): added. * lib/mkmf.rb (egrep_cpp): use internal grep when pattern is Regexp, otherwise use external egrep command but get rid of pipe of command.com. * lib/mkmf.rb (have_func): local variable should be volatile not to be eliminated by optimization. * lib/mkmf.rb (create_makefile): link with CONFIG["LIBS"]. * lib/mkmf.rb (create_makefile): emit .SUFFIXES:. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@2811 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) (limited to 'ChangeLog') diff --git a/ChangeLog b/ChangeLog index f4e56ab3b..ecf088e2b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,22 @@ +Fri Sep 6 20:01:38 2002 Nobuyoshi Nakada + + * lib/mkmf.rb ($CC): command to compile C source. + + * lib/mkmf.rb (logging): added. + + * lib/mkmf.rb (try_compile): added. + + * lib/mkmf.rb (egrep_cpp): use internal grep when pattern is + Regexp, otherwise use external egrep command but get rid of + pipe of command.com. + + * lib/mkmf.rb (have_func): local variable should be volatile not + to be eliminated by optimization. + + * lib/mkmf.rb (create_makefile): link with CONFIG["LIBS"]. + + * lib/mkmf.rb (create_makefile): emit .SUFFIXES:. + Fri Sep 6 12:11:22 2002 Minero Aoki * parse.y (rb_gc_mark_parser): should mark ALL global variables -- cgit