From 3ae4a8b644cce747f8a834d8c5ca62f3f7644ea5 Mon Sep 17 00:00:00 2001 From: Tristan Matthews Date: Fri, 10 Jan 2025 01:58:49 -0500 Subject: [PATCH] speex: fix configure option for fixed-point Before this was issuing: > configure: WARNING: unrecognized options: --enable-fixed --- projects/speex/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/speex/build.sh b/projects/speex/build.sh index 8b319ed053d9..439a2bd90b24 100644 --- a/projects/speex/build.sh +++ b/projects/speex/build.sh @@ -26,7 +26,7 @@ popd ./autogen.sh export CFLAGS="$CFLAGS -DDISABLE_NOTIFICATIONS -DDISABLE_WARNINGS" # Build fixed-point fuzzer -PKG_CONFIG_PATH="$WORK"/lib/pkgconfig ./configure --prefix="$WORK" --enable-static --disable-shared --enable-fixed +PKG_CONFIG_PATH="$WORK"/lib/pkgconfig ./configure --prefix="$WORK" --enable-static --disable-shared --enable-fixed-point make -j$(nproc) make install $CXX $CXXFLAGS contrib/oss-fuzz/speexdec_fuzzer.cc -o $OUT/speex_decode_fuzzer_fixed -L"$WORK/lib" -I"$WORK/include" $LIB_FUZZING_ENGINE -lspeex -logg