Date: Thu, 18 Nov 1999 08:49:06 +0200 (IST) From: Eli Zaretskii X-Sender: eliz AT is To: Andrea Ryan cc: djgpp AT delorie DOT com Subject: Re: Help with include path In-Reply-To: <38338019.985CD51E@global2000.net> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Reply-To: djgpp AT delorie DOT com X-Mailing-List: djgpp AT delorie DOT com X-Unsubscribes-To: listserv AT delorie DOT com Precedence: bulk On Wed, 17 Nov 1999, Andrea Ryan wrote: > P.S. The help file that came with MGL tells me to put the path into Djgpp.env > but it might be better to put them into the environment. Do I put it into the > autoexec.bat file and what do I type besides the name of the directory > (C:\Scitech\Include)? You type this: set C_INCLUDE_PATH=C:\Scitech\Include set CPLUS_INCLUDE_PATH=C:\Scitech\Include The latter is only needed if you want to use MGL from C++ programs. If there is a library (some *.a file) with MGL functions, define the variable LIBRARY_PATH in a similar way. Whether to put this into AUTOEXEC.BAT is something you should decide. It depends on whether you want these settings permanently or not.