diff mbox series

[FFmpeg-devel] configure: make flite depend on threads

Message ID 20230207080216.24564-1-anton@khirnov.net
State Accepted
Commit 63a348659b28ef481112ff063f33176d679de5e5
Headers show
Series [FFmpeg-devel] configure: make flite depend on threads | expand

Checks

Context Check Description
yinshiyou/make_loongarch64 success Make finished
yinshiyou/make_fate_loongarch64 success Make fate finished
andriy/make_x86 success Make finished
andriy/make_fate_x86 success Make fate finished

Commit Message

Anton Khirnov Feb. 7, 2023, 8:02 a.m. UTC
The filter calls pthreads functions unconditionally.
---
 configure | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Andreas Rheinhardt Feb. 13, 2023, 7:02 a.m. UTC | #1
Anton Khirnov:
> The filter calls pthreads functions unconditionally.
> ---
>  configure | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/configure b/configure
> index d67855c729..12184c7f26 100755
> --- a/configure
> +++ b/configure
> @@ -3667,7 +3667,7 @@ eq_filter_deps="gpl"
>  erosion_opencl_filter_deps="opencl"
>  find_rect_filter_deps="avcodec avformat gpl"
>  flip_vulkan_filter_deps="vulkan spirv_compiler"
> -flite_filter_deps="libflite"
> +flite_filter_deps="libflite threads"
>  framerate_filter_select="scene_sad"
>  freezedetect_filter_select="scene_sad"
>  frei0r_deps_any="libdl LoadLibrary"

Isn't the actual problem that it uses pthread_mutex_* functions instead
of ff_mutex_* functions?

- Andreas
diff mbox series

Patch

diff --git a/configure b/configure
index d67855c729..12184c7f26 100755
--- a/configure
+++ b/configure
@@ -3667,7 +3667,7 @@  eq_filter_deps="gpl"
 erosion_opencl_filter_deps="opencl"
 find_rect_filter_deps="avcodec avformat gpl"
 flip_vulkan_filter_deps="vulkan spirv_compiler"
-flite_filter_deps="libflite"
+flite_filter_deps="libflite threads"
 framerate_filter_select="scene_sad"
 freezedetect_filter_select="scene_sad"
 frei0r_deps_any="libdl LoadLibrary"