summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkazu <kazu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-11-10 16:16:33 +0000
committerkazu <kazu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-11-10 16:16:33 +0000
commitcab10efdabf902ff3f816b240076b98b60b4e9f6 (patch)
tree395ff2d9f9a5982e7cd21b2b9748bb1b8e74919a
parent544b3c18bdb673aa45e3be161bbae1514d2f21ea (diff)
* configure.in: fix SEGV on Mac OS X 10.5.3 with --enable-shared.
a patch from Wataru Kimura in Bug #193 [ruby-core:17333]. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8_7@20172 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog5
-rw-r--r--configure.in2
-rw-r--r--version.h2
3 files changed, 7 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index c0090b1016..f04097074b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Tue Nov 11 01:07:32 2008 Kazuhiro NISHIYAMA <zn@mbf.nifty.com>
+
+ * configure.in: fix SEGV on Mac OS X 10.5.3 with --enable-shared.
+ a patch from Wataru Kimura in Bug #193 [ruby-core:17333].
+
Mon Aug 11 09:37:17 2008 Yukihiro Matsumoto <matz@ruby-lang.org>
* ext/dl/dl.c (rb_str_to_ptr): should propagate taint to dlptr.
diff --git a/configure.in b/configure.in
index fe63c0cdfe..05b0639581 100644
--- a/configure.in
+++ b/configure.in
@@ -391,7 +391,7 @@ darwin*) LIBS="-lobjc $LIBS"
#endif
],
[
- test "x$target_cpu" = xppc && ac_cv_header_ucontext_h=no
+ test "x$target_cpu" = xpowerpc && ac_cv_header_ucontext_h=no
],
[
AC_DEFINE(BROKEN_SETREUID, 1)
diff --git a/version.h b/version.h
index 70fc28af5a..15b3f402a8 100644
--- a/version.h
+++ b/version.h
@@ -2,7 +2,7 @@
#define RUBY_RELEASE_DATE "2008-08-11"
#define RUBY_VERSION_CODE 187
#define RUBY_RELEASE_CODE 20080811
-#define RUBY_PATCHLEVEL 72
+#define RUBY_PATCHLEVEL 73
#define RUBY_VERSION_MAJOR 1
#define RUBY_VERSION_MINOR 8