We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 84415c1 commit 28cafd9Copy full SHA for 28cafd9
src/parsers.cpp
@@ -45,7 +45,10 @@
45
// See: http://article.gmane.org/gmane.comp.lib.boost.devel/103843
46
// See: http://lists.gnu.org/archive/html/bug-guile/2004-01/msg00013.html
47
#if defined(__APPLE__) && defined(__DYNAMIC__)
48
-#include <crt_externs.h>
+// The proper include for this is crt_externs.h, however it's not
49
+// available on iOS. The right replacement is not known. See
50
+// https://svn.boost.org/trac/boost/ticket/5053
51
+extern "C" { extern char ***_NSGetEnviron(void); }
52
#define environ (*_NSGetEnviron())
53
#else
54
#if defined(__MWERKS__)
0 commit comments