packages/libs/open-vm-tools/patches/0014-resolve-musl-does-not-implement-res_ninit.patch
hue715 085be7136b update to 11.0.5
from srchack/custom-packages.git
1、open-vm-tools: bump 11.0.5
2、open-vm-tools: Change PKG_LICENSE
2020-02-09 22:38:50 +08:00

47 lines
1.6 KiB
Diff

diff -urNp open-vm-tools-11.0.5-15389592.ORG/lib/nicInfo/nicInfoPosix.c open-vm-tools-11.0.5-15389592/lib/nicInfo/nicInfoPosix.c
--- open-vm-tools-11.0.5-15389592.ORG/lib/nicInfo/nicInfoPosix.c 2020-01-20 15:12:46.004034669 +0000
+++ open-vm-tools-11.0.5-15389592/lib/nicInfo/nicInfoPosix.c 2020-01-20 15:40:44.370425791 +0000
@@ -65,6 +65,9 @@
#include <netinet/in.h>
#include <arpa/nameser.h>
#include <resolv.h>
+#if defined(__linux__) && !defined(__GLIBC__)
+#include "resolv_compat.h"
+#endif
#ifdef __linux__
# include <net/if.h>
diff -urNp open-vm-tools-11.0.5-15389592.ORG/lib/nicInfo/resolv_compat.h open-vm-tools-11.0.5-15389592/lib/nicInfo/resolv_compat.h
--- open-vm-tools-11.0.5-15389592.ORG/lib/nicInfo/resolv_compat.h 1970-01-01 00:00:00.000000000 +0000
+++ open-vm-tools-11.0.5-15389592/lib/nicInfo/resolv_compat.h 2020-01-20 15:39:09.397871457 +0000
@@ -0,0 +1,29 @@
+#if !defined(__GLIBC__)
+/***************************************************************************
+ * resolv_compat.h
+ *
+ * Mimick GLIBC's res_ninit() and res_nclose() for musl libc
+ * Note: res_init() is actually deprecated according to
+ * http://docs.oracle.com/cd/E36784_01/html/E36875/res-nclose-3resolv.html
+ **************************************************************************/
+#include <string.h>
+
+static inline int res_ninit(res_state statp)
+{
+ int rc = res_init();
+ if (statp != &_res) {
+ memcpy(statp, &_res, sizeof(*statp));
+ }
+ return rc;
+}
+
+static inline int res_nclose(res_state statp)
+{
+ if (!statp)
+ return -1;
+ if (statp != &_res) {
+ memset(statp, 0, sizeof(*statp));
+ }
+ return 0;
+}
+#endif