configure: Fixed the check for sigset_t on mingw.
This commit is contained in:
parent
c8aba692af
commit
43048397d6
|
@ -18729,6 +18729,7 @@ _ACEOF
|
|||
cat confdefs.h >>conftest.$ac_ext
|
||||
cat >>conftest.$ac_ext <<_ACEOF
|
||||
/* end confdefs.h. */
|
||||
#include <sys/types.h>
|
||||
#include <signal.h>
|
||||
|
||||
typedef sigset_t ac__type_new_;
|
||||
|
|
|
@ -1487,7 +1487,8 @@ dnl **** Check for types ****
|
|||
AC_C_CONST
|
||||
AC_C_INLINE
|
||||
AC_CHECK_TYPES([mode_t, off_t, pid_t, size_t, ssize_t, long long, fsblkcnt_t, fsfilcnt_t])
|
||||
AC_CHECK_TYPES([sigset_t],,,[#include <signal.h>])
|
||||
AC_CHECK_TYPES([sigset_t],,,[#include <sys/types.h>
|
||||
#include <signal.h>])
|
||||
AC_CHECK_TYPES([request_sense],,,[#include <linux/cdrom.h>])
|
||||
|
||||
AC_CHECK_MEMBERS([struct ff_effect.direction],,,
|
||||
|
|
Loading…
Reference in New Issue