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:
Henri Verbeet
2025-03-05 22:08:01 +01:00
parent f4042ba752
commit 2f260a344e
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
2 changed files with 3 additions and 3 deletions

View File

@@ -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])