Testing this out just to see what the output is underbitbake

This commit is contained in:
bvarner 2017-06-28 15:48:29 -04:00
parent 7ae960e4eb
commit 9735385a47

View File

@ -290,9 +290,16 @@ AS_IF([test "x$have_libvhd" = "xyes" ], [
dnl We want pthreads. Try libpthread first, then libc_r (FreeBSD), then PTL.
dnl We want pthreads. Try libpthread first, then npth, then libc_r (FreeBSD), then PTL.
AC_SEARCH_LIBS([pthread_create], [pthread])
AC_SEARCH_LIBS([pthread_create], [npth])
AC_SEARCH_LIBS([pthread_create], [c_r])
AC_SEARCH_LIBS([pthread_create], [PTL])
HAVE_PTHREADS=yes
AC_SEARCH_LIBS([pthread_create], [pthread npth c_r PTL], , [
AC_SEARCH_LIBS([pthread_create], [pthread], , [
HAVE_PTHREADS=no
])
if [[ "x$HAVE_PTHREADS" = "xyes" ]]; then