mirror of
https://github.com/X11Libre/xf86-video-intel.git
synced 2026-03-24 01:24:12 +00:00
tools: fix FTBS on FreeBSD
ETIME seems to be missing, so just alias it to ETIMEDOUT It's just used by internal functions of the tools. Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
This commit is contained in:
@@ -69,6 +69,11 @@
|
||||
#include <fcntl.h>
|
||||
#include <assert.h>
|
||||
|
||||
// for FreeBSD
|
||||
#ifndef ETIME
|
||||
#define ETIME ETIMEDOUT
|
||||
#endif
|
||||
|
||||
#define FORCE_FULL_REDRAW 0
|
||||
#define FORCE_16BIT_XFER 0
|
||||
|
||||
|
||||
Reference in New Issue
Block a user