From 317b368730fa1507efbbc87692707f89c838fe6c Mon Sep 17 00:00:00 2001 From: alvinhochun Date: Wed, 15 Apr 2026 01:07:43 +0800 Subject: [PATCH] 3ds-libopus, 3ds-opusfile: Build with fixed-point --- 3ds/libopus/PKGBUILD | 4 ++-- 3ds/opusfile/PKGBUILD | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/3ds/libopus/PKGBUILD b/3ds/libopus/PKGBUILD index 4144441c..6a88873b 100644 --- a/3ds/libopus/PKGBUILD +++ b/3ds/libopus/PKGBUILD @@ -2,7 +2,7 @@ pkgname=3ds-libopus pkgver=1.4 -pkgrel=1 +pkgrel=2 pkgdesc='Reference implementation of the lossy audio codec, Opus' arch=('any') url='https://opus-codec.org/' @@ -19,7 +19,7 @@ build() { source /opt/devkitpro/3dsvars.sh ./configure --prefix="${PORTLIBS_PREFIX}" --host=arm-none-eabi \ - --disable-shared --enable-static + --disable-shared --enable-static --enable-fixed-point --disable-rtcd make } diff --git a/3ds/opusfile/PKGBUILD b/3ds/opusfile/PKGBUILD index ca7202bf..b12a3d02 100644 --- a/3ds/opusfile/PKGBUILD +++ b/3ds/opusfile/PKGBUILD @@ -2,7 +2,7 @@ pkgname=3ds-opusfile pkgver=0.11 -pkgrel=1 +pkgrel=2 pkgdesc='Library for opening, seeking, and decoding .opus files' arch=('any') url='https://opus-codec.org/' @@ -20,7 +20,7 @@ build() { source /opt/devkitpro/3dsvars.sh ./configure --prefix="${PORTLIBS_PREFIX}" --host=arm-none-eabi \ - --disable-shared --enable-static + --disable-shared --enable-static --enable-fixed-point --disable-float make }