Skip to content

Commit 318c833

Browse files
committed
* lib/mkmf.rb (create_makefile): make OBJS depend on RUBY_EXTCONF_H
only if extconf.h is created. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8_5@13032 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
1 parent 81a183a commit 318c833

File tree

3 files changed

+7
-1
lines changed

3 files changed

+7
-1
lines changed

ChangeLog

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
Thu Aug 16 07:32:13 2007 Nobuyoshi Nakada <nobu@ruby-lang.org>
2+
3+
* lib/mkmf.rb (create_makefile): make OBJS depend on RUBY_EXTCONF_H
4+
only if extconf.h is created.
5+
16
Thu Aug 16 07:29:33 2007 Nobuyoshi Nakada <nobu@ruby-lang.org>
27

38
* {win32,wince,bcc32}/setup.mak (-version-): no RUBY_EXTERN magic.

lib/mkmf.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1377,6 +1377,7 @@ def create_makefile(target, srcprefix = nil)
13771377
unless suffixes.empty?
13781378
mfile.print ".SUFFIXES: .", suffixes.uniq.join(" ."), "\n\n"
13791379
end
1380+
mfile.print "$(OBJS): $(RUBY_EXTCONF_H)\n\n" if $extconf_h
13801381
mfile.print depout
13811382
else
13821383
headers = %w[ruby.h defines.h]

version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#define RUBY_RELEASE_DATE "2007-08-16"
33
#define RUBY_VERSION_CODE 185
44
#define RUBY_RELEASE_CODE 20070816
5-
#define RUBY_PATCHLEVEL 84
5+
#define RUBY_PATCHLEVEL 85
66

77
#define RUBY_VERSION_MAJOR 1
88
#define RUBY_VERSION_MINOR 8

0 commit comments

Comments
 (0)