[EMAIL PROTECTED] 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 _______________________________________________ Bug-mailutils mailing list [email protected] http://lists.gnu.org/mailman/listinfo/bug-mailutils
