There is now a call to set the core and another to set the other
flags. I updated the code and the doc to reflect that.
--
stef
Thanks, applied.
leo
Unless things have changed far more than I thought, this is very,
very, very, very, very wrong. parrot.h is an internals-only
header--including it exposes all of Parrot's guts to the embedder.
Note this comment at the top of parrot.h:
# /* Only parrot core files should include this file.
# Extensions should include <parrot/extend.h>.
# Programs embedding parrot should include <parrot/embed.h>.
# */
And the define a few lines down:
# #define PARROT_IN_CORE
--
Brent 'Dax' Royal-Gordon <br...@brentdax.com>
Perl and Parrot hacker
There is no cabal.
Definitely. It's:
*) parrot.h for internal code
*) extend.h for code writing extensions to parrot in C
*) embed.h for code embedding a parrot interpreter
Neither extend.h nor embed.h should include parrot.h.
--
Dan
--------------------------------------it's like this-------------------
Dan Sugalski even samurai
d...@sidhe.org have teddy bears and even
teddy bears get drunk
--
stef
Thanks, applied.
leo