Re: [Mingw-w64-public] sigset_t and w32pth

2010-07-30 Thread Ozkan Sezer
On Fri, Jul 30, 2010 at 12:11 PM, Kai Tietz wrote: > 2010/7/30 Ozkan Sezer : >> On Fri, Jul 30, 2010 at 4:45 AM, Dongsheng Song >> wrote: >>> It seems that Borland C++ defined ENOFILE, and MinGW add the alias of >>> ENOENT. >>> >> >> >> Well, ENOENT is actually a standart errno.  I learnt ENOFIL

Re: [Mingw-w64-public] sigset_t and w32pth

2010-07-30 Thread Kai Tietz
2010/7/30 Ozkan Sezer : > On Fri, Jul 30, 2010 at 4:45 AM, Dongsheng Song > wrote: >> It seems that Borland C++ defined ENOFILE, and MinGW add the alias of ENOENT. >> > > > Well, ENOENT is actually a standart errno.  I learnt ENOFILE just now, > but since it seems to be in use, I say that we shoul

Re: [Mingw-w64-public] sigset_t and w32pth

2010-07-30 Thread Ozkan Sezer
On Fri, Jul 30, 2010 at 4:45 AM, Dongsheng Song wrote: > It seems that Borland C++ defined ENOFILE, and MinGW add the alias of ENOENT. > Well, ENOENT is actually a standart errno. I learnt ENOFILE just now, but since it seems to be in use, I say that we should define it. -- Ozkan > On Thu, J

Re: [Mingw-w64-public] sigset_t and w32pth

2010-07-29 Thread Dongsheng Song
It seems that Borland C++ defined ENOFILE, and MinGW add the alias of ENOENT. On Thu, Jul 29, 2010 at 23:43, Ozkan Sezer wrote: > On Thu, Jul 29, 2010 at 6:28 PM, Kai Tietz wrote: >> 2010/7/29 Dongsheng Song : >>> Thanks, when I build libassuan, I found ENOFILE not defined yet (within >>> errno

Re: [Mingw-w64-public] sigset_t and w32pth

2010-07-29 Thread Ozkan Sezer
On Thu, Jul 29, 2010 at 6:28 PM, Kai Tietz wrote: > 2010/7/29 Dongsheng Song : >> Thanks, when I build libassuan, I found ENOFILE not defined yet (within >> errno.h) >> >> #define ENOFILE         2       /* No such file or directory */ >> #define ENOENT          2 >> >> When I add ENOFILE definit

Re: [Mingw-w64-public] sigset_t and w32pth

2010-07-29 Thread Kai Tietz
2010/7/29 Dongsheng Song : > Thanks, when I build libassuan, I found ENOFILE not defined yet (within > errno.h) > > #define ENOFILE         2       /* No such file or directory */ > #define ENOENT          2 > > When I add ENOFILE definition, I can build GnuPG 2 success. > > I don't know whether E

Re: [Mingw-w64-public] sigset_t and w32pth

2010-07-29 Thread Dongsheng Song
Thanks, when I build libassuan, I found ENOFILE not defined yet (within errno.h) #define ENOFILE 2 /* No such file or directory */ #define ENOENT 2 When I add ENOFILE definition, I can build GnuPG 2 success. I don't know whether ENOFILE should defined. On Thu, Jul 29, 201

Re: [Mingw-w64-public] sigset_t and w32pth

2010-07-29 Thread Kai Tietz
2010/7/29 Dongsheng Song : > Hi, > > When I compile GnuPG 2, I found w32pth[1] use data type sigset_t which > mingw-w64 not supported, > Is there any plan to support sigset_t in sys/types.h ? > > #ifndef _SIGSET_T_ > #define _SIGSET_T_ > typedef int     _sigset_t; > > #ifndef _NO_OLDNAMES > typedef

[Mingw-w64-public] sigset_t and w32pth

2010-07-29 Thread Dongsheng Song
Hi, When I compile GnuPG 2, I found w32pth[1] use data type sigset_t which mingw-w64 not supported, Is there any plan to support sigset_t in sys/types.h ? #ifndef _SIGSET_T_ #define _SIGSET_T_ typedef int _sigset_t; #ifndef _NO_OLDNAMES typedef _sigset_t sigset_t; #endif #endif /* Not