octave-maintainers
[Top][All Lists]
Advanced

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

sigset_t dectection of mingw configure


From: Tatsuro MATSUOKA
Subject: sigset_t dectection of mingw configure
Date: Mon, 3 Dec 2007 18:31:54 +0900 (JST)

Hello

In the mingw, after the ./configure
in 'config.h'

#if !defined(HAVE_SIGSET_T)
typedef int sigset_t;
#endif

is defined.

But actually, in the mingw system, 'sigset_t' is defined in  
.../MinGW/include/sys/types.h.
(In Cygwin, it is defined in 'signal.h'. Perhaps in Unix it is place in 
'signal.h'??)


So that

#if !defined(HAVE_SIGSET_T)
typedef int sigset_t;
#endif

will always gives the depucated definition in the 'make'.

So I alwas comment out after ./configure, I comment out like the following,

#if !defined(HAVE_SIGSET_T)
// typedef int sigset_t;
#endif

This is a trivial problem.  
However it is grateful for the mingw people to be solved.
If have enough knowledge of autoconf, I can make a patch.
However, i do not have a such knowledge. 

Please help me.

Thanks in advance.

Regards

Tatsuro
  


--------------------------------------
New Design Yahoo! JAPAN  2008/01/01
http://pr.mail.yahoo.co.jp/newdesign/


reply via email to

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