* lib/mkmf.rb (create_makefile): Borland make seems not to allow

empty dependency list. If this change is not good, please correct
  it.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9426 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
ocean 2005-10-20 00:42:43 +00:00
parent efbe6c1d7d
commit 7f60c0289c
2 changed files with 15 additions and 9 deletions

View File

@ -1,3 +1,9 @@
Thu Oct 20 09:36:06 2005 Hirokazu Yamamoto <ocean@m2.ccsnet.ne.jp>
* lib/mkmf.rb (create_makefile): Borland make seems not to allow
empty dependency list. If this change is not good, please correct
it.
Thu Oct 20 07:55:09 2005 Nobuyoshi Nakada <nobu@ruby-lang.org> Thu Oct 20 07:55:09 2005 Nobuyoshi Nakada <nobu@ruby-lang.org>
* lib/mkmf.rb (create_makefile): get rid of a restriction * lib/mkmf.rb (create_makefile): get rid of a restriction
@ -523,7 +529,7 @@ Tue Sep 20 17:26:42 2005 Hirokazu Yamamoto <ocean@m2.ccsnet.ne.jp>
Tue Sep 20 17:14:10 2005 Hirokazu Yamamoto <ocean@m2.ccsnet.ne.jp> Tue Sep 20 17:14:10 2005 Hirokazu Yamamoto <ocean@m2.ccsnet.ne.jp>
* io.c: PIPE_BUF is not defined in BeOS. use _POSIX_PIPE_BUF instead. * io.c: PIPE_BUF is not defined on BeOS. use _POSIX_PIPE_BUF instead.
[ruby-dev:27185] [ruby-dev:27185]
Tue Sep 20 17:10:38 2005 Yukihiro Matsumoto <matz@ruby-lang.org> Tue Sep 20 17:10:38 2005 Yukihiro Matsumoto <matz@ruby-lang.org>
@ -1011,7 +1017,7 @@ Tue Sep 13 14:27:47 2005 Hirokazu Yamamoto <ocean@m2.ccsnet.ne.jp>
because of crypt argument's constness mismatch. (I hope this works) because of crypt argument's constness mismatch. (I hope this works)
(http://mput.dip.jp/autobuild/ruby-trunk/log/20050913T110001.gz) (http://mput.dip.jp/autobuild/ruby-trunk/log/20050913T110001.gz)
Tue Sep 13 12:33:05 2005 <why@ruby-lang.org> Tue Sep 13 12:33:05 2005 why the lucky stiff <why@ruby-lang.org>
* lib/yaml.rb: reworking YAML::Stream to use the new * lib/yaml.rb: reworking YAML::Stream to use the new
emitter. emitter.
@ -1025,12 +1031,12 @@ Tue Sep 13 12:33:05 2005 <why@ruby-lang.org>
continue support of Object#to_yaml_type. continue support of Object#to_yaml_type.
* ext/syck/rubyext.c: new emitter code. yaml_new and yaml_initialize * ext/syck/rubyext.c: new emitter code. yaml_new and yaml_initialize
get called, should they be present. consolidated all the diaspora of internal get called, should they be present. consolidated all the diaspora of internal node types into the family below YAML::Syck::Node -- Map,
node types into the family below YAML::Syck::Node -- Map,
Seq, Scalar -- all of whom are SyckNode structs pointing to Seq, Scalar -- all of whom are SyckNode structs pointing to
Ruby data. moved Object#yaml_new into the node_import and made it the Ruby data. moved Object#yaml_new into the node_import and made it
default behavior. the target_class is always called wih yaml_new, prepended the default behavior. the target_class is always called wih
a parameter, which is the klass. loaded nodes through GenericResolver show their style. yaml_new, prepended a parameter, which is the klass. loaded nodes
through GenericResolver show their style.
new Resolver#tagurize converts type ids to taguris. new Resolver#tagurize converts type ids to taguris.
* ext/syck/implicit.re: were 'y' and 'n' seriously omitted?? * ext/syck/implicit.re: were 'y' and 'n' seriously omitted??

View File

@ -1110,8 +1110,8 @@ static: $(STATIC_LIB)#{$extout ? " install-rb" : ""}
end end
mfile.print("install-rb: pre-install-rb install-rb-default\n") mfile.print("install-rb: pre-install-rb install-rb-default\n")
mfile.print("install-rb-default: pre-install-rb-default\n") mfile.print("install-rb-default: pre-install-rb-default\n")
mfile.print("pre-install-rb:\n") mfile.print("pre-install-rb: Makefile\n")
mfile.print("pre-install-rb-default:\n") mfile.print("pre-install-rb-default: Makefile\n")
for sfx, i in [["-default", [["lib/**/*.rb", "$(RUBYLIBDIR)", "lib"]]], ["", $INSTALLFILES]] for sfx, i in [["-default", [["lib/**/*.rb", "$(RUBYLIBDIR)", "lib"]]], ["", $INSTALLFILES]]
files = install_files(mfile, i, nil, srcprefix) or next files = install_files(mfile, i, nil, srcprefix) or next
for dir, *files in files for dir, *files in files