Commit 83f954e8 authored by Nicolas George's avatar Nicolas George

configure: check for pthread_cancel.

parent b545b947
...@@ -1221,6 +1221,7 @@ HAVE_LIST=" ...@@ -1221,6 +1221,7 @@ HAVE_LIST="
PeekNamedPipe PeekNamedPipe
poll_h poll_h
posix_memalign posix_memalign
pthread_cancel
round round
roundf roundf
sched_getaffinity sched_getaffinity
...@@ -3175,6 +3176,10 @@ for thread in $THREADS_LIST; do ...@@ -3175,6 +3176,10 @@ for thread in $THREADS_LIST; do
fi fi
done done
if enabled pthreads; then
check_func pthread_cancel
fi
check_lib math.h sin -lm && LIBM="-lm" check_lib math.h sin -lm && LIBM="-lm"
disabled crystalhd || check_lib libcrystalhd/libcrystalhd_if.h DtsCrystalHDVersion -lcrystalhd || disable crystalhd disabled crystalhd || check_lib libcrystalhd/libcrystalhd_if.h DtsCrystalHDVersion -lcrystalhd || disable crystalhd
enabled vaapi && require vaapi va/va.h vaInitialize -lva enabled vaapi && require vaapi va/va.h vaInitialize -lva
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment