From 783a2d6f5caa5e156bd8579ad12e0394c3dd44ad Mon Sep 17 00:00:00 2001 From: Duncaen Date: Sun, 13 Jul 2025 03:55:42 +0200 Subject: [PATCH] vpa-m: fix 32bit builds --- srcpkgs/vba-m/template | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/srcpkgs/vba-m/template b/srcpkgs/vba-m/template index 7be8ce5ac40..fd344cc0713 100644 --- a/srcpkgs/vba-m/template +++ b/srcpkgs/vba-m/template @@ -18,7 +18,8 @@ distfiles="https://github.com/visualboyadvance-m/visualboyadvance-m/archive/v${v checksum=8299a093d4a79bcea7dc882b1fcf056f7745d4f7f3d7bf8ccce6b41342ac3510 CXXFLAGS="-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64" +CFLAGS="-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64" pre_configure() { - ln -sf ${wrksrc}/cmake/FindAppleFFMPEG.cmake ${wrksrc}/cmake/FindFFMPEG.cmake -} \ No newline at end of file + ln -sf ${wrksrc}/cmake/FindAppleFFMPEG.cmake ${wrksrc}/cmake/FindFFMPEG.cmake +}