Message-ID: From: "Curtis, Craig M." To: "'Eli Zaretskii'" Cc: "'djgpp AT delorie DOT com'" Subject: RE: configure problem Date: Thu, 10 Sep 1998 07:07:31 -0400 MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Precedence: bulk I tried this and I still get the same results. >---------- >From: Eli Zaretskii[SMTP:eliz AT is DOT elta DOT co DOT il] >Sent: Thursday, September 10, 1998 3:30 AM >To: Curtis, Craig M. >Cc: 'djgpp AT delorie DOT com' >Subject: Re: configure problem > > >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. >