[OSX] Fixed undefined symbol when linking CMakeLib into shared library

This commit is contained in:
Konstantin Tokarev 2012-03-01 20:57:34 +04:00
parent ac2979e4b3
commit a90d47890f
1 changed files with 3 additions and 0 deletions

View File

@ -104,6 +104,9 @@ public:
private:
HANDLE handle_;
};
#elif defined(__APPLE__)
#include <crt_externs.h>
#define environ (*_NSGetEnviron())
#endif
bool cmSystemTools::s_RunCommandHideConsole = false;