From: Andreas Färber <andreas.faer...@web.de>

Use _NSGetEnviron() helper to access the environment.

Signed-off-by: Andreas Färber <andreas.faer...@web.de>
Cc: Charlie Somerville <char...@charliesomerville.com>
Signed-off-by: Michael Roth <mdr...@linux.vnet.ibm.com>
---
 qga/commands-posix.c |    5 +++++
 1 files changed, 5 insertions(+), 0 deletions(-)

diff --git a/qga/commands-posix.c b/qga/commands-posix.c
index dab3bf9..4a71c27 100644
--- a/qga/commands-posix.c
+++ b/qga/commands-posix.c
@@ -22,8 +22,13 @@
 #include "host-utils.h"
 
 #ifndef CONFIG_HAS_ENVIRON
+#ifdef __APPLE__
+#include <crt_externs.h>
+#define environ (*_NSGetEnviron())
+#else
 extern char **environ;
 #endif
+#endif
 
 #if defined(__linux__)
 #include <mntent.h>
-- 
1.7.4.1


Reply via email to