[#25636] [Oniguruma 3.X] reggnu.c — "K.Kosako" <sndgk393@...>

さっき気がついたのですが、元々は

15 messages 2005/02/05

[#25655] openssl binding for SSL_CTX_set_default_verify_paths and X509_STORE_set_default_paths — Tanaka Akira <akr@...17n.org>

open-uri で https を扱うことを考えていろいろと調べていた所、openssl で、

9 messages 2005/02/08
[#25670] Re: openssl binding for SSL_CTX_set_default_verify_paths and X509_STORE_set_default_paths — GOTOU Yuuzou <gotoyuzo@...> 2005/02/10

In message <876513vce0.fsf@serein.a02.aist.go.jp>,

[#25713] pthread trouble on sighandler — Hidetoshi NAGAI <nagai@...>

永井@知能.九工大です.

17 messages 2005/02/18
[#25714] Re: pthread trouble on sighandler — Yukihiro Matsumoto <matz@...> 2005/02/18

まつもと ゆきひろです

[#25755] I/O operation differs signal handler — Minero Aoki <aamine@...>

青木です。

14 messages 2005/02/24
[#25756] Re: I/O operation differs signal handler — Tanaka Akira <akr@...17n.org> 2005/02/24

In article <20050224091450P.aamine@loveruby.net>,

[ruby-dev:25657] Re: process to merge ruby-dl2

From: "H.Yamamoto" <ocean@...2.ccsnet.ne.jp>
Date: 2005-02-08 06:37:27 UTC
List: ruby-dev #25657
山本です。

動作確認はしてませんが、bcc32も同じコードでコンパイルできるようです。

Index: cfunc.c
===================================================================
RCS file: /src/ruby/ext/dl/cfunc.c,v
retrieving revision 1.2
diff -u -w -b -p -r1.2 cfunc.c
--- cfunc.c	6 Feb 2005 18:07:10 -0000	1.2
+++ cfunc.c	7 Feb 2005 03:58:13 -0000
@@ -225,7 +225,7 @@ rb_dlcfunc_inspect(VALUE self)
 #if defined(__GNUC__)
 # define DECL_FUNC(f,ret,args,calltype)  ret (__attribute__((calltype)) *f)(args)
 /* # define DECL_FUNC(f,ret,args,calltype)  ret (*f)(args) */
-#elif defined(_MSC_VER)
+#elif defined(_MSC_VER) || defined(__BORLANDC__)
 # define DECL_FUNC(f,ret,args,calltype)  ret (__##calltype *f)(args)
 #else
 # error "unsupported compiler."
Index: dl.c
===================================================================
RCS file: /src/ruby/ext/dl/dl.c,v
retrieving revision 1.27
diff -u -w -b -p -r1.27 dl.c
--- dl.c	6 Feb 2005 18:07:10 -0000	1.27
+++ dl.c	7 Feb 2005 03:58:57 -0000
@@ -62,7 +62,7 @@ rb_dl_value2ptr(VALUE self, VALUE val)
 # define MIDST_DECL_STDCALL
 # define POST_DECL_CDECL
 # define POST_DECL_STDCALL
-#elif defined(_MSC_VER)
+#elif defined(_MSC_VER) || defined(__BORLANDC__)
 # define PRE_DECL_CDECL
 # define PRE_DECL_STDCALL
 # define MIDST_DECL_CDECL     __cdecl

In This Thread