bug-mailutils
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [bug-mailutils] QNX RtP 6.2 and mailutils 0.6.90


From: Sergey Poznyakoff
Subject: Re: [bug-mailutils] QNX RtP 6.2 and mailutils 0.6.90
Date: Mon, 23 May 2005 22:26:15 +0300

address@hidden wrote:

> compilation errors I found were:
> 
> mailbox/mutil.c: needs additional #include <sys/select.h>
> lib/mailcap.c: needs additional #include "fnmatch_.h"

Thank you for reporting. The <sys/select.h> should certainly be
included, I'll fix that. The problem with lib/mailcap.c is that it
includes <fnmatch.h>, which does not necessary contain definition of
FNM_CASEFOLD (which is a GNU extension). "fnmatch_.h" should not be used
directly, this file is used only on systems that lack fnmatch.h. In
short, the proper fix will be:

#ifndef FNM_CASEFOLD
# define FNM_CASEFOLD 0
#endif

after the #include section.

> I have not expect for QNX RtP, so running tests were of no use.  I did
> however run some simple tests regarding the MH set of commands and all
> seems to be working just fine.

Good news. Thanks!

Regards,
Sergey






reply via email to

[Prev in Thread] Current Thread [Next in Thread]