mirror of
https://gitlab.winehq.org/wine/vkd3d.git
synced 2025-04-13 05:43:18 -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])
|
||||
|
||||
|
@@ -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],
|
||||
|
Reference in New Issue
Block a user