This is the mail archive of the
cygwin@cygwin.com
mailing list for the Cygwin project.
Re: qmail-1.03: any volunteers?!
- To: cygwin at cygwin dot com
- Subject: Re: qmail-1.03: any volunteers?!
- From: "Gerrit P. Haase" <freeweb at nyckelpiga dot de>
- Date: Fri, 28 Sep 2001 12:24:51 +0200
- Organization: convey Information Systems GmbH
- Reply-to: cygwin at cygwin dot com
> Stipe Tolj schrieb am 2001-09-28 10:57:
>> Jaaaaaaa, me:-)
>> My main interest is to see how you substituted mkfifo functions
>> which were my main problems when trying to build qmail and friends.
>
>hmm, haven done any substitution at all :))
diff -urN qmail-1.03/fifo.c qmail-1.03-sti/fifo.c
--- qmail-1.03/fifo.c Mon Jun 15 10:53:16 1998
+++ qmail-1.03-sti/fifo.c Sun Sep 23 10:54:48 2001
@@ -5,6 +5,8 @@
#ifdef HASMKFIFO
int fifo_make(fn,mode) char *fn; int mode; { return mkfifo(fn,mode); }
+#elif __CYGWIN__
+int fifo_make(fn,mode) char *fn; int mode; { return mode; }
#else
int fifo_make(fn,mode) char *fn; int mode; { return mknod(fn,S_IFIFO | mode,0); }
#endif
You've changed it that way, is that sufficient?
Gerrit
--
=^..^=
--
Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple
Bug reporting: http://cygwin.com/bugs.html
Documentation: http://cygwin.com/docs.html
FAQ: http://cygwin.com/faq/