Subject: FW: HELP - Compiling a program that requires alloca.h
To: netbsd-help <netbsd-help@NetBSD.ORG>
From: John Maier <JohnAM@datastorm.com>
List: netbsd-users
Date: 05/22/1995 08:41:00
This was the best solution, thanks for the responses (all of them).
A good idea would be to just add alloca.h with just this line to make some
compiles happy. Besides, there were a good 20 files with alloca.h included,
this was much quicker.
jam
----------
From: Bernd Wiserner
To: johnam
Subject: Re: HELP - Compiling a program that requires alloca.h
Date: Saturday, May 20, 1995 12:41PM
>
>
> I am trying to compile xfm-1.3.2 and all was okay till I couldn't find
> alloca.h. I notice that Linux was mentioned as a platform on with it has
> been built, so I got a copy of alloca.h and features.h (required by
> alloca.h) and tried my luck. this time I get...
Try uncommenting alloca.h or if there are too many occurences
temporarily touch create one with theese contents :
#include <stdlib.h>
B.Wiserner