Enclosed herein please find a patch to the 62 win32/Makefile that I found necessary in order to run `nmake test` on NT 4.0 SP 4, where I obtained: Failed Test Status Wstat Total Fail Failed List of failed ------------------------------------------------------------------------------- lib/posix.t 26 1 3.85% 2 22 tests and 75 subtests skipped. Failed 1/229 test scripts, 99.56% okay. 1/10374 subtests failed, 99.99% okay. NMAKE : fatal error U1077: '..\perl.exe' : return code '0xff' Stop. I found no pstruct entry in the MANIFEST hence I also made equivalent changes to win32/makefile.mk although I do not have dmake on my test machine. Perhaps it was the pumpking's intent to introduce utils/pstruct to the kit and to the MANIFEST in which case this patch ought to serve only to alert folks of the discrepancy. Apologies too if this issue has already been addressed. diff -ru perl5.005_62.orig/win32/Makefile perl5.005_62/win32/Makefile --- perl5.005_62.orig/win32/Makefile Fri Oct 15 02:56:18 1999 +++ perl5.005_62/win32/Makefile Wed Nov 17 14:48:17 1999 @@ -378,7 +378,6 @@ ..\utils\c2ph \ ..\utils\h2xs \ ..\utils\perldoc \ - ..\utils\pstruct \ ..\utils\perlcc \ ..\pod\checkpods \ ..\pod\pod2html \ @@ -952,7 +951,7 @@ -del /f $(PODDIR)\*.html -del /f $(PODDIR)\*.bat cd ..\utils - -del /f h2ph splain perlbug pl2pm c2ph h2xs perldoc pstruct dprofpp + -del /f h2ph splain perlbug pl2pm c2ph h2xs perldoc dprofpp -del /f *.bat cd ..\win32 cd ..\x2p diff -ru perl5.005_62.orig/win32/makefile.mk perl5.005_62/win32/makefile.mk --- perl5.005_62.orig/win32/makefile.mk Fri Oct 15 02:56:18 1999 +++ perl5.005_62/win32/makefile.mk Wed Nov 17 14:49:32 1999 @@ -476,7 +476,6 @@ ..\utils\c2ph \ ..\utils\h2xs \ ..\utils\perldoc \ - ..\utils\pstruct \ ..\utils\perlcc \ ..\pod\checkpods \ ..\pod\pod2html \ @@ -1117,7 +1116,7 @@ -del /f $(PODDIR)\*.html -del /f $(PODDIR)\*.bat -cd ..\utils && del /f h2ph splain perlbug pl2pm c2ph h2xs perldoc \ - dprofpp pstruct *.bat + dprofpp *.bat -cd ..\x2p && del /f find2perl s2p *.bat -del /f ..\config.sh ..\splittree.pl perlmain.c dlutils.c config.h.new -del /f $(CONFIGPM) End of Patch. Peter Prymmer