From a079587859967508e4aa71f7dea22eaa1dd5cf2c Mon Sep 17 00:00:00 2001 From: Tom Matthews Date: Wed, 20 Dec 2023 08:18:43 +0000 Subject: [PATCH] Disable build of LAME frontend We dont need it, and LAME 3.100 frontend binaries fail to build on MacOS currently with ```parse.c:417:34: error: call to undeclared function 'id3tag_set_comment_ucs2'; ISO C99 and later do not support implicit function declarations [-Wimplicit-function-declaration]``` --- external/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/external/CMakeLists.txt b/external/CMakeLists.txt index 78351eeecf..36a6f894fa 100644 --- a/external/CMakeLists.txt +++ b/external/CMakeLists.txt @@ -483,7 +483,7 @@ if (NOT FFMPEG_FOUND AND NOT USE_PRECOMPILED_LIBS) UPDATE_DISCONNECTED TRUE DEPENDS ${MPG123_DEPENDS} PREFIX "${EXTERNAL_BUILD_LIBRARIES}/lame" - CONFIGURE_COMMAND ${CMAKE_COMMAND} -E env PKG_CONFIG_PATH=${MPG123_PKG_CONFIG_DIR} /configure --prefix= --enable-shared + CONFIGURE_COMMAND ${CMAKE_COMMAND} -E env PKG_CONFIG_PATH=${MPG123_PKG_CONFIG_DIR} /configure --prefix= --enable-shared --disable-frontend BUILD_COMMAND ${MAKE} TEST_COMMAND "" )