Win32/MinGW tweaks
A. ENV_IS_CASELESS has trys to free(keysave) when
keysave isn't in scope yet.
B. For default makefile.mk which build with perlhost.h
stuff "live" need to link with g++ to find new/delete etc.
p4raw-link: @21862 on //depot/maint-5.8/perl:
4db40f21e8071917ddf2daa52294e1413442660d
p4raw-id: //depot/perl@21870
p4raw-integrated: from //depot/maint-5.8/perl@21869 'merge in'
win32/makefile.mk (@21777..) hv.c (@21838..)
keysv = sv_2mortal(newSVpvn(key,klen));
key = strupr(SvPVX(keysv));
+#if 0
+ /* keysave not in scope - don't understand - NI-S */
if (k_flags & HVhek_FREEKEY) {
Safefree(keysave);
}
+#endif
is_utf8 = 0;
k_flags = 0;
.ELIF "$(CCTYPE)" == "GCC"
CC = gcc
-LINK32 = gcc
+LINK32 = g++
.IF "$(USE_GCC_V3_2)" == "define"
LINK32 = g++
.END