aboutsummaryrefslogtreecommitdiffstats
path: root/meta-tpm/recipes-tpm2/tpm2-tss/tpm2-tss/fix_musl_select_include.patch
blob: ecaca6ea57a7f8c69652b7f39a18dcb13b827de6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
This fixes musl build issue do to missing FD_* defines.
Add sys/select.h

Upstream-Status: Pending

Signed-off-by: Armin Kuster <akuster@mvista.com>

Index: TPM2.0-TSS/tcti/tcti_socket.cpp
===================================================================
--- TPM2.0-TSS.orig/tcti/tcti_socket.cpp
+++ TPM2.0-TSS/tcti/tcti_socket.cpp
@@ -28,6 +28,7 @@
 #include <stdio.h>
 #include <stdlib.h>   // Needed for _wtoi
 
+#include "sys/select.h"
 #include <sapi/tpm20.h>
 #include <tcti/tcti_socket.h>
 #include "sysapi_util.h"
Index: TPM2.0-TSS/resourcemgr/resourcemgr.c
===================================================================
--- TPM2.0-TSS.orig/resourcemgr/resourcemgr.c
+++ TPM2.0-TSS/resourcemgr/resourcemgr.c
@@ -28,6 +28,7 @@
 #include <stdio.h>
 #include <stdlib.h>   // Needed for _wtoi
 
+#include "sys/select.h"
 #include <sapi/tpm20.h>
 #include <tcti/tcti_device.h>
 #include <tcti/tcti_socket.h>