Date: Sun, 23 Jun 2002 18:46:10 +0300 From: "Eli Zaretskii" Sender: halo1 AT zahav DOT net DOT il To: "deckerben" Message-Id: <7458-Sun23Jun2002184610+0300-eliz@is.elta.co.il> X-Mailer: emacs 21.3.50 (via feedmail 8 I) and Blat ver 1.8.9 CC: djgpp AT delorie DOT com In-reply-to: <3d15c022$0$26988$9b622d9e@news.freenet.de> (deckerben AT freenet DOT de) Subject: Re: Fork References: <3d15c022$0$26988$9b622d9e AT news DOT freenet DOT de> Reply-To: djgpp AT delorie DOT com Errors-To: nobody AT delorie DOT com X-Mailing-List: djgpp AT delorie DOT com X-Unsubscribes-To: listserv AT delorie DOT com Precedence: bulk > From: "deckerben" > Newsgroups: comp.os.msdos.djgpp > Date: Sun, 23 Jun 2002 14:35:05 +0200 > > Are there any fork() libraries for DJGPP that I could try? Every time I > build an app that calls for fork(), I run out of memory. I read a FAQ that > said that fork() is not implemented in DJGPP. So it could be that > .configure think that there is fork, but there really isn't. Indeed. The configure script should test whether fork wiorks, not just whether it exists in the library. Try adding this line to your config.site file, and then rerun the configure script and rebuild the program: ac_cv_func_fork=no