| www.delorie.com/archives/browse.cgi | search |
| Mailing-List: | contact cygwin-help AT sourceware DOT cygnus DOT com; run by ezmlm |
| List-Subscribe: | <mailto:cygwin-subscribe AT sources DOT redhat DOT com> |
| List-Archive: | <http://sources.redhat.com/ml/cygwin/> |
| List-Post: | <mailto:cygwin AT sources DOT redhat DOT com> |
| List-Help: | <mailto:cygwin-help AT sources DOT redhat DOT com>, <http://sources.redhat.com/ml/#faqs> |
| Sender: | cygwin-owner AT sources DOT redhat DOT com |
| Delivered-To: | mailing list cygwin AT sources DOT redhat DOT com |
| From: | "Gerrit P. Haase" <freeweb AT nyckelpiga DOT de> |
| Organization: | convey Information Systems GmbH |
| To: | cygwin AT cygwin DOT com |
| Date: | Fri, 28 Sep 2001 12:24:51 +0200 |
| MIME-Version: | 1.0 |
| Subject: | Re: qmail-1.03: any volunteers?! |
| Reply-to: | cygwin AT cygwin DOT com |
| Message-ID: | <3BB46C13.10754.3EBF0DB@localhost> |
| In-reply-to: | <3BB43B67.6DC904F8@wapme-systems.de> |
| X-mailer: | Pegasus Mail for Win32 (v3.12cDE) |
> 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/
| webmaster | delorie software privacy |
| Copyright © 2019 by DJ Delorie | Updated Jul 2019 |