Subject: | gcc compiler check for windows is broken |
in build/Wx/build/MakeMaker.pm there is this line:
m/^gcc/i and $package_to_use = 'Win32_MinGW' and last SWITCH;
however, $_ becomes "C:/MinGW/bin/gcc.exe" on my system (Vista 32bit &
ActivePerl 5.10.1). ActivePerl automatically detects the gcc on path
and alters $Config{cc} on the fly. I've bypassed that line manually to
install Wx and it seems to work. So my suggestion to fix it will be:
( m/^gcc/i || m/gcc\.exe$/i ) and $package_to_use = 'Win32_MinGW' and
last SWITCH;
HTH,
Burak