problems compiling plan under libc6

1997-06-28 Thread Colin R. Telmer
I really don't program in C, so I have no idea if this is something easy to figure out or needs a great amount of reworking. Anyway, given that debian will require all packages to be compiled with libc6 in the near future, I thought I would see if this is fixable. The error message from gcc is:

Re: problems compiling plan under libc6

1997-06-28 Thread Helmut Geyer
Your problem is quite easy to solve: libc5 was not really POSIX-compliant even when _POSIX_SOURCE was defined. S_IFDIR is the macro used by BSD and SVID while POSIX uses __S_IFDIR. If you define _BSD_SOURCE, _SVID_SOURCE or _GNU_SOURCE instead of _POSIX_SOURCE (or simply change the macro to include

RE: problems compiling plan under libc6

1997-06-28 Thread Michael Meskes
des Empfängers ist unbekannt. >Subject: problems compiling plan under libc6 > >I really don't program in C, so I have no idea if this is something easy >to figure out or needs a great amount of reworking. Anyway, given that >debian will require all packages to be compiled with li