diff options
| author | yugui <yugui@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-12-17 06:17:34 +0000 |
|---|---|---|
| committer | yugui <yugui@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-12-17 06:17:34 +0000 |
| commit | eaaf82792b9532ae3728f31bd570be3e8b627472 (patch) | |
| tree | a5fdbe35a4748bbff89919abb56eba312985c411 | |
| parent | 7dbb64a2ea3df9fd4a4208ade016104042b69487 (diff) | |
merges r20773 from trunk into ruby_1_9_1.
* configure.in (ac_cv_header_ucontext_h): do not use ucontext.h on Mac
OS X 10.5 or later. merged from MacPorts.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_1@20825 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 5 | ||||
| -rw-r--r-- | configure.in | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,8 @@ +Tue Dec 16 12:26:49 2008 Nobuyoshi Nakada <nobu@ruby-lang.org> + + * configure.in (ac_cv_header_ucontext_h): do not use ucontext.h on Mac + OS X 10.5 or later. merged from MacPorts. + Tue Dec 16 11:37:07 2008 NAKAMURA Usaku <usa@ruby-lang.org> * ruby.c (set_arg0): use strlcpy() instead of strncpy(). diff --git a/configure.in b/configure.in index b85e9dd7ff..68b1d6cc29 100644 --- a/configure.in +++ b/configure.in @@ -528,7 +528,7 @@ darwin*) LIBS="-lobjc $LIBS" #endif ], [ - test "x$target_cpu" = xpowerpc && ac_cv_header_ucontext_h=no + ac_cv_header_ucontext_h=no ], [ AC_DEFINE(BROKEN_SETREUID, 1) |
