Merge branch 'solaris' into 'master'

Fix cairo-perf-print & pdf-structure test builds on Solaris

See merge request cairo/cairo!599
This commit is contained in:
Emmanuele Bassi 2024-10-13 22:19:15 +00:00
commit 5111be12d4
3 changed files with 7 additions and 0 deletions

View file

@ -138,6 +138,7 @@ check_headers = [
['sys/ioctl.h'],
['intsafe.h'],
['alloca.h'],
['termios.h'],
]
check_types = [

View file

@ -43,6 +43,9 @@
#if USE_TERMINAL_SIZE
#include <unistd.h>
#include <sys/ioctl.h>
#if HAVE_TERMIOS_H
#include <termios.h>
#endif
#endif
static void

View file

@ -33,6 +33,9 @@
#ifdef HAVE_UNISTD_H
#include <unistd.h> /* __unix__ */
#endif
#if HAVE_SYS_WAIT_H
#include <sys/wait.h>
#endif
#include <cairo.h>
#include <cairo-pdf.h>