From 97975b51118d554f7049c175dfc8e67e1700fbfb Mon Sep 17 00:00:00 2001 From: usa Date: Sun, 6 Feb 2005 17:03:35 +0000 Subject: * instruby.rb, rubytest.rb (srcdir): no longer embed srcdir into rbconfig.rb. (backported from CVS HEAD) * ext/socket/extconf.rb (sockaddr_storage): winsock2.h have the definition of struct sockaddr_storage, but socket.c doesn't include it because this version of ruby still has binary level compatibility with winsock1. * lib/mkmf.rb (create_makefile): should support header files in depend file. git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@7907 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- lib/mkmf.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/mkmf.rb b/lib/mkmf.rb index 936774280..f15d0ead3 100644 --- a/lib/mkmf.rb +++ b/lib/mkmf.rb @@ -996,7 +996,7 @@ static: $(STATIC_LIB) while line = dfile.gets() line.gsub!(/\.o\b/, ".#{$OBJEXT}") if $nmake - line.gsub!(%r"(\s)([^\s\/]+\.(?:#{SRC_EXT.join('|')}))(?=\s|\z)", '\1{.;$(VPATH)}\2') + line.gsub!(%r"(\s)([^\s\/]+\.(?:#{(SRC_EXT + ['h']).join('|')}))(?=\s|\z)", '\1{.;$(VPATH)}\2') end line.gsub!(/\$\(hdrdir\)\/config.h/, $config_h) if $config_h mfile.print line -- cgit