From: Stefan N. <neu...@tr...> - 2005-07-02 16:17:24
|
Hugo Vanwoerkom <hvw...@ya...> writes: > --- Mario Scheel <mar...@we...> wrote: > >> Hello >>=20 >> I get the error, with cvs-Ruby over a 2.6.12.2, >> config copied from=20 >> 2.6.11-mm1-ruby: >>=20 >> CC drivers/char/vc_screen.o >> drivers/char/vc_screen.c: In Funktion =BBvcs_read=AB: >> drivers/char/vc_screen.c:168: error: `BUF_SIZE' >> undeclared (first use in this=20 >> function) > > And if you change BUF_SIZE to CON_BUF_SIZE it compiles > but you get the next one: > > drivers/char/vt.c: In function `vc_disallocate': > drivers/char/vt.c:1042: error: `screenbuf' undeclared > (first use in this function) Just a guess screenbuf is vc->vc_screenbuf, but then you get: CC drivers/char/vt.o drivers/char/vt.c: In function `take_over_console': drivers/char/vt.c:1912: error: structure has no member named `vc_size_rows' make[2]: *** [drivers/char/vt.o] Error 1 make[1]: *** [drivers/char] Error 2 make: *** [drivers] Error 2 Changing vc_size_rows to vc_size_row makes things compilable, don't know if it working with the changes... |