mirror of
https://git.freebsd.org/ports.git
synced 2025-06-30 17:10:33 -04:00
14 lines
291 B
C
14 lines
291 B
C
- Define ETIME if missing
|
|
|
|
--- src/intel/vulkan/anv_gem.c.orig 2017-10-23 13:21:18 UTC
|
|
+++ src/intel/vulkan/anv_gem.c
|
|
@@ -26,6 +26,9 @@
|
|
#include <sys/mman.h>
|
|
#include <string.h>
|
|
#include <errno.h>
|
|
+#ifndef ETIME
|
|
+#define ETIME ETIMEDOUT
|
|
+#endif
|
|
#include <unistd.h>
|
|
#include <fcntl.h>
|
|
|