mirror of
https://github.com/nghttp2/nghttp2.git
synced 2025-12-07 18:48:54 +08:00
Fix intptr_t check in configure.ac
This commit is contained in:
@@ -177,7 +177,7 @@ AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
|
|||||||
]],
|
]],
|
||||||
[[
|
[[
|
||||||
struct kevent event;
|
struct kevent event;
|
||||||
event.udata = (intptr_t*)(&event);
|
event.udata = (intptr_t)(&event);
|
||||||
]])],
|
]])],
|
||||||
[kevent_udata_intptr_t=yes], [kevent_udata_intptr_t=no])
|
[kevent_udata_intptr_t=yes], [kevent_udata_intptr_t=no])
|
||||||
AC_MSG_RESULT([$kevent_udata_intptr_t])
|
AC_MSG_RESULT([$kevent_udata_intptr_t])
|
||||||
|
|||||||
Reference in New Issue
Block a user