Date: Wed, 7 Jul 1999 17:15:26 +0300 (IDT) From: Eli Zaretskii X-Sender: eliz AT is To: "Curtis, Craig M." cc: djgpp AT delorie DOT com Subject: Re: CMU SNMP In-Reply-To: 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, 7 Jul 1999, Curtis, Craig M. wrote: > It seems that the configure script is screwed up, because it cannot find gcc > for DJGPP. The GNU configure scripts need some minor tweaking to make them run on DOS/Windows. You need to replace "test -f" with "test -x", and you need to set PATH_SEPARATOR=: in the environment, otherwise the script won't find GCC. > Also, if I run configure on a Linux box and copy over the > makefile, I get bizarre crashes when I try to make. I get the following > error when I try make: > > make.exe: [devel] Error -1 (ignored) > \tmp/dj100000: Can't make pipes for command substitution! This usually means your TMPDIR variable either isn't set or points to a non-existent or unwritable directory. Bash uses temporary files to simulate pipes and `command` substitutions.