summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoruema2 <uema2@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-06-21 04:55:59 +0000
committeruema2 <uema2@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-06-21 04:55:59 +0000
commit4c4fd40d7fbdbb6aff5754d93f39980ff6ff409c (patch)
tree41fc0576fae672f12b610ed35c459778eac3a786
parent93a6590a3b5a05e3382fd8d1ed837359dc75672d (diff)
downloadruby-4c4fd40d7fbdbb6aff5754d93f39980ff6ff409c.tar.gz
ruby-4c4fd40d7fbdbb6aff5754d93f39980ff6ff409c.tar.xz
ruby-4c4fd40d7fbdbb6aff5754d93f39980ff6ff409c.zip
* wince/Makefile.sub: undefine HAVE__SETJMP.
* wince/resource.rb: include winver.h in wince3.0. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@3970 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog6
-rw-r--r--wince/Makefile.sub1
-rw-r--r--wince/resource.rb2
3 files changed, 7 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 43fcd10b2..1ca0936c5 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+Sat Jun 21 13:56:09 2003 Takaaki Uematsu <uema2x@jcom.home.ne.jp>
+
+ * wince/Makefile.sub: undefine HAVE__SETJMP.
+
+ * wince/resource.rb: include winver.h in wince3.0.
+
Fri Jun 20 23:28:27 2003 Yukihiro Matsumoto <matz@ruby-lang.org>
* eval.c (proc_invoke): should not propagate TAG_BREAK and
diff --git a/wince/Makefile.sub b/wince/Makefile.sub
index d56b21753..77c8008cf 100644
--- a/wince/Makefile.sub
+++ b/wince/Makefile.sub
@@ -262,7 +262,6 @@ config.h:
#define HAVE_WAITPID 1
#define HAVE_CHSIZE 0
#define HAVE_TIMES 1
-#define HAVE__SETJMP 1
#define HAVE_TELLDIR 1
#define HAVE_SEEKDIR 1
#define HAVE_MKTIME 1
diff --git a/wince/resource.rb b/wince/resource.rb
index f407266ab..6da6cd017 100644
--- a/wince/resource.rb
+++ b/wince/resource.rb
@@ -55,7 +55,7 @@ end
f.binmode if /mingw/ =~ RUBY_PLATFORM
f.print("#include <windows.h>\n")
- f.print("#include <winver.h>\n") if $wce_ver=="2.11"
+ f.print("#include <winver.h>\n") if $wce_ver=="2.11" or $wce_ver=="3.00"
f.print <<EOF