Module: wine Branch: master Commit: 594c64543f616ba805b782608798d27da2111622 URL: https://source.winehq.org/git/wine.git/?a=commit;h=594c64543f616ba805b782608...
Author: Chip Davis cdavis@codeweavers.com Date: Tue Aug 13 11:52:41 2019 -0500
configure: Add a missing comma.
Signed-off-by: Chip Davis cdavis@codeweavers.com Signed-off-by: Alexandre Julliard julliard@winehq.org
---
configure | 5 ++--- configure.ac | 2 +- 2 files changed, 3 insertions(+), 4 deletions(-)
diff --git a/configure b/configure index 2103658..702023b 100755 --- a/configure +++ b/configure @@ -14252,10 +14252,9 @@ $as_echo "#define HAVE_PPDEV 1" >>confdefs.h fi
ac_wine_check_funcs_save_LIBS="$LIBS" -LIBS="$LIBS " +LIBS="$LIBS $PTHREAD_LIBS" for ac_func in \ - pthread_getthreadid_np \ - $PTHREAD_LIBS + pthread_getthreadid_np do : as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" diff --git a/configure.ac b/configure.ac index 59d5fa6..499c4f3 100644 --- a/configure.ac +++ b/configure.ac @@ -1564,7 +1564,7 @@ fi
dnl **** Check for pthread functions **** WINE_CHECK_LIB_FUNCS(\ - pthread_getthreadid_np \ + pthread_getthreadid_np, [$PTHREAD_LIBS])
dnl **** Check for zlib ****