summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@engin.umich.edu>1997-04-02 01:08:09 -0500
committerChip Salzenberg <chip@atlantic.net>1997-04-01 12:01:35 +1200
commit8d0ff1118aaee510902477e928a660803304346c (patch)
treedb7cc39a9d6594aae966ca1e9ec54875f5ba7804
parent212ac238b7c76fe74b999bd66633ce1bda0b362f (diff)
downloadperl-8d0ff1118aaee510902477e928a660803304346c.tar.gz
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
-rw-r--r--win32/perl.mak15
1 files changed, 0 insertions, 15 deletions
diff --git a/win32/perl.mak b/win32/perl.mak
index 6cc231d4d7..55c2689397 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
################################################################################