On 8/24/06, Sara Michale Smith <[EMAIL PROTECTED]> wrote:
Hi,I am trying to compile analog 6.0 on our IBM webserver. It is AIX version 5.3 with the IBM XL C Compiler version 7.0.0.6. A bunch of files compile, but I a bunch of errors once it tries to compile outxml.c. Here is the log: % make [...] cc -O2 -DUNIX -c outxml.c "outxml.c", line 12.1: 1506-046 (S) Syntax error. "outxml.c", line 12.4: 1506-166 (S) Definition of function outxml requires parentheses. "outxml.c", line 13.44: 1506-191 (E) The character @ is not a valid C source character.
The author of that file used // ... comments instead of /* ... */ which is not legal in the previous version of C (C89). Delete all the comments from the file, or else surround them with /* ... */ and it should work. Sorry about that. -- Stephen Turner +------------------------------------------------------------------------ | TO UNSUBSCRIBE from this list: | http://lists.meer.net/mailman/listinfo/analog-help | | Analog Documentation: http://analog.cx/docs/Readme.html | List archives: http://www.analog.cx/docs/mailing.html#listarchives | Usenet version: news://news.gmane.org/gmane.comp.web.analog.general +------------------------------------------------------------------------

