[Image-SIG] libImaging on solaris 2.7

Fredrik Lundh fredrik@pythonware.com
Wed, 14 Mar 2001 23:09:09 +0100


Alexandre Gillet wrote:
> I did what you told me to do but I still can't get it to compile.
> the problem seems to come from "inline" as you can see in the
> output.configure and config.log.

your compiler obviously doesn't support the non-standard "inline"
directive -- but the configure stuff is supposed to deal with that.
strange.

to fix this, you can edit the ImConfig.h file by hand.  look for the
inline define/undef and change it to:

    /* Define as __inline if that's what the C compiler calls it.  */
    #define inline

(and let me know what it looked like before you changed it)

Cheers /F