mirror of
https://gitlab.freedesktop.org/cairo/cairo.git
synced 2026-04-23 00:30:47 +02:00
Simple fix for build failure on DEC/OSF1.
Apparently this platform also requires inttypes.h rather than
stdint.h.
This should fix the bug reported here:
https://bugzilla.mozilla.org/show_bug.cgi?id=331428
This commit is contained in:
parent
08b109fb9a
commit
baa3436e9d
1 changed files with 1 additions and 1 deletions
|
|
@ -81,7 +81,7 @@ SOFTWARE.
|
|||
|
||||
#if defined (__SVR4) && defined (__sun)
|
||||
# include <sys/int_types.h>
|
||||
#elif defined (__OpenBSD__) || defined (_AIX)
|
||||
#elif defined (__OpenBSD__) || defined (_AIX) || defined (__osf__)
|
||||
# include <inttypes.h>
|
||||
#elif defined (_MSC_VER)
|
||||
typedef __int8 int8_t;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue