From 1065f7a4d56224e30956d4d1061b52b1e6ea91fd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Andriot?= Date: Wed, 4 Dec 2019 20:46:15 +0100 Subject: [PATCH] Prefer TIRPC detection over search for rpc/rpc.h header. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: François Andriot Signed-off-by: Slávek Banko (cherry picked from commit db1e25b1feef6df33c9c1b2d3811d02890c10d77) --- tdeioslave/ConfigureChecks.cmake | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tdeioslave/ConfigureChecks.cmake b/tdeioslave/ConfigureChecks.cmake index b1da9eb93..e7d339e2f 100644 --- a/tdeioslave/ConfigureChecks.cmake +++ b/tdeioslave/ConfigureChecks.cmake @@ -26,11 +26,11 @@ if( WITH_SASL ) endif( ) # rpc/rpc.h, originally was shipped with glibc ... -check_include_file( rpc/rpc.h HAVE_RPC_H ) # ... but later might be not present (deprecated from 2.26) -if( NOT HAVE_RPC_H ) - pkg_search_module( TIRPC libtirpc ) - if( NOT TIRPC_FOUND ) +pkg_search_module( TIRPC libtirpc ) +if( NOT TIRPC_FOUND ) + check_include_file( rpc/rpc.h HAVE_RPC_H ) + if( NOT HAVE_RPC_H ) tde_message_fatal( "rpc/rpc.h is required, please check your glibc or libtirpc package" ) endif( ) endif( )