mkmf & checking for a struct

G

Guillaume Marcais

In an extconf.rb, f I check for the existence of a struct type with:

have_type('struct toto', ['blah.h'])

it will define the constant HAVE_TYPE_STRUCT TOTO (notice the space).
That seems broken to me.

Shouldn't the line, in have_type:

$defs.push(format("-DHAVE_TYPE_%s", type.upcase))

be replaced by:

$defs.push(format("-DHAVE_TYPE_%s", type.upcase.join("_")))

?

Guillaume.
 
G

Guillaume Marcais

be replaced by:

$defs.push(format("-DHAVE_TYPE_%s", type.upcase.join("_")))

Sorry to reply to myself. I actually meant:

$defs.push(format("-DHAVE_TYPE_%s", type.upcase.split.join("_")))

Guillaume.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,744
Messages
2,569,484
Members
44,903
Latest member
orderPeak8CBDGummies

Latest Threads

Top