Fix intptr_t check in configure.ac
This commit is contained in:
parent
dabe39dd1d
commit
558e27ac9e
|
@ -177,7 +177,7 @@ AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
|
|||
]],
|
||||
[[
|
||||
struct kevent event;
|
||||
event.udata = (intptr_t*)(&event);
|
||||
event.udata = (intptr_t)(&event);
|
||||
]])],
|
||||
[kevent_udata_intptr_t=yes], [kevent_udata_intptr_t=no])
|
||||
AC_MSG_RESULT([$kevent_udata_intptr_t])
|
||||
|
|
Loading…
Reference in New Issue