Skip to content

Commit 31c95c6

Browse files
authored
Merge pull request #1695 from Explorer09/darwin-thread-info-check
build (darwin): Fix a AC_COMPILE_IFELSE misquoting
2 parents 030f801 + 63bf098 commit 31c95c6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

configure.ac

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -189,14 +189,14 @@ if test "$my_htop_platform" = darwin; then
189189
AC_CHECK_HEADERS([mach/thread_info.h])
190190

191191
AC_MSG_CHECKING(for thread_extended_info_data_t)
192-
AC_COMPILE_IFELSE(
192+
AC_COMPILE_IFELSE([
193193
AC_LANG_PROGRAM(
194194
[#include <mach/thread_info.h>],
195195
[
196196
thread_extended_info_data_t teid;
197197
(void)teid;
198198
]
199-
),
199+
)],
200200
[
201201
AC_DEFINE([HAVE_THREAD_EXTENDED_INFO_DATA_T], 1, [Define if thread_extended_info_data_t is available from <mach/thread_info.h>])
202202
AC_MSG_RESULT(yes)

0 commit comments

Comments
 (0)