[#26156] ruby 1.8.3 preview1 — Yukihiro Matsumoto <matz@...>

Hi,

28 messages 2005/05/12

[#26186] ruby_setenv dumps core with mod_ruby/1.4.2 — Tietew <tietew-ml-ruby-dev@...>

Tietew です。

15 messages 2005/05/18
[#26285] Re: ruby_setenv dumps core with mod_ruby/1.4.2 — "H.Yamamoto" <ocean@...2.ccsnet.ne.jp> 2005/06/05

山本です。

[#26325] Re: ruby_setenv dumps core with mod_ruby/1.4.2 — Tietew <tietew-ml-ruby-dev@...> 2005/06/10

Tietew です。

[#26187] IO.select dumps core — Tanaka Akira <akr@...17n.org>

[ruby-talk:142505] で可能性に気がついたのですが、いま実験してみたとこ

31 messages 2005/05/18
[#26255] Re: IO.select dumps core — nobu@... 2005/05/31

なかだです。

[#26256] Re: IO.select dumps core — Tanaka Akira <akr@...17n.org> 2005/06/01

In article <200505311523.j4VFN4Y4005876@sharui.nakada.niregi.kanuma.tochigi.jp>,

[#26257] Re: IO.select dumps core — nobu@... 2005/06/01

なかだです。

[#26262] Re: IO.select dumps core — Tanaka Akira <akr@...17n.org> 2005/06/01

In article <200506010140.j511edY4012889@sharui.nakada.niregi.kanuma.tochigi.jp>,

[#26265] Re: IO.select dumps core — Takahiro Kambe <taca@...> 2005/06/02

In message <87u0khj377.fsf@m17n.org>

[#26365] Re: IO.select dumps core — とみたまさひろ <tommy@...> 2005/06/22

とみたです。

[#26366] Re: IO.select dumps core — nobu@... 2005/06/22

なかだです。

[#26369] Re: IO.select dumps core — とみたまさひろ <tommy@...> 2005/06/23

とみたです。

[#26242] many errors with soap/wsdl test on mswin32 — "U.Nakamura" <usa@...>

こんにちは、なかむら(う)です。

12 messages 2005/05/27
[#26249] Re: many errors with soap/wsdl test on mswin32 — "H.Yamamoto" <ocean@...2.ccsnet.ne.jp> 2005/05/31

山本です。

[ruby-dev:26168] Re: error.c 1.108

From: Masatoshi SEKI <m_seki@...>
Date: 2005-05-15 03:51:24 UTC
List: ruby-dev #26168
咳といいます。

On 2005/05/15, at 12:33, nobu@ruby-lang.org wrote:

> なかだです。
>
> At Sun, 15 May 2005 11:26:52 +0900,
> Masatoshi SEKI wrote in [ruby-dev:26165]:


>> 試そうと思ったらOSX 10.4でビルドできなくなってました…。
>> Tigerのせい? gid_tを知らないのかなあ。
>>
>> gcc -g -O2 -pipe -fno-common   -I. -I.  -c array.c
>> In file included from array.c:15:
>> ruby.h:88: error: parse error before "rb_gid_t"
>> ruby.h:88: warning: data definition has no type or storage class
>> make: *** [array.o] Error 1
>>
>
> [ruby-core:04745]からの、APRがgid_tをtypedef 
> してしまうので拡張
> ライブラリがコンパイルできない、という話でuid_t,gid_tに 
> rb_をつ
> けるようにしたんですが、Tigerだとstdlib.hや 
> stddef.hではgid_tが
> 定義されないんでしょうか。

unistd.hをincludeすればよいような雰囲気です。
ruby.hにてincludeしたらarray.cはコンパイルできました。

Index: ruby.h
===================================================================
RCS file: /var/cvs/src/ruby/ruby.h,v
retrieving revision 1.97.2.3
diff -u -r1.97.2.3 ruby.h
--- ruby.h      14 May 2005 14:57:48 -0000      1.97.2.3
+++ ruby.h      15 May 2005 03:50:35 -0000
@@ -37,6 +37,7 @@
#include <stddef.h>
#include <stdio.h>
+#include <unistd.h>
/* need to include <ctype.h> to use these macros */
#ifndef ISPRINT


マクロなどで囲まずに #include <unistd.h> したらまずいです 
よね、たぶん。



In This Thread