On Fri, Feb 20, 2009 at 12:41 PM, Dave Rolsky <auta...@urth.org> wrote: > Is anyone really depending on being able to use Class::MOP (and therefore) > Moose with an XS-less install?
I couldn't remember if my Windows install of Moose used an XS module or not; I tried this: OSO# perl -e "use Class::MOP; print Class::MOP::USING_XS . qq(\n);" Class::MOP::USING_XS Is that what it's supposed to return? Grepping the Class::MOP modules didn't return any code with 'USING_XS' in it, although I see the checks for Perl 5.10 and environment variable check for no XS in the MOP.pm module. I ended up remembering where XS files live on my Windows Perl distribution, and found the .dll file that was compiled for Class::MOP. So going to XS-only for Class::MOP should work on Windows if that needs to happen. Thanks, Brian