summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2002-06-11 04:16:58 +0000
committerusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2002-06-11 04:16:58 +0000
commit0abe11a7e4f70b01e0792d0be21bd43b171b3157 (patch)
tree3b702115c1e578bdd8ae6e9bcf5f5add53b27cf0
parentc4a087949113a99eef50ed314f8e1e0dc1f34b49 (diff)
downloadruby-0abe11a7e4f70b01e0792d0be21bd43b171b3157.tar.gz
ruby-0abe11a7e4f70b01e0792d0be21bd43b171b3157.tar.xz
ruby-0abe11a7e4f70b01e0792d0be21bd43b171b3157.zip
* bcc32/Makefile.sub: set PROCESSOR_LEVEL to 6 if it's too big value.
* win32/Makefile.sub: ditto. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@2545 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog6
-rw-r--r--bcc32/Makefile.sub3
-rw-r--r--win32/Makefile.sub3
3 files changed, 12 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 35f9837ce..5cdba1078 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+Tue Jun 11 13:15:41 2002 NAKAMURA Usaku <usa@ruby-lang.org>
+
+ * bcc32/Makefile.sub: set PROCESSOR_LEVEL to 6 if it's too big value.
+
+ * win32/Makefile.sub: ditto.
+
Tue Jun 11 12:37:46 2002 KONISHI Hiromasa <konishih@fd6.so-net.ne.jp>
* bcc32/configure.bat fix.
diff --git a/bcc32/Makefile.sub b/bcc32/Makefile.sub
index 9ef83105c..c5f7c16ef 100644
--- a/bcc32/Makefile.sub
+++ b/bcc32/Makefile.sub
@@ -50,6 +50,9 @@ AUTOCONF = autoconf
!ifndef PROCESSOR_LEVEL
PROCESSOR_LEVEL = 5
!endif
+!if 6 < $(PROCESSOR_LEVEL)
+PROCESSOR_LEVEL = 6
+!endif
PROCESSOR_FLAG = -$(PROCESSOR_LEVEL)
CPU = i$(PROCESSOR_LEVEL)86
ARCH = i$(PROCESSOR_LEVEL)86
diff --git a/win32/Makefile.sub b/win32/Makefile.sub
index c75c248ab..930fb0473 100644
--- a/win32/Makefile.sub
+++ b/win32/Makefile.sub
@@ -43,6 +43,9 @@ AUTOCONF = autoconf
!if !defined(PROCESSOR_LEVEL)
PROCESSOR_LEVEL = 5
!endif
+!if 6 < $(PROCESSOR_LEVEL)
+PROCESSOR_LEVEL = 6
+!endif
PROCESSOR_FLAG = -G$(PROCESSOR_LEVEL)
CPU = i$(PROCESSOR_LEVEL)86
ARCH = i386