Guys,
 
I finally gave up trying to build mono on cygwin and just downloaded a monocharge snapshot instead.
 
I put the binaries in the right spot (/monocvs/install).
 
I then did cvs up -AC in /monocvs/monodoc; then did ./configure --prefix=/monocvs/install;
 
Now I'm finding that when I do a make in monodoc I get wierd syntax errors from the compiler on any line that contains nested parenthesis in it.
 
For example this:
if (cssClass != null && (cssClass == "topframe" || cssClass == "navbar" || cssClass == "copyright" ))
 
gives this error:
 
syntax error, expecting CLOSE_PARENS
./monohb-provider.cs(51) error CS1002: Expecting `;'
 
and this:
 
string cssClass = ((XmlElement)node).GetAttribute("class");
 
gives this
 
syntax error, expecting AS IS CLOSE_BRACE OPEN_BRACKET CLOSE_BRACKET OPEN_PARENS
 CLOSE_PARENS DOT COMMA COLON SEMICOLON PLUS MINUS ASSIGN OP_LT OP_GT BITWISE_AN
D BITWISE_OR STAR PERCENT DIV CARRET INTERR OP_INC OP_DEC OP_SHIFT_LEFT OP_SHIFT
_RIGHT OP_LE OP_GE OP_EQ OP_NE OP_AND OP_OR OP_MULT_ASSIGN OP_DIV_ASSIGN OP_MOD_
ASSIGN OP_ADD_ASSIGN OP_SUB_ASSIGN OP_SHIFT_LEFT_ASSIGN OP_SHIFT_RIGHT_ASSIGN OP
_AND_ASSIGN OP_XOR_ASSIGN OP_OR_ASSIGN OP_PTR
./monohb-provider.cs(50) error CS1002: Expecting `;'
 

Reply via email to