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

View File

@@ -4,7 +4,7 @@ AC_DEFUN([VKD3D_PROG_WIDL],
[AC_CHECK_TOOL([WIDL], [widl], [no])
AS_IF([test "x$WIDL" != "xno"],
[AC_MSG_CHECKING([checking whether widl version >= $1.$2])
[AC_MSG_CHECKING([whether widl version >= $1.$2])
vkd3d_widl_version=`$WIDL -V 2>/dev/null | $SED -E '/version/{s/.* version (.*)/\1/;q;}'`
AX_COMPARE_VERSION([$vkd3d_widl_version], [ge], [$1.$2],