diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2013-10-30 03:44:30 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2013-10-30 03:44:30 +0000 |
commit | bfea5bc277aa89cbd31f8a0c431f5cf19ce62c36 (patch) | |
tree | 22c2b21782472b0512ff45bb036e6f40952b5127 | |
parent | caa3c880400e48ff22099f3c003e6ba5290f9b61 (diff) |
Makefile.sub: add missing config variables
* win32/Makefile.sub (config.status): add missing variables,
PLATFORM_DIR and THREAD_MODEL.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@43474 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | win32/Makefile.sub | 2 |
2 files changed, 7 insertions, 0 deletions
@@ -1,3 +1,8 @@ +Wed Oct 30 12:44:28 2013 Nobuyoshi Nakada <[email protected]> + + * win32/Makefile.sub (config.status): add missing variables, + PLATFORM_DIR and THREAD_MODEL. + Wed Oct 30 12:20:32 2013 Tanaka Akira <[email protected]> * time.c (v2w): Normalize a rational value to an integer if possible. diff --git a/win32/Makefile.sub b/win32/Makefile.sub index 33285a8fa6..cd41a3a5df 100644 --- a/win32/Makefile.sub +++ b/win32/Makefile.sub @@ -895,6 +895,8 @@ s,@vendorhdrdir@,$$(rubyhdrdir)/vendor_ruby,;t t s,@rubyarchhdrdir@,$$(rubyhdrdir)/$${arch},;t t s,@sitearchhdrdir@,$$(sitehdrdir)/$${sitearch},;t t s,@vendorarchhdrdir@,$$(vendorhdrdir)/$${sitearch},;t t +s,@PLATFORM_DIR@,$(PLATFORM_DIR),;t t +s,@THREAD_MODEL@,$(THREAD_MODEL),;t t s,@configure_args@,--with-make-prog=nmake --enable-shared $(configure_args),;t t s,@configure_input@,$$configure_input,;t t s,@srcdir@,$(srcdir),;t t |