Hi,

I've found that CatalystX::ExtJS (and other modules) is not installed on 
Windows with Microsoft compiler because installation of Devel::Size fails.

The simple fix in Size.xs (line 775)

        case SVt_PVAV:
          {
            dbg_printf(("# Found type AV\n")); 
            /* Quick alias to cut down on casting */
            AV *tempAV = (AV *)thing;
            SV **tempSV;

to 

        case SVt_PVAV:
          {
            /* Quick alias to cut down on casting */
            AV *tempAV = (AV *)thing;
            SV **tempSV;

            dbg_printf(("# Found type AV\n")); 

leads to that installation achieves success

Best regards,
Serguei Ignatov



_______________________________________________
List: [email protected]
Listinfo: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst
Searchable archive: http://www.mail-archive.com/[email protected]/
Dev site: http://dev.catalyst.perl.org/

Reply via email to