mirror of
https://gitlab.winehq.org/wine/vkd3d.git
synced 2025-09-12 18:50:22 -07:00
build: Get rid of some redundant instances of "checking" in AC_MSG_CHECKING messages.
AC_MSG_CHECKING already prints "checking" itself.
This commit is contained in:
Notes:
Henri Verbeet
2025-03-10 15:23:16 +01:00
Approved-by: Henri Verbeet (@hverbeet) Merge-Request: https://gitlab.winehq.org/wine/vkd3d/-/merge_requests/1406
@@ -6,7 +6,7 @@ AS_IF([test "x$PTHREAD_LIBS" != x],
|
||||
[vkd3d_libs_saved="$LIBS"
|
||||
LIBS="$LIBS $PTHREAD_LIBS"
|
||||
|
||||
AC_MSG_CHECKING([checking for pthread_create in $PTHREAD_LIBS])
|
||||
AC_MSG_CHECKING([for pthread_create in $PTHREAD_LIBS])
|
||||
AC_TRY_LINK_FUNC([pthread_create], [vkd3d_pthread_found=yes])
|
||||
AC_MSG_RESULT([$vkd3d_pthread_found])
|
||||
|
||||
@@ -19,7 +19,7 @@ AS_IF([test "x$vkd3d_pthread_found" != "xyes"],
|
||||
PTHREAD_LIBS="-pthread"
|
||||
LIBS="$LIBS $PTHREAD_LIBS"
|
||||
|
||||
AC_MSG_CHECKING([checking for pthread_create in $PTHREAD_LIBS])
|
||||
AC_MSG_CHECKING([for pthread_create in $PTHREAD_LIBS])
|
||||
AC_TRY_LINK_FUNC([pthread_create], [vkd3d_pthread_found=yes])
|
||||
AC_MSG_RESULT([$vkd3d_pthread_found])
|
||||
|
||||
|
Reference in New Issue
Block a user