From: brad noyes (brad_at_wpi.edu)
Date: Fri May 23 2003 - 01:30:18 CDT

John,
I found the problem.
> > AtomParser.y:35:135: missing binary operator before '('
I had a typo on this line.
#if defined(ARCH_LINUX) || defined(ARCH_LINUXALPHA) || defined(ARCH_LINUXPPC)
|| defined(ARCH_TRU64) || defined(ARCH_MACOSX) || defined(ARCH_FREEBSD)
extern "C" int yylex();
#endif

I had 'define(ARCH_FREEBSD)' rather then 'defined(ARCH_FREEBSD)'. So it
compiles. Now i'm trying to get it to link properly.

Thanks,
--Brad

On Friday 23 May 2003 12:03 am, John Stone wrote:
> Brad,
> Are you building from the CVS tree, or from one of the source
> distributions of VMD 1.8 or earlier? If you can send me your modified
> configure script etc, I can take a look at what is going on.