From: Damian Yerrick Newsgroups: comp.os.msdos.djgpp Subject: Re: Problem with RHIDE!!! Organization: Pin Eight Software http://pineight.8m.com/ Message-ID: References: <20010109002733 DOT 27261 DOT qmail AT web3005 DOT mail DOT yahoo DOT com> X-Newsreader: Forte Agent 1.7/32.534 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Lines: 30 X-Trace: /ba9QdJdwyPY/Kab9nCt+zzXMj0aCcSC5R5vT0QgYyNxaVzbg6hYVjkOoFiKQX8cI7HPqulwjTz/!40lzZTzHy66n299aPsSJZm9YKwZ4r6ZcFYuXjZ/5ByNLryYqQS/WvZWR0uvnyLGNVGFmgNCbkk50!ZA0gXg== X-Complaints-To: abuse AT gte DOT net X-Abuse-Info: Please be sure to forward a copy of ALL headers X-Abuse-Info: Otherwise we will be unable to process your complaint properly NNTP-Posting-Date: Tue, 09 Jan 2001 03:02:43 GMT Distribution: world Date: Tue, 09 Jan 2001 03:02:43 GMT To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Reply-To: djgpp AT delorie DOT com On Mon, 8 Jan 2001 16:27:33 -0800 (PST), Harry Freeze wrote: > I have just downloaded the DJGPP zip files and >have installed them as given in the readme.1st file. I >use RHIDE as my IDE to compile and build my programs. >But I can't run programs using Allegro. And I can't >specify the path for the include and the library >files. > Whenever I compile a program with Allegro , I >get no errors while compiling but when an exe file is >created a lot of errors occur! I assume these are linker errors, "unresolved reference" or something. This would mean you aren't linking the Allegro library to your code. Once you've compiled and installed Allegro according to the docs, you should be able to add it to your project's list of libraries. From the Options menu, choose Libraries... In the big text area, enter alleg on one of the lines, and check the box immediately to the left. Click OK and recompile. --