Martin Lambers wrote: > Jeremy C. Reed received the following bug report about building > mpop-1.0.12 on DragonFly 1.8.0. > This version of mpop uses current gnulib files from 2007-11-27. > > > Here is the error when attempting to build base64.o: > > > > In file included from /usr/include/wchar.h:73, > > from ./stdint.h:90, > > from /usr/include/sys/types.h:50, > > from /usr/include/stdlib.h:42, > > from ./stdlib.h:30, > > from base64.c:50: > > ./stdio.h:372: error: syntax error before "getdelim" > > ./stdio.h:395: error: syntax error before "rpl_getline" > > *** Error code 1
It appears that the ssize_t type is not defined. Can you let the reporter try to compile these two programs? ========================== try1.c ========================= #include <sys/types.h> ssize_t x = -3; int main () { return 0; } =========================================================== ========================== try1.c ========================= #include <unistd.h> ssize_t x = -3; int main () { return 0; } =========================================================== Bruno