This is the mail archive of the cygwin@sourceware.cygnus.com mailing list for the Cygwin project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

RE: file


Thanks very much for the information.  However, I'm still unable to find the
proper package either at
http://www.gnu.org or ftp://prep.ai.mit.edu.

Do you have the proper package name?

I appreciate the patch and will use it as soon as I find the package with
fsmagic.c in it.  :-)

Thanks again,

Todd

> -----Original Message-----
> From: Corinna Vinschen [mailto:corinna.vinschen@cityweb.de]
> Sent: Saturday, October 31, 1998 8:03 PM
> To: Todd Goodman; gnu-win32@cygnus.com
> Subject: Re: file
>
>
> Hi Todd,
>
> > I'm sure I'm overlooking something obvious, but is the 'file' command
> > or equivalent available anywhere?
>
> Look at the GNU Homepage. There you will find the original
> sources. Only one patch is needed, because
> #include <sys/sysmacros.h> isn't available in cygwin.
>
> Regards,
> Corinna
>
> ------- snip -------
> --- fsmagic.c.orig      Sun Nov 01 00:50:08 1998
> +++ fsmagic.c   Sun Nov 01 00:53:20 1998
> @@ -38,7 +38,13 @@
>  # endif
>  #endif
>  #ifndef        major         /* if `major' not defined in types.h, */
> +#ifdef __CYGWIN32__
> +#define major(dev) (((unsigned) (dev))>>8)
> +#define minor(dev) ((dev)&0xff)
> +#define makedev(major,minor) (((major)<<8)|(minor))
> +#else
>  #include <sys/sysmacros.h>     /* try this one. */
> +#endif
>  #endif
>  #ifndef        major   /* still not defined? give up, manual
> intervention needed */
>                 /* If cc tries to compile this, read and act on it. */
>

-
For help on using this list (especially unsubscribing), send a message to
"gnu-win32-request@cygnus.com" with one line of text: "help".


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]