----- Original Message ----- From: "Sisyphus" <[EMAIL PROTECTED]>
.
.

The 'dmake_attempt.txt' error should be the easiest to fix.
Looking at your ActiveState/Config.pm, you should be getting the following:

C:\>perl -V:obj_ext
Set up gcc environment - 3.4.2 (mingw32 special)
obj_ext='.o';

But since the Inline build process is looking for (non-existent) '.obj' files, I'm thinking that perhaps you're getting:

C:\>perl -V:obj_ext
obj_ext='.o';

which is incorrect. I'm not sure why that would be happening, but one simple hack would be to go into your perl/lib/Config_heavy.pl and change the 'obj_ext' entry in there from '.obj' to '.o'.

Unfortunately, that doesn't work. (I've just downloaded and installed build 820 to see what's gone wrong.)

Leave the entry in Config_heavy.pl as it is. But go into perl\lib\Config.pm and comment out the line:

obj_ext => '.obj',

You should then find that you get:

C:\>perl -V:obj_ext
Set up gcc environment - 3.4.5 (mingw32 special)
obj_ext='.o';

And Inline::C then builds fine for me on build 820.

Cheers,
Rob

Reply via email to