intel-virtual-output: Disable build if timerfd is not present
Otherwise the build breaks on *BSD. Reported-by: Yuta SATOH <nigoro.gentoo@0x100.com> Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=72707 Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
This commit is contained in:
parent
c8e339edd3
commit
989198f3dd
|
|
@ -184,6 +184,7 @@ PKG_CHECK_MODULES(TOOL, [xinerama xrandr xdamage xfixes xcursor xtst xrender xex
|
|||
if test "x$tools" = "xyes"; then
|
||||
AC_CHECK_HEADER([sys/ipc.h], [], [tools=no])
|
||||
AC_CHECK_HEADER([sys/shm.h], [], [tools=no])
|
||||
AC_CHECK_HEADER([sys/timerfd.h], [], [tools=no])
|
||||
|
||||
if test "$ac_cv_header_sys_ipc_h" = "yes" -a "$ac_cv_header_sys_shm_h" = "yes"; then
|
||||
AC_MSG_CHECKING(whether shmctl IPC_RMID allows subsequent attaches)
|
||||
|
|
|
|||
Loading…
Reference in New Issue