libva-vdpau-driver: fix build with aarch64-musl

This commit is contained in:
maxice8 2018-10-19 13:56:32 -03:00
parent dfadbe49d3
commit f6e294f131
No known key found for this signature in database
GPG Key ID: 543B9D4F4299F06B
1 changed files with 17 additions and 0 deletions

View File

@ -0,0 +1,17 @@
utils.c: In function 'delay_usec':
utils.c:108:20: error: storage size of 'tv' isn't known
struct timeval tv;
^~
diff --git a/src/utils.c b/src/utils.c
index 1dac15c..3e2fa6a 100644
--- src/utils.c
+++ src/utils.c
@@ -21,6 +21,7 @@
#include "sysdeps.h"
#include "utils.h"
#include <time.h>
+#include <sys/time.h>
#include <errno.h>
#define DEBUG 1