From: Gurusamy Sarathy Date: Wed, 2 Apr 1997 06:08:09 +0000 (-0500) Subject: Win32 update X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=8d0ff1118aaee510902477e928a660803304346c;p=p5sagit%2Fp5-mst-13.2.git Win32 update The win32 make fails because it cannot find "camel.ico". Even if I add a camel.ico stolen from elsewhere, the build fails due to lack of "resource.h" referenced in "perl.rc" (when using VC++ 2.0). The following patch simply disables binding the icon resource into perl.exe. (One can always associate a bare *.ico file to any executable, so it's not like it *has* to be bound into perl.exe when building it.) p5p-msgid: 199704020608.BAA29538@aatma.engin.umich.edu --- diff --git a/win32/perl.mak b/win32/perl.mak index 6cc231d..55c2689 100644 --- a/win32/perl.mak +++ b/win32/perl.mak @@ -84,7 +84,6 @@ LINK32_FLAGS=kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib\ LINK32_OBJS= \ "$(INTDIR)/perlmain.obj" \ "$(INTDIR)/win32io.obj" \ - "$(INTDIR)/perl.res" \ "..\perl.lib" "$(OUTDIR)\_perl.exe" : "$(OUTDIR)" $(DEF_FILE) $(LINK32_OBJS) @@ -144,7 +143,6 @@ LINK32_FLAGS=kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib\ LINK32_OBJS= \ "$(INTDIR)/perlmain.obj" \ "$(INTDIR)/win32io.obj" \ - "$(INTDIR)/perl.res" \ "..\perl.lib" "$(OUTDIR)\_perl.exe" : "$(OUTDIR)" $(DEF_FILE) $(LINK32_OBJS) @@ -235,19 +233,6 @@ DEP_CPP_WIN32=\ # End Source File -################################################################################ -# Begin Source File - -SOURCE=.\perl.rc -DEP_RSC_PERL_=\ - ".\camel.ico"\ - - -"$(INTDIR)\perl.res" : $(SOURCE) $(DEP_RSC_PERL_) "$(INTDIR)" - $(RSC) $(RSC_PROJ) $(SOURCE) - - -# End Source File # End Target # End Project ################################################################################