[#4346] Segmentation fault — Andrew Walrond <andrew@...>
FYI, just got this random unexpected crash
On 01 Feb 2005, at 07:33, Andrew Walrond wrote:
[#4360] Adding lastlog info to etc — "Berger, Daniel" <Daniel.Berger@...>
Hi all,
[#4368] 'when (cond):' causes SyntaxError — "NAKAMURA, Hiroshi" <nakahiro@...>
Hi,
[#4385] add color_set support to curses.c — Paul Duncan <pabs@...>
I'm not sure why this is missing from the Curses binding, but the
[#4392] HTTP Basic authentication for open_uri — Kent Sibilev <ksibilev@...>
Can somebody apply the following patch for open_uri in order to enable
[#4402] BUG: Struct.new(:a?).instance_methods — "Cs. Henk" <csaba-ml@...>
Hi, getting an ArgumentError with "NULL pointer given" doesn't seem to
[#4403] Re: Unknown OS X 10.2 Socket constants (+script to generate) — Sam Roberts <sroberts@...>
Quoteing matz@ruby-lang.org, on Tue, Feb 08, 2005 at 01:21:18PM +0900:
[#4427] Re: windows socket connection freeze — ville.mattila@...
[#4432] curses + threads = non-blocking getch — William Morgan <wmorgan-ruby-core@...>
Hello experts,
In article <20050214231544.GE26414@masanjin.net>,
[#4439] Thread-safe Ruby Status? — Vincent Isambart <vincent.isambart@...>
Hello,
[#4448] add persistent history to irb — "David A. Black" <dblack@...>
Hi --
[#4453] bug in IRB with $_ matching a range of regexps — Ryan Davis <ryand-ruby@...>
> % ruby -v
[#4468] Re: Strange argc check in stable snapshot — "Berger, Daniel" <Daniel.Berger@...>
> -----Original Message-----
[#4475] Re: Strange argc check in stable snapshot — "Berger, Daniel" <Daniel.Berger@...>
> -----Original Message-----
[#4479] Requesting addition to IRB (configurable standard output) — Sascha Ebach <se@...>
Hello,
Quoting se@digitale-wertschoepfung.de, on Fri, Feb 25, 2005 at 01:22:34AM +0900:
On 24 Feb 2005, at 19:51, Sam Roberts wrote:
Quoting drbrain@segment7.net, on Sat, Feb 26, 2005 at 02:43:31AM +0900:
On 25 Feb 2005, at 16:03, Sam Roberts wrote:
Quoting drbrain@segment7.net, on Sat, Feb 26, 2005 at 10:24:52AM +0900:
On 25 Feb 2005, at 18:55, Sam Roberts wrote:
Quoting drbrain@segment7.net, on Sat, Feb 26, 2005 at 03:49:49PM +0900:
Re: [ ruby-Patches-1486 ] have_enum_member for mkmf.rb
Hi,
At Sat, 12 Feb 2005 01:50:47 +0900,
noreply@rubyforge.org wrote in [ruby-core:04422]:
> Certain headers, such as signal.h, use enum values instead of
> preprocessor constants. However, these values are not
> necessarily supported across platforms. For example, the
> idtype_t enum in signal.h on Solaris 9 has a P_PROJID member
> that is only defined on Solaris 8 or later.
>
> To allow programmers to check for the presence of certain enum members, I propose a "have_enum_member" method as follows:
It doesn't check enum membership -- rather, it's impossible
unless parsing header files.
have_enum_member('int', 'NULL', 'stdio.h') => yes
Note that enum members are just const int in C, and actually it
doesn't matter if it is a macro or an enum. So I think
have_const is good enough. And you already can use have_type
to check if a type is defined.
Index: lib/mkmf.rb
===================================================================
RCS file: /cvs/ruby/src/ruby/lib/mkmf.rb,v
retrieving revision 1.162.2.22
diff -U2 -p -r1.162.2.22 mkmf.rb
--- lib/mkmf.rb 6 Feb 2005 17:03:35 -0000 1.162.2.22
+++ lib/mkmf.rb 11 Feb 2005 23:15:50 -0000
@@ -615,4 +615,21 @@ SRC
end
+def have_const(const, header = nil, opt = "", &b)
+ checking_for type do
+ header = cpp_include(header)
+ if try_compile(<<"SRC", opt, &b)
+#{COMMON_HEADERS}
+#{header}
+/*top*/
+static int t = #{const};
+SRC
+ $defs.push(format("-DHAVE_CONST_%s", type.strip.upcase.tr_s("^A-Z0-9_", "_")))
+ true
+ else
+ false
+ end
+ end
+end
+
def check_sizeof(type, header = nil, &b)
expr = "sizeof(#{type})"
--
Nobu Nakada