Date: Thu, 10 Sep 1998 10:30:19 +0300 (IDT) From: Eli Zaretskii To: "Curtis, Craig M." cc: "'djgpp AT delorie DOT com'" Subject: Re: configure problem In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Precedence: bulk On Wed, 9 Sep 1998, Curtis, Craig M. wrote: > I have a fairly complete distribution of djgpp (most of the Unix-like > utilities.) I find that there are some GNU source distributions that > have a configure script that do not work on my system. The configure > scripts fail when they cannot find gcc in my path. I do have gcc in my > c:\djgpp\bin directory, which is in the path. The problem is that the script is looking for the file named `gcc', whereas you have `gcc.exe'. Edit the configure script and replace each instance of "test -f" with "test -x". Then it will work. This is the easiest hack for one-time builds. For some more complex solutions see the source distributions of DJGPP ports in the v2gnu directory on DJGPP sites.