From 51cfa4ecf9c165934da7099ce2fa3065dfda4d08 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Leclercq?= Date: Wed, 5 Jun 2024 17:23:05 +0200 Subject: [PATCH] ffmpeg: Add dl syslinks (#4255) #4254 --- packages/f/ffmpeg/xmake.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/f/ffmpeg/xmake.lua b/packages/f/ffmpeg/xmake.lua index 7e924499c..794852dc5 100644 --- a/packages/f/ffmpeg/xmake.lua +++ b/packages/f/ffmpeg/xmake.lua @@ -57,9 +57,9 @@ package("ffmpeg") add_frameworks("AudioToolbox") end elseif is_plat("linux") then - add_syslinks("pthread") + add_syslinks("dl", "pthread") elseif is_plat("android") then - add_syslinks("android") + add_syslinks("dl", "android") end add_deps("nasm")