Nikita Karetnikov <nik...@karetnikov.org> writes: > w3m raises the following error: > > istream.h:23:8: error: redefinition of 'struct file_handle'
The issue here is that glibc started using "struct file_handle", which conflicts with w3m's prior use of the same name. You shouldn't need a patch for this. Just replace "struct file_handle" with "struct io_file_handle" everywhere in the w3m source code. That will have no effect on the operation of the program whatsoever. Mark