ruby-changes:8157
From: yugui <ko1@a...>
Date: Sun, 5 Oct 2008 11:40:23 +0900 (JST)
Subject: [ruby-changes:8157] Ruby:r19685 (trunk): removed unsupported platforms from an ifdef macro.
yugui 2008-10-05 11:39:29 +0900 (Sun, 05 Oct 2008) New Revision: 19685 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=19685 Log: removed unsupported platforms from an ifdef macro. These lines were mistakenly removed at r19681 and recovered too much at r19684. Modified files: trunk/eval.c Index: eval.c =================================================================== --- eval.c (revision 19684) +++ eval.c (revision 19685) @@ -31,7 +31,7 @@ #if defined(__APPLE__) #define environ (*_NSGetEnviron()) -#elif !defined(_WIN32) && !defined(__MACOS__) || defined(_WIN32_WCE) +#elif !defined(_WIN32) extern char **environ; #endif char **rb_origenviron; -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/