From 2741a598ff9e561c71eb39a57bb19c0a3205eaef Mon Sep 17 00:00:00 2001 From: nobu Date: Wed, 20 Jun 2012 07:36:23 +0000 Subject: setproctitle.c: _NSGetEnviron * missing/setproctitle.c (environ): use (*_NSGetEnviron()) instead of environ on Darwin for namespace cleanness, same as [ruby-core:00537]. [ruby-core:45615] [Bug #6576] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@36151 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- missing/setproctitle.c | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'missing/setproctitle.c') diff --git a/missing/setproctitle.c b/missing/setproctitle.c index 169ba8bcd2..d35e70d534 100644 --- a/missing/setproctitle.c +++ b/missing/setproctitle.c @@ -48,6 +48,12 @@ #endif #include +#if defined(__APPLE__) +#include +#undef environ +#define environ (*_NSGetEnviron()) +#endif + #define SPT_NONE 0 /* don't use it at all */ #define SPT_PSTAT 1 /* use pstat(PSTAT_SETCMD, ...) */ #define SPT_REUSEARGV 2 /* cover argv with title information */ -- cgit v1.2.3