blob: b52f242481f8eef9ed699d39842d71bbdae5a036 [file] [log] [blame]
Patrick Williams2194f502022-10-16 14:26:09 -05001From 2bc09bc7d933bc3d91c687e1cc2befdaa38d2c86 Mon Sep 17 00:00:00 2001
Brad Bishop15ae2502019-06-18 21:44:24 -04002From: Natanael Copa <ncopa@alpinelinux.org>
3Date: Wed, 18 Nov 2015 10:41:01 +0000
4Subject: [PATCH] Use configure test for sys/stat.h include
5
6This is needed for musl libc.
7
8Signed-off-by: Natanael Copa <ncopa@alpinelinux.org>
9---
10 open-vm-tools/services/plugins/vix/vixTools.c | 2 +-
11 1 file changed, 1 insertion(+), 1 deletion(-)
12
13diff --git a/open-vm-tools/services/plugins/vix/vixTools.c b/open-vm-tools/services/plugins/vix/vixTools.c
Patrick Williams2194f502022-10-16 14:26:09 -050014index 34f3125d2..cebf4dd8d 100644
Brad Bishop15ae2502019-06-18 21:44:24 -040015--- a/open-vm-tools/services/plugins/vix/vixTools.c
16+++ b/open-vm-tools/services/plugins/vix/vixTools.c
17@@ -66,7 +66,7 @@
18 #include <unistd.h>
19 #endif
20
21-#if defined(sun) || defined(__FreeBSD__) || defined(__APPLE__)
22+#ifdef HAVE_SYS_STAT_H
23 #include <sys/stat.h>
24 #endif
25
Patrick Williams2194f502022-10-16 14:26:09 -050026--
272.25.1
28