Has anybody succeeded in compiling 0.9.10 with Cygwin? I'm getting the following error:- gcc -DHAVE_CONFIG_H -I. -I. -I../.. -g -O2 -Wall -W -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wformat=2 -Wbad-function-cast -c istream-file.c istream-file.c:57: conflicting types for `_close' /usr/include/sys/unistd.h:148: previous declaration of `_close' istream-file.c:129: conflicting types for `_read' /usr/include/sys/unistd.h:153: previous declaration of `_read' make: *** [istream-file.o] Error 1 Thanks Tim
On Fri, 2003-08-15 at 20:49, Tim H. wrote:> Has anybody succeeded in compiling 0.9.10 with Cygwin? I'm getting the > following error:-Yea, it's in my TODO that I should probably fix those.. You'd only have to rename the _read and _close functions to something else. I haven't yet figured out what since I kind of like the _ naming convention.. :) Maybe a full i_stream_file_read..