Hi,

With build 1006, I'm getting the following:

#################################
C:\_32>perl -V:cc
Set up gcc environment - 3.4.5 (mingw-vista special r3)
cc='C:/_32/ap1005/site/bin/gcc.exe';

C:\_32>perl -V:ld
Set up gcc environment - 3.4.5 (mingw-vista special r3)
ld='C:\_32\ap1005\site\bin\g++.exe';

C:\_32>perl -V:make
make='C:\_32\ap1005\site\bin\dmake.exe';

C:\_32>
#################################

Is it acceptable to have those Config values specify the full path and 
extension ?

This prevents Inline::C from building as C:/_32/ap1005/site/bin/gcc.exe.exe 
(which, of course, doesn't exist) can't be found by the C/Makefile.PL. And 
I'm sure I've written the odd Makefile.PL or two where I've done something 
like:

if($Config{make} eq 'dmake') {
  # do something
}

That will now have to be rewritten as:

if($Config{make} =~ /dmake/) {
  # do something
}

Cheers,
Rob


_______________________________________________
Perl-Win32-Users mailing list
Perl-Win32-Users@listserv.ActiveState.com
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs

Reply via email to