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

* ext/extmk.rb (extmake): return true if not dynamic and not static.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@3085 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
eban 2002-11-25 11:00:03 +00:00
parent 7ceb37d715
commit ee8addc13f
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
Mon Nov 25 19:55:38 2002 WATANABE Hirofumi <eban@ruby-lang.org>
* ext/extmk.rb (extmake): return true if not dynamic and not static.
Mon Nov 25 01:08:40 2002 WATANABE Hirofumi <eban@ruby-lang.org>
* dln.c: revert and add the MAXPATHLEN definition on mswin32/mingw32.

View file

@ -36,7 +36,7 @@ def extmake(target)
end
unless $ignore
return if $nodynamic and not $static
return true if $nodynamic and not $static
end
init_mkmf