compile rmagick on win32

N

newbie

Want to compile the rmagick-1.9.3 on win32 to get the latest version
intstead of the pre-compiled gem :).

after run,
ruby extconf.rb --with-rmagic-dir=path to the ImageMagick dir
I could get the makefile, but when compile, the following eror come
out,

RMagick-1.9.3\ext\RMagick\rmagick.h(114) : error C2371: 'boolean' :
redefinition; different basic type

Have looked through the documentation, seems like no info on how to
compile on win32?
Any help? Thanks!
 
D

Daniel Berger

newbie said:
Want to compile the rmagick-1.9.3 on win32 to get the latest version
intstead of the pre-compiled gem :).

after run,
ruby extconf.rb --with-rmagic-dir=path to the ImageMagick dir
I could get the makefile, but when compile, the following eror come
out,

RMagick-1.9.3\ext\RMagick\rmagick.h(114) : error C2371: 'boolean' :
redefinition; different basic type

Have looked through the documentation, seems like no info on how to
compile on win32?
Any help? Thanks!

The windows.h file already defines a "boolean" type, so that would
explain the error. Try adding this to the extconf.rb file:

have_type("boolean")

Then, within rmagick.h, surround line 114 with "ifndef HAVE_TYPE" and
"endif".

I don't know if that's the only issue, but it should solve that one at
least.

- Dan
 
D

Daniel Berger

Daniel said:
The windows.h file already defines a "boolean" type, so that would
explain the error. Try adding this to the extconf.rb file:

have_type("boolean")

Then, within rmagick.h, surround line 114 with "ifndef HAVE_TYPE" and
"endif".

I don't know if that's the only issue, but it should solve that one at
least.

- Dan

Oh, it looks like there is no extconf.rb file. Just comment out lines
109-114 and see how it goes.

- Dan
 

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

Similar Threads


Members online

Forum statistics

Threads
473,774
Messages
2,569,596
Members
45,141
Latest member
BlissKeto
Top