Date: Thu, 15 Feb 1996 18:29:59 +0200 (IST) From: Eli Zaretskii To: Frank Donahoe Cc: Djgpp Subject: Re: ioctl missing On Thu, 15 Feb 1996, Frank Donahoe wrote: > directly to V2.0. I'll look more carefully at the error messages with > the -D_POSIX_SOURCE set. This setting will bypass the bulk of > ! There may be some flags within that block of code which > should be moved outside. Regards, Frank You are right. I think that when I compiled Fileutils, that condition wasn't there. Please try removing #ifndef _POSIX_SOURCE and the matching #endif from that file. (This is the standard paradigm DJ uses in all header files which aren't mentioned in the POSIX standard, so as to not pollute the namespace with non-standard symbols, but in this specific case, it might do more harm than help. Please try without it, and if it gets the job done, we'll have to think how to make it right.)