From 16b6cf39ca633acc8178542da9f72f585403c21b 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 --- ConfigureChecks.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ConfigureChecks.cmake b/ConfigureChecks.cmake index 90da6aa..7047c34 100644 --- a/ConfigureChecks.cmake +++ b/ConfigureChecks.cmake @@ -189,7 +189,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( )