Epic 4

k3vmo

2002-04-03 05:00:00

I've got the newest dev tools on OS 10.1.3

I was able to run ./configure for epic, but when I attempt 'make'

I get:

./../include/ircaux.h:141: illegal function definition, found `)'
./../include/ircaux.h:142: syntax error, found `+'
./../include/ircaux.h:142: illegal function definition, found `)'
./../include/hook.h:101: syntax error, found `+'
./../include/hook.h:101: illegal function definition, found `)'
./../include/output.h:20: syntax error, found `+'
./../include/output.h:20: illegal function definition, found `)'
./../include/output.h:21: syntax error, found `+'
./../include/output.h:21: illegal function definition, found `)'
./../include/output.h:22: syntax error, found `+'
./../include/output.h:22: illegal function definition, found `)'
./../include/output.h:23: syntax error, found `+'
./../include/output.h:23: illegal function definition, found `)'
cpp-precomp: warning: errors during smart preprocessing, retrying in basic mode

I've even tried adding CFLAGS="--no-cpp-precomp" but I still get the same thing...

Any suggestions?

(Go easy - don't flame the newbie)...

apex

2002-04-11 07:40:00

You must have added -no-cpp-precomp incorrectly.

Here's what you do:
1) cd epic*
3) ./configure
4) pico Makefile
5) search for cflags (control-w)

Change:
<blockquote><font size="1" face="Verdana, Helvetica, sans-serif">code:</font><hr><pre>
CFLAGS = -g -O
</pre>[/quote]
to:
<blockquote><font size="1" face="Verdana, Helvetica, sans-serif">code:</font><hr><pre>
CFLAGS = -g -O -no-cpp-precomp
</pre>[/quote]

6) press control-x, y, and then return to save changes.
7) type make

It should work =]