Thread: Compile eror
View Single Post
  #5  
Old 06-22-2013, 22:27
dirkmill dirkmill is offline
Friend
 
Join Date: Jul 2004
Posts: 23
Rept. Given: 0
Rept. Rcvd 0 Times in 0 Posts
Thanks Given: 0
Thanks Rcvd at 1 Time in 1 Post
dirkmill Reputation: 0
too late to edit my previous post

I just checked 11.9.1 i86_n3 out and initially got the same error message.
you basically have two options:
1. create a (potentially empty) resource file for your vendor daemon
2. edit the makefile to skip compiling and linking of the resource file for the vendor daemon

for option two just use the following as replacement of the daemon-section of your makefile:
Code:
daemon:	$(DAEMON)

$(DAEMON): $(XTRAOBJS) $(DAEMONLIBS) lsvendor.obj $(SRCDIR)\lsserver.h $(LMNEW_OBJ)
#	   $(RC) -r -fo $(VENDORNAME).res $(VENDORNAME).rc
           $(LD) /subsystem:console /out:$(DAEMON) lsvendor.obj $(LMNEW_OBJ) \
#          	$(XTRAOBJS) $(DAEMONLIBS) $(CRT_LIB) $(XTRALIB1) $(DONGLELIB) $(ACTSTUB) $(VENDORNAME).res
           	$(XTRAOBJS) $(DAEMONLIBS) $(CRT_LIB) $(XTRALIB1) $(DONGLELIB) $(ACTSTUB) 
			$(EMBED_MANIFEST)
cheers,

dirkmill :B
Reply With Quote