[#1207] warning in ruby extension eats memory — Eugene Scripnik <Eugene.Scripnik@...>

This message was posted to ruby-talk, but I didn't get responce from

22 messages 2003/07/01
[#1208] Re: warning in ruby extension eats memory — ts <decoux@...> 2003/07/01

>>>>> "E" == Eugene Scripnik <Eugene.Scripnik@itgrp.net> writes:

[#1209] Re: warning in ruby extension eats memory — Eugene Scripnik <Eugene.Scripnik@...> 2003/07/02

ts wrote:

[#1210] Re: warning in ruby extension eats memory — ts <decoux@...> 2003/07/02

>>>>> "E" == Eugene Scripnik <Eugene.Scripnik@itgrp.net> writes:

[#1211] Re: warning in ruby extension eats memory — Eugene Scripnik <Eugene.Scripnik@...> 2003/07/04

ts wrote:

[#1212] Re: warning in ruby extension eats memory — ts <decoux@...> 2003/07/04

>>>>> "E" == Eugene Scripnik <Eugene.Scripnik@itgrp.net> writes:

[#1213] Re: warning in ruby extension eats memory — Eugene Scripnik <Eugene.Scripnik@...> 2003/07/04

ts wrote:

[#1214] Re: warning in ruby extension eats memory — ts <decoux@...> 2003/07/04

>>>>> "E" == Eugene Scripnik <Eugene.Scripnik@itgrp.net> writes:

[#1215] Re: warning in ruby extension eats memory — Eugene Scripnik <Eugene.Scripnik@...> 2003/07/04

ts wrote:

[#1237] FTP.new with block — Gavin Sinclair <gsinclair@...>

Hi,

22 messages 2003/07/19
[#1238] Re: [Patch] FTP.new with block — ts <decoux@...> 2003/07/19

>>>>> "G" == Gavin Sinclair <gsinclair@soyabean.com.au> writes:

[#1240] Re: [Patch] FTP.new with block — Mathieu Bouchard <matju@...> 2003/07/19

[#1297] Fix for Bug 1058 — Markus Walser <walser@...>

Hi,

16 messages 2003/07/25

Re: [RFC] Add have_defined() and rework have_struct_member()

From: matz@... (Yukihiro Matsumoto)
Date: 2003-07-21 17:47:54 UTC
List: ruby-core #1264
Hi,

In message "Re: [RFC] Add have_defined() and rework have_struct_member()"
    on 03/07/21, Michal Rokos <m.rokos@sh.cvut.cz> writes:

|> There is macro_defined? function.
|
|Hmm, you're right.
|
|Unfortunately macro_defined? doesn't set and $defs. So you will do
|
|def have_defined(macro, header=nil)
|  checking_for "#{macro}" do
|    if macro_defined?(macro, cpp_include(header))
|      $defs.push(format("-DHAVE_%s", macro.upcase))
|      true
|    else
|      false
|    end
|  end
|end
|
|everytime... I still think that have_defined() worth to be in mkmf.rb...

I'm sure someone will be confused between macro_defined? and
have_defined in the future if we provide both.  They are too similar.

							matz.

In This Thread