Date: Mon, 4 Jun 2001 09:54:08 +0300 (IDT) From: Eli Zaretskii X-Sender: eliz AT is To: Martino Merzek cc: djgpp AT delorie DOT com Subject: Re: problems with making jptui 4.0k In-Reply-To: <001401c0ec0e$4905fb80$ed8cabd4@martino> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Reply-To: djgpp AT delorie DOT com Errors-To: nobody AT delorie DOT com X-Mailing-List: djgpp AT delorie DOT com X-Unsubscribes-To: listserv AT delorie DOT com Precedence: bulk On Sun, 3 Jun 2001, Martino Merzek wrote: > I'm extremly sorry to bother you with my little problem but I'm going > mad! > I download jpt40k_s.zip from simtel mirror (flashnet.it), try to make it > (with makegcc.bat and make) but doesn't work: messages are in > problems.txt and a copy of my environment variable in environ.txt. The messages seem self-explanatory. It looks like the sources were written long ago, and the compiler and assembler got more picky about mildly invalid code since then. From the messages, it seems like the problems should be easy to fix. If you cannot figure out what is the problem in each case, after looking at the source line whose number is printed in the message, post here the code fragment around the offending line together with the error message, and someone will help you. For example, this: > gcc -MMD -Wall -m486 -O3 -D__JPTUI__ -D__TUIMAKER__ -c jpdata.cpp -o jpdata.o > jpdata.cpp:84: warning: ignoring pragma: says that there's some pragma at line 84 of jpdata.cpp which the compiler doesn't recognize. You should look at that line and see how to fix that. (In any case, this is just a warning.)