Date: Thu, 25 Nov 1999 17:51:11 +0200 (IST) From: Eli Zaretskii X-Sender: eliz AT is To: azuaje cc: djgpp Subject: Re: is there any cgi library for djgpp? In-Reply-To: <383B358B.B03C5D37@cantv.net> 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 Tue, 23 Nov 1999, azuaje wrote: > I need to write cgi programs in C or C++ (preferably in C). I wonder if there is any cgi > library for djgpp. Compiling CGI programs with DJGPP is not a good idea at all: most probably the resultant executable won't work. The problem is that DJGPP produces DOS programs, which are run by Windows in a separate Virtual Machine. Since the HTTP server, like any Windows program, runs in the System VM it needs to employ special tricks to redirect standard input and output from a DJGPP program. Alas, most Windows servers don't bother to employ these tricks. Compile the program with one of the compilers that produce Win32 applications. Section 3.6 of the DJGPP FAQ lists the available free compilers that will fit the bill.