Date: Sun, 23 Mar 1997 09:15:02 -0500 Message-Id: <199703231415.JAA13515@delorie.com> From: DJ Delorie To: yannik AT videotron DOT ca CC: djgpp AT delorie DOT com In-reply-to: <5h2ldq$qcj$1@wagner.spc.videotron.ca> (message from Yanick on 23 Mar 1997 07:17:14 GMT) Subject: Re: djgpp and packages > 1) What's the difference between txi370b.zip and txi390b.zip? Are they > compatible? The numbers are merely version numbers. txi390b.zip is a newer version of the same software. The only reasons old versions hang around are: 1. Someone forgot to delete them. 2. The new versions are still being tested, so the old ones are "just in case" > 2) I read in the FAQ that we can find manual for presenting, installing > and using DJGPP at the adress http://remus.rutgers.edu/~avly/djgpp.html > (for online help) but it seems that nothing there (server not found). > Is there another place for this information?? > > 3) The manual djtut-bm.zip at ftp://x2ftp.oulu.fi (directory /pub/msdos/ > programming/djgpp2) is not there ... we have only djtut252.zip. > Is it the samething or there's a difference, and if Yes, what are they? The main home page for DJGPP is http://www.delorie.com/djgpp/ There is a lot of information there, but if you find links from it that are broken, try searching the mail archives to see if someone has reported a new link. > 4) Do i need to unzip all the packages or only the necessary ones for > programming in C/C++? You only need to unzip what you need. The FAQ and README.1ST describe which you need. > 5) Finally, my last question is: How can i know if a program is good for > another environment (e.g. I'm on DOS 6.22 and Windows 3.1 and i want > to program for Unix? Is there any thricks? If you want true portability, try adding "-ansi -Wall" to your compile lines. This will restrict your to ANSI stuff in the header files and complain if you use other functions.