Skip to content

Commit

Permalink
merge revision(s) 32289:
Browse files Browse the repository at this point in the history
	* ext/tk/extconf.rb (intptr_t, uintptr_t): support for the latest ActiveTcl with mingw.


git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8_7@32320 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
  • Loading branch information
shyouhei committed Jun 30, 2011
1 parent e692938 commit 225c319
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 4 deletions.
4 changes: 4 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
Thu Jun 30 12:52:56 2011 WATANABE Hirofumi <eban@ruby-lang.org>

* ext/tk/extconf.rb (intptr_t, uintptr_t): support for the latest ActiveTcl with mingw.

Sun Jun 26 17:52:32 2011 Nobuhiro Iwamatsu <iwamatsu@nigauri.org>

* ext/openssl/ossl_ssl.c: By trunk@31346, function check of SSLv2 is executed.
Expand Down
3 changes: 3 additions & 0 deletions ext/tk/extconf.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2017,6 +2017,9 @@ def pthread_check()
$INSTALLFILES ||= []
$INSTALLFILES << ["lib/tkextlib/SUPPORT_STATUS", "$(RUBYLIBDIR)", "lib"]

# remove harmful definitions.
$defs.delete_if{|x|/^-Du?intptr_t=/ =~ x}

# create
$defs << %[-DRUBY_VERSION=\\"#{RUBY_VERSION}\\"]
$defs << %[-DRUBY_RELEASE_DATE=\\"#{RUBY_RELEASE_DATE}\\"]
Expand Down
8 changes: 4 additions & 4 deletions version.h
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
#define RUBY_VERSION "1.8.7"
#define RUBY_RELEASE_DATE "2011-06-26"
#define RUBY_RELEASE_DATE "2011-06-30"
#define RUBY_VERSION_CODE 187
#define RUBY_RELEASE_CODE 20110626
#define RUBY_PATCHLEVEL 351
#define RUBY_RELEASE_CODE 20110630
#define RUBY_PATCHLEVEL 352

#define RUBY_VERSION_MAJOR 1
#define RUBY_VERSION_MINOR 8
#define RUBY_VERSION_TEENY 7
#define RUBY_RELEASE_YEAR 2011
#define RUBY_RELEASE_MONTH 6
#define RUBY_RELEASE_DAY 26
#define RUBY_RELEASE_DAY 30

#ifdef RUBY_EXTERN
RUBY_EXTERN const char ruby_version[];
Expand Down

0 comments on commit 225c319

Please sign in to comment.