c5619c1d06
- New version requires adding a new service vgauthd - Removed old patches that are no longer needed - Fix (strerror_r.patch) for picking GNU signature of strerror_r - Fix (toolboxcmd.patch) for compiling toolboxcmd-shrink.c with gcc 5.0.1
15 lines
450 B
Diff
15 lines
450 B
Diff
--- open-vm-tools-9.10.0-2476743.orig/vgauth/common/VGAuthLog.c 2015-03-19 15:53:25.000000000 -0700
|
|
+++ open-vm-tools-9.10.0-2476743/vgauth/common/VGAuthLog.c 2015-04-21 01:24:32.370582529 -0700
|
|
@@ -25,6 +25,11 @@
|
|
#ifdef _WIN32
|
|
#include <windows.h>
|
|
#else
|
|
+/*
|
|
+ * Need GNU definition of strerror_r for better compatibility
|
|
+ * across different glibc versions.
|
|
+ */
|
|
+#define _GNU_SOURCE
|
|
#include <errno.h>
|
|
#include <unistd.h>
|
|
#include <string.h>
|