Win32 update
Gurusamy Sarathy [Wed, 2 Apr 1997 06:08:09 +0000 (01:08 -0500)]
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

win32/perl.mak

index 6cc231d..55c2689 100644 (file)
@@ -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
 ################################################################################