From 9b26b55b7978a7777aae34d28cd3dccf1b894104 Mon Sep 17 00:00:00 2001 From: Scott M Anderson Date: Tue, 18 Aug 2026 16:13:38 -0600 Subject: [PATCH 1/3] cmake/FFmpeg-targets: add missing Apple frameworks for FFmpeg on Darwin Resolve macOS link errors for avdevice, avcodec, avfilter, and avformat by linking AudioToolbox, Security, VideoToolbox, and OpenGL alongside the existing Cocoa, AVFoundation, CoreMedia, VideoDecodeAcceleration, and QuartzCore frameworks. --- cmake/FFmpeg-targets.cmake | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/cmake/FFmpeg-targets.cmake b/cmake/FFmpeg-targets.cmake index 104ea4de331fb..2652b13275750 100644 --- a/cmake/FFmpeg-targets.cmake +++ b/cmake/FFmpeg-targets.cmake @@ -14,12 +14,20 @@ set(_ffmpeg_avcodec_libs openh264::openh264) # _ffmpeg_*_deps set(_ffmpeg_avdevice_deps avfilter avformat) if(CMAKE_SYSTEM_NAME STREQUAL "Darwin") + find_library(AudioToolbox_LIB AudioToolbox) + find_library(Security_LIB Security) + find_library(VideoToolbox_LIB VideoToolbox) + find_library(OpenGL_LIB OpenGL) find_library(Cocoa_LIB Cocoa) find_library(AVFoundation_LIB AVFoundation) find_library(CoreMedia_LIB CoreMedia) find_library(VideoDecodeAcceleration_LIB VideoDecodeAcceleration) find_library(QuartzCore_LIB QuartzCore) set(_ffmpeg_avdevice_libs + ${AudioToolbox_LIB} + ${Security_LIB} + ${VideoToolbox_LIB} + ${OpenGL_LIB} ${Cocoa_LIB} ${AVFoundation_LIB} ${CoreMedia_LIB} From eabc06c6bc2a54785d38fbeefe56284c9bd5bd27 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Tue, 18 Aug 2026 22:16:07 +0000 Subject: [PATCH 2/3] externpro 26.01.5-5-gf047c17 --- .devcontainer | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.devcontainer b/.devcontainer index 2adb16000a859..f047c17a8d681 160000 --- a/.devcontainer +++ b/.devcontainer @@ -1 +1 @@ -Subproject commit 2adb16000a859be345cbe8b7eca6ad19f4ebb473 +Subproject commit f047c17a8d681abd7fb2f179c27d8fbeee643dfd From 36d4d260dc29920861d99118c12511bcea626ae6 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Tue, 18 Aug 2026 22:16:07 +0000 Subject: [PATCH 3/3] update .github/release-tag.json --- .github/release-tag.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/release-tag.json b/.github/release-tag.json index 21e589af78ec2..e047d0d252ff2 100644 --- a/.github/release-tag.json +++ b/.github/release-tag.json @@ -1,4 +1,4 @@ { - "message": "xpro version 4.3.1.5 tag", - "tag": "xpv4.3.1.5" + "message": "xpro version 4.3.1.6 tag", + "tag": "xpv4.3.1.6" }