From 2e647d11516b7ecc55a67f2ccf77850937fc8889 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sl=C3=A1vek=20Banko?= Date: Mon, 11 Jul 2022 20:02:15 +0200 Subject: [PATCH] Add a check for a pkg-config package named libmad next to mad. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Slávek Banko (cherry picked from commit 16b6cf39ca633acc8178542da9f72f585403c21b) --- ConfigureChecks.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ConfigureChecks.cmake b/ConfigureChecks.cmake index b3f7522..39c4137 100644 --- a/ConfigureChecks.cmake +++ b/ConfigureChecks.cmake @@ -190,7 +190,7 @@ endif( ) ##### mad ####################################### if( WITH_MAD ) - pkg_search_module( MAD mad ) + pkg_search_module( MAD libmad mad ) if( NOT MAD_FOUND ) tde_message_fatal( "mad is requested, but was not found on your system" ) endif( )