Re: Error during make - latest CVS
Bryan Kadzban <[email protected]> Sun, 13 Jun 2004 08:40:33 -0400
| Newsgroups | gmane.comp.emulators.winex.devel |
|---|---|
| Message-ID | <[email protected]> |
Drew Broadley wrote: > ./parser.y:117:20: alloca.h: No such file or directory > > Line in parser.y > > #ifdef HAVE_ALLOCA_H > #include <alloca.h> > #endif > Since you apparently don't have an <alloca.h> header (actually, double check that; mine's in /usr/include), try commenting out the #define HAVE_ALLOCA_H line in the include/config.h file. Then recompile. I'm not sure if winex will compile without alloca.h, but it's worth a shot. The autoconf AC_FUNC_ALLOCA check should not have succeeded if you don't have an alloca.h header, but oh well. BTW, is this Slackware, or is it not Linux? I noticed you were using gmake instead of make, and the only Linux I know of where that's the way make is installed is on Slackware. BSD's (and other Unixes), of course, have it installed as gmake also. Not that it matters a ton...