From 635a305c37eebfa57dce56a841e23e00a3fb74e6 Mon Sep 17 00:00:00 2001 From: Carlos Fernandez Date: Sun, 28 Dec 2025 17:42:08 +0100 Subject: [PATCH] build: Add vobsub_decoder to autoconf build system MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add vobsub_decoder.c and vobsub_decoder.h to linux and mac Makefile.am to fix autoconf build failures. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- linux/Makefile.am | 2 ++ mac/Makefile.am | 2 ++ 2 files changed, 4 insertions(+) diff --git a/linux/Makefile.am b/linux/Makefile.am index 3019c7e0..eaf728dc 100644 --- a/linux/Makefile.am +++ b/linux/Makefile.am @@ -151,6 +151,8 @@ ccextractor_SOURCES = \ ../src/lib_ccx/list.h \ ../src/lib_ccx/matroska.c \ ../src/lib_ccx/matroska.h \ + ../src/lib_ccx/vobsub_decoder.c \ + ../src/lib_ccx/vobsub_decoder.h \ ../src/lib_ccx/mp4.c \ ../src/lib_ccx/myth.c \ ../src/lib_ccx/networking.c \ diff --git a/mac/Makefile.am b/mac/Makefile.am index 3b98d449..2874b97f 100644 --- a/mac/Makefile.am +++ b/mac/Makefile.am @@ -123,6 +123,8 @@ ccextractor_SOURCES = \ ../src/lib_ccx/list.h \ ../src/lib_ccx/matroska.c \ ../src/lib_ccx/matroska.h \ + ../src/lib_ccx/vobsub_decoder.c \ + ../src/lib_ccx/vobsub_decoder.h \ ../src/lib_ccx/mp4.c \ ../src/lib_ccx/myth.c \ ../src/lib_ccx/networking.c \