[Catalyst] CatalystX-ExtJS is not installed on Windows with Microsoft compiler

Ignatov Serguei sergign60 at mail.ru
Wed Mar 9 04:19:55 GMT 2011


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





More information about the Catalyst mailing list