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
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
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
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
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
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
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
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
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