Date: Tue, 6 Jan 1998 10:43:41 +0200 (IST) From: Eli Zaretskii To: John Velman cc: djgpp AT delorie DOT com Subject: Re: Guile again, and "no accepatable ld.." In-Reply-To: <68rj7d$826@hacgate2.hac.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Precedence: bulk On 5 Jan 1998, John Velman wrote: > OK so far. Next thing it tells me is > > "checking for ld used by the C compiler (gcc -g -O2)... no" > > and on stderr: "no acceptable ld is found in $PATH." > > Anyone have any idea what is happening? Of course, ld.exe is right > there in my DJGPP/bin file. You need to change all places where the script looks for an executable using something like "test -f foo" with "test -x foo". The DJGPP port of Bash will then look for foo.exe (and other executable suffixes) as well as just for foo. If that doesn't help, please post the fragment of the script that tests for ld (I have never seen a configure script that does).