in reply to Re: (OT) installing cairo library
in thread (OT) installing cairo library

Hi Rob,
No, I didn't get any warnings that .h file not found.
But I got this error:
cairo-xlib-surface-private.h:91: error: syntax error before "XTransform"
cairo-xlib-surface-private.h:91: warning: no semicolon at end of struct or union
cairo-xlib-surface.c:83: error: syntax error before "identity"
cairo-xlib-surface.c:83: warning: type defaults to `int' in declaration of `identity'
cairo-xlib-surface.c:83: warning: braces around scalar initializer
cairo-xlib-surface.c:83: warning: (near initialization for `identity')
cairo-xlib-surface.c:84: warning: braces around scalar initializer
And so on for almost every line in cairo-xlib-surface.c .
Thanks, Krishi

Replies are listed 'Best First'.
Re^3: (OT) installing cairo library
by syphilis (Archbishop) on Dec 13, 2007 at 11:27 UTC
    No, I didn't get any warnings that .h file not found.

    Well, that's odd. Line 91 simply contains:
    XTransform xtransform;
    which is certainly not a syntax error if a header file that defines the XTransform type was found. And Google doesn't return anything for "cairo-xlib-surface-private.h:91".

    I think Joost is right :-)

    Cheers,
    Rob