X-Authentication-Warning: delorie.com: mailnull set sender to djgpp-workers-bounces using -f From: sandmann AT clio DOT rice DOT edu (Charles Sandmann) Message-Id: <10112170223.AA18316@clio.rice.edu> Subject: Re: Building bash 2.05a under 2.03 refresh To: sandmann AT clio DOT rice DOT edu (sandmann) Date: Sun, 16 Dec 2001 20:23:38 -0600 (CST) Cc: snowball3 AT softhome DOT net, djgpp-workers AT delorie DOT com (DJGPP developers) In-Reply-To: from "sandmann" at Dec 16, 2001 07:36:05 PM X-Mailer: ELM [version 2.5 PL2] Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Reply-To: djgpp-workers AT delorie DOT com Errors-To: nobody AT delorie DOT com X-Mailing-List: djgpp-workers AT delorie DOT com X-Unsubscribes-To: listserv AT delorie DOT com Precedence: bulk While the following patch allows me to compile, and the resulting bash mostly works - when rebuilding bash I get the error: /djgpp/tmp/dj400000: cannot make pipes for command substitution: Permission denied (EACCES) So maybe this isn't a great idea :-( Here's the patch anyway: *** bshspawn.c.ori Tue Aug 21 13:59:36 2001 --- bshspawn.c Sun Dec 16 20:12:12 2001 *************** *** 20,21 **** --- 20,25 ---- + #ifndef SPAWN_NO_EXTENSION_SRCH + #define __djgpp_spawn(m,p,a,e,f) __spawnve(m,p,a,e) + #endif + static int *check_dpmi_selectors (void); *************** spawn_make_response_file (char **argv) *** 250,251 **** --- 254,257 ---- + /* XXX: Is this needed? */ + #if 0 #include *************** spawn_make_response_file (char **argv) *** 257,260 **** - /* XXX: Is this needed? */ - #if 0 void --- 263,264 ----