From af8ab45c53232f890971c35617bdd84649c75343 Mon Sep 17 00:00:00 2001 From: Jakub Wlodek Date: Fri, 3 Apr 2026 11:35:17 -0400 Subject: [PATCH] Update commonDriverMakefile with new FFMPEG variables --- ADApp/commonDriverMakefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/ADApp/commonDriverMakefile b/ADApp/commonDriverMakefile index a579265fc..4253a8bd0 100644 --- a/ADApp/commonDriverMakefile +++ b/ADApp/commonDriverMakefile @@ -224,7 +224,11 @@ endif ifdef FFMPEGSERVER $(DBD_NAME)_DBD += ffmpegServer.dbd PROD_LIBS += ffmpegServer - PROD_LIBS += avdevice avformat avcodec swresample swscale avutil + ifeq ($(FFMPEG_EXTERNAL), NO) + PROD_LIBS += avdevice avformat avcodec swresample swscale avutil + else + PROD_SYS_LIBS += avdevice avformat avcodec swresample swscale avutil + endif PROD_SYS_LIBS += lzma endif