From: George Ryot Newsgroups: comp.os.msdos.djgpp Subject: Re: problem with makefile for SVAsync Message-ID: References: X-Newsreader: Forte Agent 1.7/32.534 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Lines: 42 Date: Sun, 23 Jan 2000 14:08:08 GMT NNTP-Posting-Host: 195.8.91.178 X-Complaints-To: abuse AT clara DOT net X-Trace: nnrp4.clara.net 948636488 195.8.91.178 (Sun, 23 Jan 2000 14:08:08 GMT) NNTP-Posting-Date: Sun, 23 Jan 2000 14:08:08 GMT To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Reply-To: djgpp AT delorie DOT com "Svensson, Pierre O F" wrote: > I fail to install the library svasync, using its makefile. > When i call the "make" command, from the directory where i installed > svasync. > > c:\djgpp\contrib\svasync>c:\djgpp\bin\make You shouldn't need to call make with an absolute path. If you need this then there is something wrong with your installation of DJGPP. > i get > > gcc -03 -wall -g -c svasync.c That should be -Wall. If that is just a typo please cut and paste the exact commands and error mesages to save people guessing. > make.exe: *** [svasync.o] Error -1 > > I would be grateful if someone could help me with this problem, because i'm > new with this I answered your previous post with step by step instructions for installing svasync. If you need more help with that let us know, but it sounds more likely the problem is with your DJGPP installation. Possibly PATH is not set correctly. From the c:\djgpp\contrib\svasync directory can you run the following commands and cut and paste the results in full: set make -v gcc -v dir make gcc -O3 -Wall -g -c svasync.c If you do that I am sure someone will be able to help. -- george