Charles wrote: > The `make` step fails with this: > > ------------------8<------------------------------------ > /Applications/Xcode.app/Contents/Developer/usr/bin/make all-am > CC connect.o > CC convert.o > CC cookies.o > CC ftp.o > ftp.c:1466:19: error: no member named 'rpl_unlink' in 'struct options' > if (opt.unlink && file_exists_p (con->target)) > ~~~ ^ > ../lib/unistd.h:1851:19: note: expanded from macro 'unlink' > # define unlink rpl_unlink
Looks like the same issue I had with mswindows.h. The fix was to put '#include <sys/ioctl.h>' before Gnulib's unlink() got a chance to get defined as rpl_unlink(). -- --gv
