summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 43fcd10b24..1ca0936c5f 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 d56b217533..77c8008cfb 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 f407266ab4..6da6cd017f 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