From 2bc733f399ec0a36db02c0733e56379e046d7f58 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sl=C3=A1vek=20Banko?= Date: Thu, 15 Oct 2015 09:46:48 +0200 Subject: [PATCH] Fix typo in check_library_exists 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 838fb28..743aa72 100644 --- a/ConfigureChecks.cmake +++ b/ConfigureChecks.cmake @@ -237,7 +237,7 @@ if( WITH_XIPH_DECODER ) pkg_search_module( SPEEX speex>=1.1 ) if( SPEEX_FOUND ) set( HAVE_SPEEX11 1 ) - check_library_exitss( speex speex_decode_int "" HAVE_SPEEX_DECODE_INT ) + check_library_exists( speex speex_decode_int "" HAVE_SPEEX_DECODE_INT ) if( NOT HAVE_SPEEX_DECODE_INT ) set( BROKEN_SPEEX11 1 ) endif( )