mirror of
https://github.com/openwrt/packages.git
synced 2025-07-09 03:39:03 +00:00
for detailed change log, please refer to: https://github.com/vmware/open-vm-tools/blob/stable-12.5.0/open-vm-tools/ChangeLog Signed-off-by: Tan Zien <nabsdh9@gmail.com>
24 lines
635 B
Diff
24 lines
635 B
Diff
From 716d1d77bf8199e694c71edcb9e0144d74ba7977 Mon Sep 17 00:00:00 2001
|
|
From: Natanael Copa <ncopa@alpinelinux.org>
|
|
Date: Wed, 18 Nov 2015 10:41:01 +0000
|
|
Subject: [PATCH] Use configure test for sys/stat.h include
|
|
|
|
This is needed for musl libc.
|
|
|
|
Signed-off-by: Natanael Copa <ncopa@alpinelinux.org>
|
|
---
|
|
services/plugins/vix/vixTools.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
--- a/services/plugins/vix/vixTools.c
|
|
+++ b/services/plugins/vix/vixTools.c
|
|
@@ -67,7 +67,7 @@
|
|
#include <unistd.h>
|
|
#endif
|
|
|
|
-#if defined(sun) || defined(__FreeBSD__) || defined(__APPLE__)
|
|
+#ifdef HAVE_SYS_STAT_H
|
|
#include <sys/stat.h>
|
|
#endif
|
|
|