Mailing-List: contact cygwin-help AT sourceware DOT cygnus DOT com; run by ezmlm Sender: cygwin-owner AT sourceware DOT cygnus DOT com Delivered-To: mailing list cygwin AT sourceware DOT cygnus DOT com Date: Sun, 7 Mar 1999 14:35:27 -0500 (EST) From: John Zheng X-Sender: Yien AT viking DOT cris DOT com To: Corinna Vinschen cc: cygwin AT sourceware DOT cygnus DOT com Subject: Re: compiling file 3.26 In-Reply-To: <36E29663.7B7D74A8@cityweb.de> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Ah yes, Adding the line #include to the file file.h did the trick. It also worked, and may be more "correct," to add the line to the files file.c, fsmagic.c, and compress.c. Perhaps the need to make one of these changes should be documented at http://aquarius.franken.de/docs/develop/gnuwin32/GNUWin32.txt? Also, do you know if there is a version of gnu tar for win32 that supports writing to remote unix tape devices that run rmt? I would like to be able to do something like tar -cf tapeserver.domain.com:/dev/rst0 c:\ and have tar write to my tape drive residing on the machine tapeserver. Thanks again for your help. John On Sun, 7 Mar 1999, Corinna Vinschen wrote: > John Zheng wrote: > > > > Corinna, > > > > I downloaded file-3.26.tar.gz from ftp.astron.com, and tried to compile it. > > > > Near the end of compilation, I get the error: > > [...] > > /a/cygnus/file-3.26/file.c:202: undefined reference to `errno' > > [...] > > Do you know what the problem is? errno appears to be defined as: > > > > extern int errno; /* Some unixes don't define this.. */ > > The `extern' declaration of errno must be substituted with > > #include > > Cygwin defines errno not as a global variable, but as a > #define to a function call. This is needed, because it > wouldn't be reentrant else. > > Regards, > Corinna > > > -- Want to unsubscribe from this list? Send a message to cygwin-unsubscribe AT sourceware DOT cygnus DOT com