[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
Re: gEDA-user: pcb vs. solaris
> Undefined first referenced
> symbol in file
> yywrap parse_l.o
I've checked this in, although your Makefile should have either -lfl
(for flex) or -ll (for lex) to get this function.
Index: parse_y.y
===================================================================
RCS file: /cvsroot/pcb/pcb/src/parse_y.y,v
retrieving revision 1.10
diff -p -2 -r1.10 parse_y.y
*** parse_y.y 5 Mar 2004 02:22:52 -0000 1.10
--- parse_y.y 23 Mar 2004 20:26:38 -0000
*************** char *s;
*** 1048,1049 ****
--- 1048,1053 ----
}
+ int yywrap()
+ {
+ return 1;
+ }