mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* lib/mkmf.rb (egrep_cpp): use inspect to show options.
* lib/mkmf.rb (dir_config): prior configured directories to defaults. * lib/mkmf.rb (dir_config): extract first word to determin make command type. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@3361 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
9e1339a68f
commit
971d5f8480
2 changed files with 18 additions and 5 deletions
10
ChangeLog
10
ChangeLog
|
@ -1,3 +1,13 @@
|
|||
Mon Jan 20 04:14:17 2003 Nobuyoshi Nakada <nobu.nokada@softhome.net>
|
||||
|
||||
* lib/mkmf.rb (egrep_cpp): use inspect to show options.
|
||||
|
||||
* lib/mkmf.rb (dir_config): prior configured directories to
|
||||
defaults.
|
||||
|
||||
* lib/mkmf.rb (dir_config): extract first word to determin
|
||||
make command type.
|
||||
|
||||
Mon Jan 20 02:15:53 2003 Nobuyoshi Nakada <nobu.nokada@softhome.net>
|
||||
|
||||
* ext/aix_mksym.rb: no longer used.
|
||||
|
|
13
lib/mkmf.rb
13
lib/mkmf.rb
|
@ -279,7 +279,7 @@ def egrep_cpp(pat, src, opt="")
|
|||
create_tmpsrc(src)
|
||||
xpopen(cpp_command('', opt)) do |f|
|
||||
if Regexp === pat
|
||||
puts(" ruby -ne 'print if /#{pat.source}/'")
|
||||
puts(" ruby -ne 'print if #{pat.inspect}'")
|
||||
f.grep(pat) {|l|
|
||||
puts "#{f.lineno}: #{l}"
|
||||
return true
|
||||
|
@ -513,11 +513,13 @@ def dir_config(target, idefault=nil, ldefault=nil)
|
|||
|
||||
if idir
|
||||
idircflag = "-I" + idir
|
||||
$CPPFLAGS += " " + idircflag unless $CPPFLAGS.split.include?(idircflag)
|
||||
unless Shellwords.shellwords($CPPFLAGS).include?(idircflag)
|
||||
$CPPFLAGS = idircflag + " " + $CPPFLAGS
|
||||
end
|
||||
end
|
||||
|
||||
if ldir
|
||||
$LIBPATH << ldir unless $LIBPATH.include?(ldir)
|
||||
$LIBPATH.unshift(ldir) unless $LIBPATH.include?(ldir)
|
||||
end
|
||||
|
||||
[idir, ldir]
|
||||
|
@ -814,12 +816,13 @@ init_mkmf
|
|||
dir_config("opt")
|
||||
|
||||
$make = with_config("make-prog", ENV["MAKE"] || "make")
|
||||
make, = Shellwords.shellwords($make)
|
||||
$nmake = nil
|
||||
case
|
||||
when $mswin
|
||||
$nmake = ?m if /nmake/i =~ $make
|
||||
$nmake = ?m if /nmake/i =~ make
|
||||
when $bccwin
|
||||
$nmake = ?b if /Borland/i =~ `#$make -h`
|
||||
$nmake = ?b if /Borland/i =~ `#{make} -h`
|
||||
end
|
||||
|
||||
Config::CONFIG["srcdir"] = CONFIG["srcdir"] =
|
||||
|
|
Loading…
Reference in a new issue