Hi, I compiled texinfo with gcc and sunstudio on solaris 10 with 64 bits (-xarch=v9a) and got a bus error when executing info.
The cause is in info/window.c: on line 1584 and 1885 the type of the variable must be a size_t instead of int. The variable is passed to functions as output parameter where it is declared as size_t. On both compilers under 64 bit, sizeof(int) == 4 and sizeof(size_t) == 8. Mit freundlichen GrĂ¼ssen / kind regards, Peter Mutsaers
